. * */ namespace Friendica\Worker; use Friendica\Core\Cache\Enum\Duration; use Friendica\Core\Logger; use Friendica\Core\Search; use Friendica\DI; use Friendica\Model\Contact; use Friendica\Network\HTTPClient\Client\HttpClientAccept; class SearchDirectory { // : Searches for "search pattern" in the directory. public static function execute($search) { if (!DI::config()->get('system', 'poco_local_search')) { Logger::info('Local search is not enabled'); return; } $data = DI::cache()->get('SearchDirectory:' . $search); if (!is_null($data)) { // Only search for the same item every 24 hours if (time() < $data + (60 * 60 * 24)) { Logger::info('Already searched this in the last 24 hours', ['search' => $search]); return; } } $x = DI::httpClient()->fetch(Search::getGlobalDirectory() . '/lsearch?p=1&n=500&search=' . urlencode($search), HttpClientAccept::JSON); $j = json_decode($x); if (!empty($j->results)) { foreach ($j->results as $jj) { Contact::getByURL($jj->url); } } DI::cache()->set('SearchDirectory:' . $search, time(), Duration::DAY); } }