2011-03-22 03:33:06 +01:00
|
|
|
<?php
|
2017-11-15 16:53:16 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01: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 16:53:16 +01:00
|
|
|
*/
|
2018-07-21 15:10:13 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-15 15:50:06 +01:00
|
|
|
use Friendica\Content\Widget;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2020-01-04 23:59:20 +01:00
|
|
|
use Friendica\Core\Search;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 01:33:13 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-12-24 01:42:50 +01:00
|
|
|
use Friendica\Model\Profile;
|
2020-07-31 05:55:01 +02:00
|
|
|
use Friendica\Module\Contact as ModuleContact;
|
2011-03-22 03:33:06 +01:00
|
|
|
|
2015-10-17 00:39:50 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Controller for /match.
|
2015-10-17 00:39:50 +02:00
|
|
|
*
|
|
|
|
* It takes keywords from your profile and queries the directory server for
|
|
|
|
* matching keywords from other profiles.
|
|
|
|
*
|
2017-11-15 16:53:16 +01:00
|
|
|
* @param App $a App
|
|
|
|
*
|
2018-12-24 01:42:50 +01:00
|
|
|
* @return string
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws ImagickException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws Exception
|
2015-10-17 00:39:50 +02:00
|
|
|
*/
|
2017-11-15 16:53:16 +01:00
|
|
|
function match_content(App $a)
|
|
|
|
{
|
2018-12-24 01:42:50 +01:00
|
|
|
if (!local_user()) {
|
|
|
|
return '';
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2011-03-22 03:33:06 +01:00
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] .= Widget::findPeople();
|
|
|
|
DI::page()['aside'] .= Widget::follow();
|
2015-09-15 22:29:02 +02:00
|
|
|
|
2019-12-16 01:33:13 +01:00
|
|
|
$_SESSION['return_path'] = DI::args()->getCommand();
|
2011-12-18 10:44:46 +01:00
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
$profile = Profile::getByUID(local_user());
|
|
|
|
|
|
|
|
if (!DBA::isResult($profile)) {
|
|
|
|
return '';
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2018-12-24 01:42:50 +01:00
|
|
|
if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('No keywords to match. Please add keywords to your profile.'));
|
2018-12-24 01:42:50 +01:00
|
|
|
return '';
|
2011-03-22 03:33:06 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$params = [];
|
2018-12-24 01:42:50 +01:00
|
|
|
$tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
|
2015-08-23 11:05:10 +02:00
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
$params['s'] = $tags;
|
|
|
|
$params['n'] = 100;
|
2018-10-24 17:42:59 +02:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (strlen(DI::config()->get('system', 'directory'))) {
|
2020-01-04 23:59:20 +01:00
|
|
|
$host = Search::getGlobalDirectory();
|
2018-12-24 01:42:50 +01:00
|
|
|
} else {
|
2019-12-30 23:00:08 +01:00
|
|
|
$host = DI::baseUrl();
|
2018-12-24 01:42:50 +01:00
|
|
|
}
|
2015-08-23 11:05:10 +02:00
|
|
|
|
2020-03-04 22:18:28 +01:00
|
|
|
$msearch_json = DI::httpRequest()->post($host . '/msearch', $params)->getBody();
|
2011-03-22 03:44:00 +01:00
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
$msearch = json_decode($msearch_json);
|
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$start = $_GET['start'] ?? 0;
|
2018-12-24 01:42:50 +01:00
|
|
|
$entries = [];
|
|
|
|
$paginate = '';
|
2015-10-17 00:39:50 +02:00
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
if (!empty($msearch->results)) {
|
|
|
|
for ($i = $start;count($entries) < 10 && $i < $msearch->total; $i++) {
|
|
|
|
$profile = $msearch->results[$i];
|
2017-11-15 16:53:16 +01:00
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
// Already known contact
|
2020-08-07 15:49:59 +02:00
|
|
|
if (!$profile || Contact::getIdForURL($profile->url, local_user())) {
|
2018-12-24 01:42:50 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-07-31 05:55:01 +02:00
|
|
|
$contact = Contact::getByURLForUser($profile->url, local_user());
|
2020-07-30 23:16:15 +02:00
|
|
|
if (!empty($contact)) {
|
2020-07-31 06:28:26 +02:00
|
|
|
$entries[] = ModuleContact::getContactTemplateVars($contact);
|
2020-07-30 23:16:15 +02:00
|
|
|
}
|
2015-09-15 22:29:02 +02:00
|
|
|
}
|
2018-12-24 01:42:50 +01:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'class' => 'pager',
|
|
|
|
'first' => [
|
|
|
|
'url' => 'match',
|
2020-01-18 20:52:34 +01:00
|
|
|
'text' => DI::l10n()->t('first'),
|
2018-12-24 01:42:50 +01:00
|
|
|
'class' => 'previous' . ($start == 0 ? 'disabled' : '')
|
|
|
|
],
|
|
|
|
'next' => [
|
|
|
|
'url' => 'match?start=' . $i,
|
2020-01-18 20:52:34 +01:00
|
|
|
'text' => DI::l10n()->t('next'),
|
2018-12-24 01:42:50 +01:00
|
|
|
'class' => 'next' . ($i >= $msearch->total ? ' disabled' : '')
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('paginate.tpl');
|
|
|
|
$paginate = Renderer::replaceMacros($tpl, ['pager' => $data]);
|
2011-03-22 03:33:06 +01:00
|
|
|
}
|
2011-03-22 05:26:11 +01:00
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
if (empty($entries)) {
|
2020-07-23 08:25:01 +02:00
|
|
|
info(DI::l10n()->t('No matches'));
|
2018-12-24 01:42:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 20:52:34 +01:00
|
|
|
'$title' => DI::l10n()->t('Profile Match'),
|
2018-12-24 01:42:50 +01:00
|
|
|
'$contacts' => $entries,
|
|
|
|
'$paginate' => $paginate
|
|
|
|
]);
|
|
|
|
|
2011-03-22 03:33:06 +01:00
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|