2017-11-18 11:02:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/DiscoverPoCo.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Core\Cache;
|
|
|
|
use Friendica\Core\Config;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 20:40:44 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2017-11-18 11:02:46 +00:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 14:09:28 +00:00
|
|
|
use Friendica\Model\GContact;
|
2019-10-02 15:10:42 +00:00
|
|
|
use Friendica\Model\Contact;
|
2019-10-03 23:33:41 +00:00
|
|
|
use Friendica\Model\GServer;
|
2017-11-18 11:02:46 +00:00
|
|
|
use Friendica\Network\Probe;
|
|
|
|
use Friendica\Protocol\PortableContact;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-01-27 04:09:48 +00:00
|
|
|
use Friendica\Util\Network;
|
2018-11-08 16:28:29 +00:00
|
|
|
use Friendica\Util\Strings;
|
2017-11-18 11:02:46 +00:00
|
|
|
|
2018-07-10 02:39:59 +00:00
|
|
|
class DiscoverPoCo
|
|
|
|
{
|
2017-11-18 11:02:46 +00:00
|
|
|
/// @todo Clean up this mess of a parameter hell and split it in several classes
|
2017-11-19 00:14:20 +00:00
|
|
|
public static function execute($command = '', $param1 = '', $param2 = '', $param3 = '', $param4 = '')
|
2017-11-18 11:02:46 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
This function can be called in these ways:
|
|
|
|
- checkcontact: Updates gcontact entries
|
|
|
|
- server <poco url>: Searches for the poco server list. "poco url" is base64 encoded.
|
|
|
|
- update_server: Frequently check the first 250 servers for vitality.
|
|
|
|
- PortableContact::load: Load POCO data from a given POCO address
|
|
|
|
*/
|
|
|
|
|
2018-02-14 05:05:00 +00:00
|
|
|
$search = "";
|
|
|
|
$mode = 0;
|
2019-12-20 20:30:13 +00:00
|
|
|
if (($command == "checkcontact") && Config::get('system', 'poco_completion')) {
|
|
|
|
self::discoverUsers();
|
2017-11-18 11:02:46 +00:00
|
|
|
} elseif ($command == "server") {
|
|
|
|
$server_url = $param1;
|
|
|
|
if ($server_url == "") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$server_url = filter_var($server_url, FILTER_SANITIZE_URL);
|
2018-11-08 16:28:29 +00:00
|
|
|
if (substr(Strings::normaliseLink($server_url), 0, 7) != "http://") {
|
2017-11-18 11:02:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$result = "Checking server ".$server_url." - ";
|
2019-10-03 23:33:41 +00:00
|
|
|
$ret = GServer::check($server_url);
|
2017-11-18 11:02:46 +00:00
|
|
|
if ($ret) {
|
|
|
|
$result .= "success";
|
|
|
|
} else {
|
|
|
|
$result .= "failed";
|
|
|
|
}
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log($result, Logger::DEBUG);
|
2019-12-20 20:30:13 +00:00
|
|
|
} elseif ($command == "update_server") {
|
|
|
|
self::updateServer();
|
|
|
|
} elseif ($command == "load") {
|
|
|
|
if (!empty($param4)) {
|
|
|
|
$url = $param4;
|
|
|
|
} else {
|
|
|
|
$url = '';
|
|
|
|
}
|
|
|
|
PortableContact::load(intval($param1), intval($param2), intval($param3), $url);
|
|
|
|
} elseif ($command !== "") {
|
|
|
|
Logger::log("Unknown or missing parameter ".$command."\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger::log('start '.$search);
|
|
|
|
|
|
|
|
if (($mode == 0) && ($search == "") && (Config::get('system', 'poco_discovery') != PortableContact::DISABLED)) {
|
2017-11-18 11:02:46 +00:00
|
|
|
// Query Friendica and Hubzilla servers for their users
|
|
|
|
PortableContact::discover();
|
|
|
|
|
|
|
|
// Query GNU Social servers for their users ("statistics" addon has to be enabled on the GS server)
|
|
|
|
if (!Config::get('system', 'ostatus_disabled')) {
|
2017-12-07 14:09:28 +00:00
|
|
|
GContact::discoverGsUsers();
|
2017-11-18 11:02:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('end '.$search);
|
2017-11-18 11:02:46 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Updates the first 250 servers
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
private static function updateServer() {
|
|
|
|
$r = q("SELECT `url`, `created`, `last_failure`, `last_contact` FROM `gserver` ORDER BY rand()");
|
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($r)) {
|
2017-11-18 11:02:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$updated = 0;
|
|
|
|
|
|
|
|
foreach ($r AS $server) {
|
|
|
|
if (!PortableContact::updateNeeded($server["created"], "", $server["last_failure"], $server["last_contact"])) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('Update server status for server '.$server["url"], Logger::DEBUG);
|
2017-11-18 11:02:46 +00:00
|
|
|
|
|
|
|
Worker::add(PRIORITY_LOW, "DiscoverPoCo", "server", $server["url"]);
|
|
|
|
|
|
|
|
if (++$updated > 250) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function discoverUsers() {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log("Discover users", Logger::DEBUG);
|
2017-11-18 11:02:46 +00:00
|
|
|
|
|
|
|
$starttime = time();
|
|
|
|
|
|
|
|
$users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url`, `network` FROM `gcontact`
|
|
|
|
WHERE `last_contact` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
|
|
|
|
`last_failure` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
|
|
|
|
`network` IN ('%s', '%s', '%s', '%s', '') ORDER BY rand()",
|
2018-08-11 20:40:44 +00:00
|
|
|
DBA::escape(Protocol::DFRN), DBA::escape(Protocol::DIASPORA),
|
|
|
|
DBA::escape(Protocol::OSTATUS), DBA::escape(Protocol::FEED));
|
2017-11-18 11:02:46 +00:00
|
|
|
|
|
|
|
if (!$users) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$checked = 0;
|
|
|
|
|
|
|
|
foreach ($users AS $user) {
|
|
|
|
|
|
|
|
$urlparts = parse_url($user["url"]);
|
|
|
|
if (!isset($urlparts["scheme"])) {
|
2018-08-11 20:40:44 +00:00
|
|
|
DBA::update('gcontact', ['network' => Protocol::PHANTOM],
|
2018-11-08 16:28:29 +00:00
|
|
|
['nurl' => Strings::normaliseLink($user["url"])]);
|
2017-11-18 11:02:46 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-08-07 15:06:51 +00:00
|
|
|
if (in_array($urlparts["host"], ["twitter.com", "identi.ca"])) {
|
2018-08-11 20:40:44 +00:00
|
|
|
$networks = ["twitter.com" => Protocol::TWITTER, "identi.ca" => Protocol::PUMPIO];
|
2017-11-18 11:02:46 +00:00
|
|
|
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::update('gcontact', ['network' => $networks[$urlparts["host"]]],
|
2018-11-08 16:28:29 +00:00
|
|
|
['nurl' => Strings::normaliseLink($user["url"])]);
|
2017-11-18 11:02:46 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-10-02 15:10:42 +00:00
|
|
|
$server_url = Contact::getBasepath($user["url"]);
|
2017-11-18 11:02:46 +00:00
|
|
|
$force_update = false;
|
|
|
|
|
|
|
|
if ($user["server_url"] != "") {
|
|
|
|
|
2018-11-08 16:28:29 +00:00
|
|
|
$force_update = (Strings::normaliseLink($user["server_url"]) != Strings::normaliseLink($server_url));
|
2017-11-18 11:02:46 +00:00
|
|
|
|
|
|
|
$server_url = $user["server_url"];
|
|
|
|
}
|
|
|
|
|
2019-10-04 05:42:54 +00:00
|
|
|
if ((($server_url == "") && ($user["network"] == Protocol::FEED)) || $force_update || GServer::check($server_url, $user["network"])) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('Check profile '.$user["url"]);
|
2019-12-20 20:30:13 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateGContact', $user['url'], 'force');
|
2017-11-18 11:02:46 +00:00
|
|
|
|
|
|
|
if (++$checked > 100) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::update('gcontact', ['last_failure' => DateTimeFormat::utcNow()],
|
2018-11-08 16:28:29 +00:00
|
|
|
['nurl' => Strings::normaliseLink($user["url"])]);
|
2017-11-18 11:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Quit the loop after 3 minutes
|
|
|
|
if (time() > ($starttime + 180)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|