2019-12-20 21:30:13 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2024-01-02 21:57:26 +01:00
|
|
|
* @copyright Copyright (C) 2010-2024, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2019-12-20 21:30:13 +01:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2019-12-20 21:30:13 +01:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2021-10-23 10:49:27 +02:00
|
|
|
use Friendica\Core\Cache\Enum\Duration;
|
2019-12-20 21:30:13 +01:00
|
|
|
use Friendica\Core\Logger;
|
2020-01-04 23:59:20 +01:00
|
|
|
use Friendica\Core\Search;
|
2020-01-07 00:41:20 +01:00
|
|
|
use Friendica\DI;
|
2020-07-16 21:22:38 +02:00
|
|
|
use Friendica\Model\Contact;
|
2022-04-02 20:26:11 +02:00
|
|
|
use Friendica\Network\HTTPClient\Client\HttpClientAccept;
|
2019-12-20 21:30:13 +01:00
|
|
|
|
|
|
|
class SearchDirectory
|
|
|
|
{
|
|
|
|
// <search pattern>: Searches for "search pattern" in the directory.
|
|
|
|
public static function execute($search)
|
|
|
|
{
|
2020-01-19 21:21:13 +01:00
|
|
|
if (!DI::config()->get('system', 'poco_local_search')) {
|
2019-12-20 21:30:13 +01:00
|
|
|
Logger::info('Local search is not enabled');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-07 00:45:49 +01:00
|
|
|
$data = DI::cache()->get('SearchDirectory:' . $search);
|
2019-12-20 21:30:13 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 21:16:22 +02:00
|
|
|
$x = DI::httpClient()->fetch(Search::getGlobalDirectory() . '/lsearch?p=1&n=500&search=' . urlencode($search), HttpClientAccept::JSON);
|
2019-12-20 21:30:13 +01:00
|
|
|
$j = json_decode($x);
|
|
|
|
|
|
|
|
if (!empty($j->results)) {
|
|
|
|
foreach ($j->results as $jj) {
|
2020-08-01 18:15:18 +02:00
|
|
|
Contact::getByURL($jj->url);
|
2019-12-20 21:30:13 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-18 15:41:19 +01:00
|
|
|
DI::cache()->set('SearchDirectory:' . $search, time(), Duration::DAY);
|
2019-12-20 21:30:13 +01:00
|
|
|
}
|
|
|
|
}
|