2011-03-22 03:33:06 +01:00
|
|
|
<?php
|
2017-11-15 16:53:16 +01:00
|
|
|
/**
|
|
|
|
* @file mod/match.php
|
|
|
|
*/
|
2018-07-21 15:10:13 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Content\Pager;
|
2018-01-15 15:50:06 +01:00
|
|
|
use Friendica\Content\Widget;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-12-24 01:42:50 +01:00
|
|
|
use Friendica\Model\Profile;
|
2018-01-27 05:24:23 +01:00
|
|
|
use Friendica\Util\Network;
|
2018-07-31 04:06:22 +02:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2011-03-22 03:33:06 +01:00
|
|
|
|
2015-10-17 00:39:50 +02:00
|
|
|
/**
|
|
|
|
* @brief Controller for /match.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
$a->page['aside'] .= Widget::findPeople();
|
|
|
|
$a->page['aside'] .= Widget::follow();
|
2015-09-15 22:29:02 +02:00
|
|
|
|
2018-10-19 23:55:11 +02:00
|
|
|
$_SESSION['return_path'] = $a->cmd;
|
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'])) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('No keywords to match. Please add keywords to your default profile.') . EOL);
|
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
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
if (strlen(Config::get('system', 'directory'))) {
|
|
|
|
$host = get_server();
|
|
|
|
} else {
|
|
|
|
$host = System::baseUrl();
|
|
|
|
}
|
2015-08-23 11:05:10 +02:00
|
|
|
|
2018-12-24 01:42:50 +01:00
|
|
|
$msearch_json = Network::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
|
2019-03-08 00:42:49 +01:00
|
|
|
if (!$profile || Contact::getIdForURL($profile->url, local_user(), true)) {
|
2018-12-24 01:42:50 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Workaround for wrong directory photo URL
|
|
|
|
$profile->photo = str_replace('http:///photo/', get_server() . '/photo/', $profile->photo);
|
|
|
|
|
|
|
|
$connlnk = System::baseUrl() . '/follow/?url=' . $profile->url;
|
|
|
|
$photo_menu = [
|
|
|
|
'profile' => [L10n::t("View Profile"), Contact::magicLink($profile->url)],
|
|
|
|
'follow' => [L10n::t("Connect/Follow"), $connlnk]
|
|
|
|
];
|
|
|
|
|
|
|
|
$contact_details = Contact::getDetailsByURL($profile->url, 0);
|
|
|
|
|
|
|
|
$entry = [
|
|
|
|
'url' => Contact::magicLink($profile->url),
|
2019-10-15 15:01:17 +02:00
|
|
|
'itemurl' => $contact_details['addr'] ?? $profile->url,
|
2018-12-24 01:42:50 +01:00
|
|
|
'name' => $profile->name,
|
2019-10-15 15:01:17 +02:00
|
|
|
'details' => $contact_details['location'] ?? '',
|
|
|
|
'tags' => $contact_details['keywords'] ?? '',
|
|
|
|
'about' => $contact_details['about'] ?? '',
|
2018-12-24 01:42:50 +01:00
|
|
|
'account_type' => Contact::getAccountType($contact_details),
|
|
|
|
'thumb' => ProxyUtils::proxifyUrl($profile->photo, false, ProxyUtils::SIZE_THUMB),
|
|
|
|
'conntxt' => L10n::t('Connect'),
|
|
|
|
'connlnk' => $connlnk,
|
|
|
|
'img_hover' => $profile->tags,
|
|
|
|
'photo_menu' => $photo_menu,
|
|
|
|
'id' => $i,
|
|
|
|
];
|
|
|
|
$entries[] = $entry;
|
2015-09-15 22:29:02 +02:00
|
|
|
}
|
2018-12-24 01:42:50 +01:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'class' => 'pager',
|
|
|
|
'first' => [
|
|
|
|
'url' => 'match',
|
|
|
|
'text' => L10n::t('first'),
|
|
|
|
'class' => 'previous' . ($start == 0 ? 'disabled' : '')
|
|
|
|
],
|
|
|
|
'next' => [
|
|
|
|
'url' => 'match?start=' . $i,
|
|
|
|
'text' => L10n::t('next'),
|
|
|
|
'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)) {
|
|
|
|
info(L10n::t('No matches') . EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
|
|
|
'$title' => L10n::t('Profile Match'),
|
|
|
|
'$contacts' => $entries,
|
|
|
|
'$paginate' => $paginate
|
|
|
|
]);
|
|
|
|
|
2011-03-22 03:33:06 +01:00
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|