2019-12-20 15:30:13 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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 15:30:13 -05:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2019-12-20 15:30:13 -05:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2020-01-18 09:41:19 -05:00
|
|
|
use Friendica\Core\Cache\Duration;
|
2019-12-20 15:30:13 -05:00
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Protocol;
|
2020-01-04 17:59:20 -05:00
|
|
|
use Friendica\Core\Search;
|
2019-12-20 15:30:13 -05:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-06 18:41:20 -05:00
|
|
|
use Friendica\DI;
|
2019-12-20 15:30:13 -05:00
|
|
|
use Friendica\Model\GContact;
|
|
|
|
use Friendica\Model\GServer;
|
|
|
|
use Friendica\Network\Probe;
|
|
|
|
use Friendica\Util\Network;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
class SearchDirectory
|
|
|
|
{
|
|
|
|
// <search pattern>: Searches for "search pattern" in the directory.
|
|
|
|
public static function execute($search)
|
|
|
|
{
|
2020-01-19 15:21:13 -05:00
|
|
|
if (!DI::config()->get('system', 'poco_local_search')) {
|
2019-12-20 15:30:13 -05:00
|
|
|
Logger::info('Local search is not enabled');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-06 18:45:49 -05:00
|
|
|
$data = DI::cache()->get('SearchDirectory:' . $search);
|
2019-12-20 15:30:13 -05: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-04 17:59:20 -05:00
|
|
|
$x = Network::fetchUrl(Search::getGlobalDirectory() . '/lsearch?p=1&n=500&search=' . urlencode($search));
|
2019-12-20 15:30:13 -05:00
|
|
|
$j = json_decode($x);
|
|
|
|
|
|
|
|
if (!empty($j->results)) {
|
|
|
|
foreach ($j->results as $jj) {
|
|
|
|
// Check if the contact already exists
|
|
|
|
$gcontact = DBA::selectFirst('gcontact', ['id', 'last_contact', 'last_failure', 'updated'], ['nurl' => Strings::normaliseLink($jj->url)]);
|
|
|
|
if (DBA::isResult($gcontact)) {
|
|
|
|
Logger::info('Profile already exists', ['profile' => $jj->url, 'search' => $search]);
|
|
|
|
|
|
|
|
if (($gcontact['last_contact'] < $gcontact['last_failure']) &&
|
|
|
|
($gcontact['updated'] < $gcontact['last_failure'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the contact
|
|
|
|
GContact::updateFromProbe($jj->url);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-01-01 12:54:36 -05:00
|
|
|
$server_url = GContact::getBasepath($jj->url, true);
|
2019-12-20 15:30:13 -05:00
|
|
|
if ($server_url != '') {
|
|
|
|
if (!GServer::check($server_url)) {
|
2019-12-20 23:23:26 -05:00
|
|
|
Logger::info("Friendica server doesn't answer.", ['server' => $server_url]);
|
2019-12-20 15:30:13 -05:00
|
|
|
continue;
|
|
|
|
}
|
2019-12-20 23:23:26 -05:00
|
|
|
Logger::info('Friendica server seems to be okay.', ['server' => $server_url]);
|
2019-12-20 15:30:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$data = Probe::uri($jj->url);
|
|
|
|
if ($data['network'] == Protocol::DFRN) {
|
2019-12-20 23:23:26 -05:00
|
|
|
Logger::info('Add profile to local directory', ['profile' => $jj->url]);
|
2019-12-20 15:30:13 -05:00
|
|
|
|
|
|
|
if ($jj->tags != '') {
|
|
|
|
$data['keywords'] = $jj->tags;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data['server_url'] = $data['baseurl'];
|
|
|
|
|
|
|
|
GContact::update($data);
|
|
|
|
} else {
|
2019-12-20 23:23:26 -05:00
|
|
|
Logger::info('Profile is not responding or no Friendica contact', ['profile' => $jj->url, 'network' => $data['network']]);
|
2019-12-20 15:30:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-18 09:41:19 -05:00
|
|
|
DI::cache()->set('SearchDirectory:' . $search, time(), Duration::DAY);
|
2019-12-20 15:30:13 -05:00
|
|
|
}
|
|
|
|
}
|