2011-03-22 02:33:06 +00:00
|
|
|
<?php
|
2017-11-15 15:53:16 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-15 15:53:16 +00:00
|
|
|
*/
|
2018-07-21 13:10:13 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-15 14:50:06 +00:00
|
|
|
use Friendica\Content\Widget;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2020-01-04 22:59:20 +00:00
|
|
|
use Friendica\Core\Search;
|
2018-07-21 12:40:21 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:33:13 +00:00
|
|
|
use Friendica\DI;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-12-24 00:42:50 +00:00
|
|
|
use Friendica\Model\Profile;
|
2020-07-31 03:55:01 +00:00
|
|
|
use Friendica\Module\Contact as ModuleContact;
|
2011-03-22 02:33:06 +00:00
|
|
|
|
2015-10-16 22:39:50 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Controller for /match.
|
2015-10-16 22:39:50 +00:00
|
|
|
*
|
|
|
|
* It takes keywords from your profile and queries the directory server for
|
|
|
|
* matching keywords from other profiles.
|
|
|
|
*
|
2017-11-15 15:53:16 +00:00
|
|
|
* @param App $a App
|
|
|
|
*
|
2018-12-24 00:42:50 +00:00
|
|
|
* @return string
|
2019-01-07 06:07:42 +00:00
|
|
|
* @throws ImagickException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws Exception
|
2015-10-16 22:39:50 +00:00
|
|
|
*/
|
2017-11-15 15:53:16 +00:00
|
|
|
function match_content(App $a)
|
|
|
|
{
|
2018-12-24 00:42:50 +00:00
|
|
|
if (!local_user()) {
|
|
|
|
return '';
|
2016-12-20 10:56:34 +00:00
|
|
|
}
|
2011-03-22 02:33:06 +00:00
|
|
|
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['aside'] .= Widget::findPeople();
|
|
|
|
DI::page()['aside'] .= Widget::follow();
|
2015-09-15 20:29:02 +00:00
|
|
|
|
2019-12-16 00:33:13 +00:00
|
|
|
$_SESSION['return_path'] = DI::args()->getCommand();
|
2011-12-18 09:44:46 +00:00
|
|
|
|
2018-12-24 00:42:50 +00:00
|
|
|
$profile = Profile::getByUID(local_user());
|
|
|
|
|
|
|
|
if (!DBA::isResult($profile)) {
|
|
|
|
return '';
|
2016-12-20 09:10:33 +00:00
|
|
|
}
|
2018-12-24 00:42:50 +00:00
|
|
|
if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('No keywords to match. Please add keywords to your profile.'));
|
2018-12-24 00:42:50 +00:00
|
|
|
return '';
|
2011-03-22 02:33:06 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$params = [];
|
2018-12-24 00:42:50 +00:00
|
|
|
$tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
|
2015-08-23 09:05:10 +00:00
|
|
|
|
2021-06-13 17:38:34 +00:00
|
|
|
if (DI::mode()->isMobile()) {
|
|
|
|
$limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network_mobile'));
|
2018-12-24 00:42:50 +00:00
|
|
|
} else {
|
2021-06-13 17:38:34 +00:00
|
|
|
$limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network'));
|
2018-12-24 00:42:50 +00:00
|
|
|
}
|
2015-08-23 09:05:10 +00:00
|
|
|
|
2021-06-13 17:38:34 +00:00
|
|
|
$params['s'] = $tags;
|
|
|
|
$params['n'] = 100;
|
2018-12-24 00:42:50 +00:00
|
|
|
|
|
|
|
$entries = [];
|
2021-06-13 17:38:34 +00:00
|
|
|
foreach ([Search::getGlobalDirectory(), DI::baseUrl()] as $server) {
|
|
|
|
if (empty($server)) {
|
|
|
|
continue;
|
2015-09-15 20:29:02 +00:00
|
|
|
}
|
2018-12-24 00:42:50 +00:00
|
|
|
|
2021-08-25 19:54:54 +00:00
|
|
|
$msearch = json_decode(DI::httpClient()->post($server . '/msearch', $params)->getBody());
|
2021-06-13 17:38:34 +00:00
|
|
|
if (!empty($msearch)) {
|
|
|
|
$entries = match_get_contacts($msearch, $entries, $limit);
|
|
|
|
}
|
2011-03-22 02:33:06 +00:00
|
|
|
}
|
2011-03-22 04:26:11 +00:00
|
|
|
|
2018-12-24 00:42:50 +00:00
|
|
|
if (empty($entries)) {
|
2020-07-23 06:25:01 +00:00
|
|
|
info(DI::l10n()->t('No matches'));
|
2018-12-24 00:42:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 19:52:34 +00:00
|
|
|
'$title' => DI::l10n()->t('Profile Match'),
|
2021-06-13 17:38:34 +00:00
|
|
|
'$contacts' => array_slice($entries, 0, $limit),
|
2018-12-24 00:42:50 +00:00
|
|
|
]);
|
|
|
|
|
2011-03-22 02:33:06 +00:00
|
|
|
return $o;
|
2011-05-23 09:39:57 +00:00
|
|
|
}
|
2021-06-13 17:38:34 +00:00
|
|
|
|
|
|
|
function match_get_contacts($msearch, $entries, $limit)
|
|
|
|
{
|
|
|
|
if (empty($msearch->results)) {
|
|
|
|
return $entries;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($msearch->results as $profile) {
|
|
|
|
if (!$profile) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Already known contact
|
|
|
|
$contact = Contact::getByURL($profile->url, null, ['rel'], local_user());
|
|
|
|
if (!empty($contact) && in_array($contact['rel'], [Contact::FRIEND, Contact::SHARING])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = Contact::getByURLForUser($profile->url, local_user());
|
|
|
|
if (!empty($contact)) {
|
|
|
|
$entries[$contact['id']] = ModuleContact::getContactTemplateVars($contact);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($entries) == $limit) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $entries;
|
|
|
|
}
|