session = $session; $this->database = $database; $this->systemMessages = $systemMessages; $this->page = $page; $this->mode = $mode; $this->config = $config; $this->pConfig = $pConfig; $this->httpClient = $httpClient; } protected function content(array $request = []): string { if (!$this->session->getLocalUserId()) { $this->systemMessages->addNotice($this->t('Permission denied.')); $this->baseUrl->redirect('login&return_path=match'); } $profile = Profile::getByUID($this->session->getLocalUserId()); if (empty($profile)) { $this->logger->warning('Couldn\'t find Profile for user id in session.', ['uid' => $this->session->getLocalUserId()]); throw new InternalServerErrorException($this->t('Invalid request.')); } $this->page['aside'] .= Widget::findPeople(); $this->page['aside'] .= Widget::follow(); if (empty($profile['pub_keywords']) && empty($profile['prv_keywords'])) { $this->systemMessages->addNotice($this->t('No keywords to match. Please add keywords to your profile.')); return ''; } if ($this->mode->isMobile()) { $limit = $this->pConfig->get($this->session->getLocalUserId(), 'system', 'itemspage_mobile_network') ?? $this->config->get('system', 'itemspage_network_mobile'); } else { $limit = $this->pConfig->get($this->session->getLocalUserId(), 'system', 'itemspage_network') ?? $this->config->get('system', 'itemspage_network'); } $searchParameters = [ 's' => trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']), 'n' => self::FETCH_PER_PAGE, ]; $entries = []; foreach ([Search::getGlobalDirectory(), $this->baseUrl] as $server) { if (empty($server)) { continue; } $result = $this->httpClient->post($server . '/search/user/tags', $searchParameters); if (!$result->isSuccess()) { // try legacy endpoint $result = $this->httpClient->post($server . '/contact/search/tags', $searchParameters); if (!$result->isSuccess()) { $this->logger->notice('Search-Endpoint not available for server.', ['server' => $server]); continue; } } $entries = $this->parseContacts(json_decode($result->getBody()), $entries, $limit); } if (empty($entries)) { $this->systemMessages->addNotice($this->t('No matches')); } $tpl = Renderer::getMarkupTemplate('contact/list.tpl'); return Renderer::replaceMacros($tpl, [ '$title' => $this->t('Profile Match'), '$contacts' => array_slice($entries, 0, $limit), ]); } /** * parses the JSON result and adds the new entries until the limit is reached * * @param $jsonResult * @param array $entries * @param int $limit * * @return array the new entries array */ protected function parseContacts($jsonResult, array $entries, int $limit): array { if (empty($jsonResult->results)) { return $entries; } foreach ($jsonResult->results as $profile) { if (!$profile) { continue; } // Already known contact $contact = Contact::getByURL($profile->url, null, ['rel'], $this->session->getLocalUserId()); if (!empty($contact) && in_array($contact['rel'], [Contact::FRIEND, Contact::SHARING])) { continue; } $contact = Contact::getByURLForUser($profile->url, $this->session->getLocalUserId()); if (!empty($contact)) { $entries[$contact['id']] = ModuleContact::getContactTemplateVars($contact); } if (count($entries) == $limit) { break; } } return $entries; } }