2011-03-21 22:33:06 -04:00
|
|
|
<?php
|
2017-11-15 10:53:16 -05:00
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
2018-12-23 19:42:50 -05:00
|
|
|
$params['s'] = $tags;
|
|
|
|
$params['n'] = 100;
|
2018-10-24 11:42:59 -04:00
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
if (strlen(DI::config()->get('system', 'directory'))) {
|
2020-01-04 17:59:20 -05:00
|
|
|
$host = Search::getGlobalDirectory();
|
2018-12-23 19:42:50 -05:00
|
|
|
} else {
|
2019-12-30 17:00:08 -05:00
|
|
|
$host = DI::baseUrl();
|
2018-12-23 19:42:50 -05:00
|
|
|
}
|
2015-08-23 05:05:10 -04:00
|
|
|
|
2020-03-04 16:18:28 -05:00
|
|
|
$msearch_json = DI::httpRequest()->post($host . '/msearch', $params)->getBody();
|
2011-03-21 22:44:00 -04:00
|
|
|
|
2018-12-23 19:42:50 -05:00
|
|
|
$msearch = json_decode($msearch_json);
|
|
|
|
|
2019-10-15 09:01:17 -04:00
|
|
|
$start = $_GET['start'] ?? 0;
|
2018-12-23 19:42:50 -05:00
|
|
|
$entries = [];
|
|
|
|
$paginate = '';
|
2015-10-16 18:39:50 -04:00
|
|
|
|
2018-12-23 19:42:50 -05:00
|
|
|
if (!empty($msearch->results)) {
|
|
|
|
for ($i = $start;count($entries) < 10 && $i < $msearch->total; $i++) {
|
|
|
|
$profile = $msearch->results[$i];
|
2017-11-15 10:53:16 -05:00
|
|
|
|
2018-12-23 19:42:50 -05:00
|
|
|
// Already known contact
|
2020-08-07 09:49:59 -04:00
|
|
|
if (!$profile || Contact::getIdForURL($profile->url, local_user())) {
|
2018-12-23 19:42:50 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-07-30 23:55:01 -04:00
|
|
|
$contact = Contact::getByURLForUser($profile->url, local_user());
|
2020-07-30 17:16:15 -04:00
|
|
|
if (!empty($contact)) {
|
2020-07-31 00:28:26 -04:00
|
|
|
$entries[] = ModuleContact::getContactTemplateVars($contact);
|
2020-07-30 17:16:15 -04:00
|
|
|
}
|
2015-09-15 16:29:02 -04:00
|
|
|
}
|
2018-12-23 19:42:50 -05:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'class' => 'pager',
|
|
|
|
'first' => [
|
|
|
|
'url' => 'match',
|
2020-01-18 14:52:34 -05:00
|
|
|
'text' => DI::l10n()->t('first'),
|
2018-12-23 19:42:50 -05:00
|
|
|
'class' => 'previous' . ($start == 0 ? 'disabled' : '')
|
|
|
|
],
|
|
|
|
'next' => [
|
|
|
|
'url' => 'match?start=' . $i,
|
2020-01-18 14:52:34 -05:00
|
|
|
'text' => DI::l10n()->t('next'),
|
2018-12-23 19:42:50 -05:00
|
|
|
'class' => 'next' . ($i >= $msearch->total ? ' disabled' : '')
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('paginate.tpl');
|
|
|
|
$paginate = Renderer::replaceMacros($tpl, ['pager' => $data]);
|
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'),
|
2018-12-23 19:42:50 -05:00
|
|
|
'$contacts' => $entries,
|
|
|
|
'$paginate' => $paginate
|
|
|
|
]);
|
|
|
|
|
2011-03-21 22:33:06 -04:00
|
|
|
return $o;
|
2011-05-23 05:39:57 -04:00
|
|
|
}
|