friendica/src/Worker/UpdateGContacts.php

102 lines
3.1 KiB
PHP
Raw Normal View History

2019-12-20 22:04:38 +01:00
<?php
/**
* @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 22:04:38 +01:00
*/
2019-12-20 22:04:38 +01:00
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Core\Protocol;
use Friendica\Core\Worker;
use Friendica\Database\DBA;
use Friendica\DI;
2020-01-01 18:54:36 +01:00
use Friendica\Model\GContact;
2019-12-20 22:04:38 +01:00
use Friendica\Model\GServer;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Strings;
2019-12-21 19:57:00 +01:00
class UpdateGContacts
2019-12-20 22:04:38 +01:00
{
2019-12-21 21:18:44 +01:00
/**
* Updates global contacts
*/
2019-12-20 22:04:38 +01:00
public static function execute()
{
if (!DI::config()->get('system', 'poco_completion')) {
2019-12-20 22:04:38 +01:00
return;
}
2019-12-21 21:18:44 +01:00
Logger::info('Update global contacts');
2019-12-20 22:04:38 +01:00
$starttime = time();
2019-12-20 22:27:49 +01:00
$contacts = DBA::p("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url`, `network` FROM `gcontact`
2019-12-20 22:04:38 +01:00
WHERE `last_contact` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
`last_failure` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
2019-12-21 21:18:44 +01:00
`network` IN (?, ?, ?, ?, ?, '') ORDER BY rand()",
Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED);
2019-12-20 22:04:38 +01:00
$checked = 0;
while ($contact = DBA::fetch($contacts)) {
$urlparts = parse_url($contact['url']);
if (empty($urlparts['scheme'])) {
DBA::update('gcontact', ['network' => Protocol::PHANTOM],
['nurl' => Strings::normaliseLink($contact['url'])]);
continue;
}
if (in_array($urlparts['host'], ['twitter.com', 'identi.ca'])) {
$networks = ['twitter.com' => Protocol::TWITTER, 'identi.ca' => Protocol::PUMPIO];
DBA::update('gcontact', ['network' => $networks[$urlparts['host']]],
['nurl' => Strings::normaliseLink($contact['url'])]);
continue;
}
2020-01-01 18:54:36 +01:00
$server_url = GContact::getBasepath($contact['url'], true);
2019-12-20 22:04:38 +01:00
$force_update = false;
if (!empty($contact['server_url'])) {
$force_update = (Strings::normaliseLink($contact['server_url']) != Strings::normaliseLink($server_url));
$server_url = $contact['server_url'];
}
if ((empty($server_url) && ($contact['network'] == Protocol::FEED)) || $force_update || GServer::check($server_url, $contact['network'])) {
Logger::info('Check profile', ['profile' => $contact['url']]);
Worker::add(PRIORITY_LOW, 'UpdateGContact', $contact['url'], 'force');
if (++$checked > 100) {
return;
}
} else {
DBA::update('gcontact', ['last_failure' => DateTimeFormat::utcNow()],
['nurl' => Strings::normaliseLink($contact['url'])]);
}
// Quit the loop after 3 minutes
if (time() > ($starttime + 180)) {
return;
}
}
2020-04-28 09:10:18 +02:00
DBA::close($contacts);
2019-12-20 22:04:38 +01:00
}
}