X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FSearch.php;h=fb63f3d0f7d64821a86b78018e11792a8b7de9fa;hb=62e7d0f40aac689b56e79b504c6eb2e59cbe6c14;hp=7f9ffeec5da0943397050ae4f99e8e5df8c7b793;hpb=c6b45a958e3b09bc8f3950a718c181dfc9e0b910;p=friendica.git diff --git a/src/Core/Search.php b/src/Core/Search.php index 7f9ffeec5d..fb63f3d0f7 100644 --- a/src/Core/Search.php +++ b/src/Core/Search.php @@ -1,6 +1,6 @@ fetch($searchUrl, false, 0, 'application/json'); + $resultJson = DI::httpRequest()->fetch($searchUrl, 0, 'application/json'); $results = json_decode($resultJson, true); @@ -171,45 +170,11 @@ class Search { Logger::info('Searching', ['search' => $search, 'type' => $type, 'start' => $start, 'itempage' => $itemPage]); - $config = DI::config(); + $contacts = Contact::searchByName($search, $type == self::TYPE_FORUM ? 'community' : ''); - $diaspora = $config->get('system', 'diaspora_enabled') ? Protocol::DIASPORA : Protocol::DFRN; - $ostatus = !$config->get('system', 'ostatus_disabled') ? Protocol::OSTATUS : Protocol::DFRN; + $resultList = new ResultList($start, $itemPage, count($contacts)); - $wildcard = Strings::escapeHtml('%' . $search . '%'); - - $condition = [ - 'NOT `unsearchable` - AND `network` IN (?, ?, ?, ?) - AND NOT `failed` AND `uid` = ? - AND (`url` LIKE ? OR `name` LIKE ? OR `location` LIKE ? - OR `addr` LIKE ? OR `about` LIKE ? OR `keywords` LIKE ?) - AND `forum` = ?', - Protocol::ACTIVITYPUB, Protocol::DFRN, $ostatus, $diaspora, 0, - $wildcard, $wildcard, $wildcard, - $wildcard, $wildcard, $wildcard, - ($type === self::TYPE_FORUM), - ]; - - $count = DBA::count('contact', $condition); - - $resultList = new ResultList($start, $itemPage, $count); - - if (empty($count)) { - return $resultList; - } - - $data = DBA::select('contact', [], $condition, [ - 'group_by' => ['nurl', 'updated'], - 'limit' => [$start, $itemPage], - 'order' => ['updated' => 'DESC'] - ]); - - if (!DBA::isResult($data)) { - return $resultList; - } - - while ($contact = DBA::fetch($data)) { + foreach ($contacts as $contact) { $result = new ContactResult( $contact["name"], $contact["addr"], @@ -225,8 +190,6 @@ class Search $resultList->addResult($result); } - DBA::close($data); - // Add found profiles from the global directory to the local directory Worker::add(PRIORITY_LOW, 'SearchDirectory', $search); @@ -264,7 +227,7 @@ class Search $return = Contact::searchByName($search, $mode); } else { $p = $page > 1 ? 'p=' . $page : ''; - $curlResult = DI::httpRequest()->get(self::getGlobalDirectory() . '/search/people?' . $p . '&q=' . urlencode($search), false, ['accept_content' => 'application/json']); + $curlResult = DI::httpRequest()->get(self::getGlobalDirectory() . '/search/people?' . $p . '&q=' . urlencode($search), ['accept_content' => 'application/json']); if ($curlResult->isSuccess()) { $searchResult = json_decode($curlResult->getBody(), true); if (!empty($searchResult['profiles'])) {