X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FSearchDirectory.php;h=4fd6d44d509fca8f2689a13816dc846e1131eb92;hb=94954c810b3ee0f885029f9818b217e0817ad70b;hp=0f5782db5584629f46ef6dda86a4abd5701995ff;hpb=01205f7d41d8b9e180f7dc00e22c7cb18bdf7d5c;p=friendica.git diff --git a/src/Worker/SearchDirectory.php b/src/Worker/SearchDirectory.php index 0f5782db55..4fd6d44d50 100644 --- a/src/Worker/SearchDirectory.php +++ b/src/Worker/SearchDirectory.php @@ -26,13 +26,7 @@ class SearchDirectory return; } - self::discoverDirectory($search); - return; - } - - private static function discoverDirectory($search) - { - $data = Cache::get('discoverDirectory' . $search); + $data = Cache::get('SearchDirectory:' . $search); if (!is_null($data)) { // Only search for the same item every 24 hours if (time() < $data + (60 * 60 * 24)) { @@ -64,15 +58,15 @@ class SearchDirectory $server_url = Contact::getBasepath($jj->url); if ($server_url != '') { if (!GServer::check($server_url)) { - Logger::log("Friendica server doesn't answer.", ['server' => $server_url]); + Logger::info("Friendica server doesn't answer.", ['server' => $server_url]); continue; } - Logger::log('Friendica server seems to be okay.', ['server' => $server_url]); + Logger::info('Friendica server seems to be okay.', ['server' => $server_url]); } $data = Probe::uri($jj->url); if ($data['network'] == Protocol::DFRN) { - Logger::log('Add profile to local directory', ['profile' => $jj->url]); + Logger::info('Add profile to local directory', ['profile' => $jj->url]); if ($jj->tags != '') { $data['keywords'] = $jj->tags; @@ -82,10 +76,10 @@ class SearchDirectory GContact::update($data); } else { - Logger::log('Profile is not responding or no Friendica contact', ['profile' => $jj->url, 'network' => $data['network']]); + Logger::info('Profile is not responding or no Friendica contact', ['profile' => $jj->url, 'network' => $data['network']]); } } } - Cache::set('discoverDirectory' . $search, time(), Cache::DAY); + Cache::set('SearchDirectory:' . $search, time(), Cache::DAY); } }