]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/SearchDirectory.php
Merge pull request #7996 from annando/poco-cleanup
[friendica.git] / src / Worker / SearchDirectory.php
index 0f5782db5584629f46ef6dda86a4abd5701995ff..4fd6d44d509fca8f2689a13816dc846e1131eb92 100644 (file)
@@ -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);
        }
 }