Issue 10386: Reworked match
This commit is contained in:
parent
cd8ce7eada
commit
1ba6c51364
1 changed files with 45 additions and 44 deletions
|
@ -66,54 +66,27 @@ function match_content(App $a)
|
||||||
$params = [];
|
$params = [];
|
||||||
$tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
|
$tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
|
||||||
|
|
||||||
|
if (DI::mode()->isMobile()) {
|
||||||
|
$limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
|
||||||
|
DI::config()->get('system', 'itemspage_network_mobile'));
|
||||||
|
} else {
|
||||||
|
$limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
|
||||||
|
DI::config()->get('system', 'itemspage_network'));
|
||||||
|
}
|
||||||
|
|
||||||
$params['s'] = $tags;
|
$params['s'] = $tags;
|
||||||
$params['n'] = 100;
|
$params['n'] = 100;
|
||||||
|
|
||||||
if (strlen(DI::config()->get('system', 'directory'))) {
|
|
||||||
$host = Search::getGlobalDirectory();
|
|
||||||
} else {
|
|
||||||
$host = DI::baseUrl();
|
|
||||||
}
|
|
||||||
|
|
||||||
$msearch_json = DI::httpRequest()->post($host . '/msearch', $params)->getBody();
|
|
||||||
|
|
||||||
$msearch = json_decode($msearch_json);
|
|
||||||
|
|
||||||
$start = $_GET['start'] ?? 0;
|
|
||||||
$entries = [];
|
$entries = [];
|
||||||
$paginate = '';
|
foreach ([Search::getGlobalDirectory(), DI::baseUrl()] as $server) {
|
||||||
|
if (empty($server)) {
|
||||||
if (!empty($msearch->results)) {
|
continue;
|
||||||
for ($i = $start;count($entries) < 10 && $i < $msearch->total; $i++) {
|
|
||||||
$profile = $msearch->results[$i];
|
|
||||||
|
|
||||||
// Already known contact
|
|
||||||
if (!$profile || Contact::getIdForURL($profile->url, local_user())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$contact = Contact::getByURLForUser($profile->url, local_user());
|
|
||||||
if (!empty($contact)) {
|
|
||||||
$entries[] = ModuleContact::getContactTemplateVars($contact);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$data = [
|
$msearch = json_decode(DI::httpRequest()->post($server . '/msearch', $params)->getBody());
|
||||||
'class' => 'pager',
|
if (!empty($msearch)) {
|
||||||
'first' => [
|
$entries = match_get_contacts($msearch, $entries, $limit);
|
||||||
'url' => 'match',
|
}
|
||||||
'text' => DI::l10n()->t('first'),
|
|
||||||
'class' => 'previous' . ($start == 0 ? 'disabled' : '')
|
|
||||||
],
|
|
||||||
'next' => [
|
|
||||||
'url' => 'match?start=' . $i,
|
|
||||||
'text' => DI::l10n()->t('next'),
|
|
||||||
'class' => 'next' . ($i >= $msearch->total ? ' disabled' : '')
|
|
||||||
]
|
|
||||||
];
|
|
||||||
|
|
||||||
$tpl = Renderer::getMarkupTemplate('paginate.tpl');
|
|
||||||
$paginate = Renderer::replaceMacros($tpl, ['pager' => $data]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($entries)) {
|
if (empty($entries)) {
|
||||||
|
@ -123,9 +96,37 @@ function match_content(App $a)
|
||||||
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
||||||
$o = Renderer::replaceMacros($tpl, [
|
$o = Renderer::replaceMacros($tpl, [
|
||||||
'$title' => DI::l10n()->t('Profile Match'),
|
'$title' => DI::l10n()->t('Profile Match'),
|
||||||
'$contacts' => $entries,
|
'$contacts' => array_slice($entries, 0, $limit),
|
||||||
'$paginate' => $paginate
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
Loading…
Reference in a new issue