Rework mod/match
- Replace classic pager with a start index - Remove q() calls - Ensure template is still loaded even with no results. - Improve Minimal Pager display of next link
This commit is contained in:
parent
c15fd9beb8
commit
1938ec3ebe
114
mod/match.php
114
mod/match.php
|
@ -12,11 +12,9 @@ use Friendica\Core\Renderer;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\Model\Contact;
|
use Friendica\Model\Contact;
|
||||||
|
use Friendica\Model\Profile;
|
||||||
use Friendica\Util\Network;
|
use Friendica\Util\Network;
|
||||||
use Friendica\Util\Proxy as ProxyUtils;
|
use Friendica\Util\Proxy as ProxyUtils;
|
||||||
use Friendica\Util\Strings;
|
|
||||||
|
|
||||||
require_once 'include/text.php';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Controller for /match.
|
* @brief Controller for /match.
|
||||||
|
@ -26,13 +24,12 @@ require_once 'include/text.php';
|
||||||
*
|
*
|
||||||
* @param App $a App
|
* @param App $a App
|
||||||
*
|
*
|
||||||
* @return void|string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function match_content(App $a)
|
function match_content(App $a)
|
||||||
{
|
{
|
||||||
$o = '';
|
|
||||||
if (!local_user()) {
|
if (!local_user()) {
|
||||||
return;
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$a->page['aside'] .= Widget::findPeople();
|
$a->page['aside'] .= Widget::findPeople();
|
||||||
|
@ -40,91 +37,102 @@ function match_content(App $a)
|
||||||
|
|
||||||
$_SESSION['return_path'] = $a->cmd;
|
$_SESSION['return_path'] = $a->cmd;
|
||||||
|
|
||||||
$r = q(
|
$profile = Profile::getByUID(local_user());
|
||||||
"SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
|
|
||||||
intval(local_user())
|
if (!DBA::isResult($profile)) {
|
||||||
);
|
return '';
|
||||||
if (! DBA::isResult($r)) {
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
if (! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) {
|
if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) {
|
||||||
notice(L10n::t('No keywords to match. Please add keywords to your default profile.') . EOL);
|
notice(L10n::t('No keywords to match. Please add keywords to your default profile.') . EOL);
|
||||||
return;
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$params = [];
|
$params = [];
|
||||||
$tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']);
|
$tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
|
||||||
|
|
||||||
if ($tags) {
|
|
||||||
$pager = new Pager($a->query_string);
|
|
||||||
|
|
||||||
$params['s'] = $tags;
|
$params['s'] = $tags;
|
||||||
if ($pager->getPage() != 1) {
|
$params['n'] = 100;
|
||||||
$params['p'] = $pager->getPage();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen(Config::get('system', 'directory'))) {
|
if (strlen(Config::get('system', 'directory'))) {
|
||||||
$x = Network::post(get_server().'/msearch', $params)->getBody();
|
$host = get_server();
|
||||||
} else {
|
} else {
|
||||||
$x = Network::post(System::baseUrl() . '/msearch', $params)->getBody();
|
$host = System::baseUrl();
|
||||||
}
|
}
|
||||||
|
|
||||||
$j = json_decode($x);
|
$msearch_json = Network::post($host . '/msearch', $params)->getBody();
|
||||||
|
|
||||||
if (count($j->results)) {
|
$msearch = json_decode($msearch_json);
|
||||||
$pager->setItemsPerPage($j->items_page);
|
|
||||||
|
|
||||||
$id = 0;
|
$start = defaults($_GET, 'start', 0);
|
||||||
|
$entries = [];
|
||||||
|
$paginate = '';
|
||||||
|
|
||||||
foreach ($j->results as $jj) {
|
if (!empty($msearch->results)) {
|
||||||
$match_nurl = Strings::normaliseLink($jj->url);
|
for ($i = $start;count($entries) < 10 && $i < $msearch->total; $i++) {
|
||||||
$match = q(
|
$profile = $msearch->results[$i];
|
||||||
"SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1",
|
|
||||||
intval(local_user()),
|
|
||||||
DBA::escape($match_nurl)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!count($match)) {
|
// Already known contact
|
||||||
$jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
|
if (Contact::getIdForURL($profile->url, local_user(), true)) {
|
||||||
$connlnk = System::baseUrl() . '/follow/?url=' . $jj->url;
|
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 = [
|
$photo_menu = [
|
||||||
'profile' => [L10n::t("View Profile"), Contact::magicLink($jj->url)],
|
'profile' => [L10n::t("View Profile"), Contact::magicLink($profile->url)],
|
||||||
'follow' => [L10n::t("Connect/Follow"), $connlnk]
|
'follow' => [L10n::t("Connect/Follow"), $connlnk]
|
||||||
];
|
];
|
||||||
|
|
||||||
$contact_details = Contact::getDetailsByURL($jj->url, local_user());
|
$contact_details = Contact::getDetailsByURL($profile->url, 0);
|
||||||
|
|
||||||
$entry = [
|
$entry = [
|
||||||
'url' => Contact::magicLink($jj->url),
|
'url' => Contact::magicLink($profile->url),
|
||||||
'itemurl' => defaults($contact_details, 'addr', $jj->url),
|
'itemurl' => defaults($contact_details, 'addr', $profile->url),
|
||||||
'name' => $jj->name,
|
'name' => $profile->name,
|
||||||
'details' => defaults($contact_details, 'location', ''),
|
'details' => defaults($contact_details, 'location', ''),
|
||||||
'tags' => defaults($contact_details, 'keywords', ''),
|
'tags' => defaults($contact_details, 'keywords', ''),
|
||||||
'about' => defaults($contact_details, 'about', ''),
|
'about' => defaults($contact_details, 'about', ''),
|
||||||
'account_type' => Contact::getAccountType($contact_details),
|
'account_type' => Contact::getAccountType($contact_details),
|
||||||
'thumb' => ProxyUtils::proxifyUrl($jj->photo, false, ProxyUtils::SIZE_THUMB),
|
'thumb' => ProxyUtils::proxifyUrl($profile->photo, false, ProxyUtils::SIZE_THUMB),
|
||||||
'inttxt' => ' ' . L10n::t('is interested in:'),
|
|
||||||
'conntxt' => L10n::t('Connect'),
|
'conntxt' => L10n::t('Connect'),
|
||||||
'connlnk' => $connlnk,
|
'connlnk' => $connlnk,
|
||||||
'img_hover' => $jj->tags,
|
'img_hover' => $profile->tags,
|
||||||
'photo_menu' => $photo_menu,
|
'photo_menu' => $photo_menu,
|
||||||
'id' => ++$id,
|
'id' => $i,
|
||||||
];
|
];
|
||||||
$entries[] = $entry;
|
$entries[] = $entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$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]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($entries)) {
|
||||||
|
info(L10n::t('No matches') . EOL);
|
||||||
}
|
}
|
||||||
|
|
||||||
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
||||||
|
$o = Renderer::replaceMacros($tpl, [
|
||||||
$o .= Renderer::replaceMacros($tpl, [
|
|
||||||
'$title' => L10n::t('Profile Match'),
|
'$title' => L10n::t('Profile Match'),
|
||||||
'$contacts' => $entries,
|
'$contacts' => $entries,
|
||||||
'$paginate' => $pager->renderFull($j->total)
|
'$paginate' => $paginate
|
||||||
]);
|
]);
|
||||||
} else {
|
|
||||||
info(L10n::t('No matches') . EOL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
|
@ -169,7 +169,7 @@ class Pager
|
||||||
'next' => [
|
'next' => [
|
||||||
'url' => $this->ensureQueryParameter($this->baseQueryString . '&page=' . ($this->getPage() + 1)),
|
'url' => $this->ensureQueryParameter($this->baseQueryString . '&page=' . ($this->getPage() + 1)),
|
||||||
'text' => L10n::t('older'),
|
'text' => L10n::t('older'),
|
||||||
'class' => 'next' . ($displayedItemCount <= 0 ? ' disabled' : '')
|
'class' => 'next' . ($displayedItemCount < $this->getItemsPerPage() ? ' disabled' : '')
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue