2011-03-21 22:33:06 -04:00
|
|
|
<?php
|
2017-11-15 10:53:16 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 10:18:46 -05: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 10:53:16 -05:00
|
|
|
*/
|
2018-07-21 09:10:13 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-01-15 09:50:06 -05:00
|
|
|
use Friendica\Content\Widget;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2020-01-04 17:59:20 -05:00
|
|
|
use Friendica\Core\Search;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 19:33:13 -05:00
|
|
|
use Friendica\DI;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-12-23 19:42:50 -05:00
|
|
|
use Friendica\Model\Profile;
|
2020-07-30 23:55:01 -04:00
|
|
|
use Friendica\Module\Contact as ModuleContact;
|
2011-03-21 22:33:06 -04:00
|
|
|
|
2015-10-16 18:39:50 -04:00
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Controller for /match.
|
2015-10-16 18:39:50 -04:00
|
|
|
*
|
|
|
|
* It takes keywords from your profile and queries the directory server for
|
|
|
|
* matching keywords from other profiles.
|
|
|
|
*
|
2017-11-15 10:53:16 -05:00
|
|
|
* @param App $a App
|
|
|
|
*
|
2018-12-23 19:42:50 -05:00
|
|
|
* @return string
|
2019-01-07 01:07:42 -05:00
|
|
|
* @throws ImagickException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws Exception
|
2015-10-16 18:39:50 -04:00
|
|
|
*/
|
2017-11-15 10:53:16 -05:00
|
|
|
function match_content(App $a)
|
|
|
|
{
|
2018-12-23 19:42:50 -05:00
|
|
|
if (!local_user()) {
|
|
|
|
return '';
|
2016-12-20 05:56:34 -05:00
|
|
|
}
|
2011-03-21 22:33:06 -04:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] .= Widget::findPeople();
|
|
|
|
DI::page()['aside'] .= Widget::follow();
|
2015-09-15 16:29:02 -04:00
|
|
|
|
2019-12-15 19:33:13 -05:00
|
|
|
$_SESSION['return_path'] = DI::args()->getCommand();
|
2011-12-18 04:44:46 -05:00
|
|
|
|
2018-12-23 19:42:50 -05:00
|
|
|
$profile = Profile::getByUID(local_user());
|
|
|
|
|
|
|
|
if (!DBA::isResult($profile)) {
|
|
|
|
return '';
|
2016-12-20 04:10:33 -05:00
|
|
|
}
|
2018-12-23 19:42:50 -05:00
|
|
|
if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) {
|
2020-07-23 02:25:01 -04:00
|
|
|
notice(DI::l10n()->t('No keywords to match. Please add keywords to your profile.'));
|
2018-12-23 19:42:50 -05:00
|
|
|
return '';
|
2011-03-21 22:33:06 -04:00
|
|
|
}
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$params = [];
|
2018-12-23 19:42:50 -05:00
|
|
|
$tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
|
2015-08-23 05:05:10 -04:00
|
|
|
|
2021-06-13 13:38:34 -04:00
|
|
|
if (DI::mode()->isMobile()) {
|
|
|
|
$limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network_mobile'));
|
2018-12-23 19:42:50 -05:00
|
|
|
} else {
|
2021-06-13 13:38:34 -04:00
|
|
|
$limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network'));
|
2018-12-23 19:42:50 -05:00
|
|
|
}
|
2015-08-23 05:05:10 -04:00
|
|
|
|
2021-06-13 13:38:34 -04:00
|
|
|
$params['s'] = $tags;
|
|
|
|
$params['n'] = 100;
|
2018-12-23 19:42:50 -05:00
|
|
|
|
|
|
|
$entries = [];
|
2021-06-13 13:38:34 -04:00
|
|
|
foreach ([Search::getGlobalDirectory(), DI::baseUrl()] as $server) {
|
|
|
|
if (empty($server)) {
|
|
|
|
continue;
|
2015-09-15 16:29:02 -04:00
|
|
|
}
|
2018-12-23 19:42:50 -05:00
|
|
|
|
2021-06-13 13:38:34 -04:00
|
|
|
$msearch = json_decode(DI::httpRequest()->post($server . '/msearch', $params)->getBody());
|
|
|
|
if (!empty($msearch)) {
|
|
|
|
$entries = match_get_contacts($msearch, $entries, $limit);
|
|
|
|
}
|
2011-03-21 22:33:06 -04:00
|
|
|
}
|
2011-03-22 00:26:11 -04:00
|
|
|
|
2018-12-23 19:42:50 -05:00
|
|
|
if (empty($entries)) {
|
2020-07-23 02:25:01 -04:00
|
|
|
info(DI::l10n()->t('No matches'));
|
2018-12-23 19:42:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Profile Match'),
|
2021-06-13 13:38:34 -04:00
|
|
|
'$contacts' => array_slice($entries, 0, $limit),
|
2018-12-23 19:42:50 -05:00
|
|
|
]);
|
|
|
|
|
2011-03-21 22:33:06 -04:00
|
|
|
return $o;
|
2011-05-23 05:39:57 -04:00
|
|
|
}
|
2021-06-13 13:38:34 -04: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;
|
|
|
|
}
|