2017-11-18 12:02:46 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/DiscoverPoCo.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2017-11-18 12:02:46 +01:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 15:09:28 +01:00
|
|
|
use Friendica\Model\GContact;
|
2019-10-02 17:10:42 +02:00
|
|
|
use Friendica\Model\Contact;
|
2019-10-04 01:33:41 +02:00
|
|
|
use Friendica\Model\GServer;
|
2017-11-18 12:02:46 +01:00
|
|
|
use Friendica\Protocol\PortableContact;
|
2018-11-08 17:28:29 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-11-18 12:02:46 +01:00
|
|
|
|
2018-07-10 04:39:59 +02:00
|
|
|
class DiscoverPoCo
|
|
|
|
{
|
2017-11-18 12:02:46 +01:00
|
|
|
/// @todo Clean up this mess of a parameter hell and split it in several classes
|
2017-11-19 01:14:20 +01:00
|
|
|
public static function execute($command = '', $param1 = '', $param2 = '', $param3 = '', $param4 = '')
|
2017-11-18 12:02:46 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
This function can be called in these ways:
|
|
|
|
- server <poco url>: Searches for the poco server list. "poco url" is base64 encoded.
|
|
|
|
*/
|
|
|
|
|
2018-02-14 06:05:00 +01:00
|
|
|
$search = "";
|
|
|
|
$mode = 0;
|
2019-12-20 22:04:38 +01:00
|
|
|
if ($command == "server") {
|
2017-11-18 12:02:46 +01:00
|
|
|
$server_url = $param1;
|
|
|
|
if ($server_url == "") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$server_url = filter_var($server_url, FILTER_SANITIZE_URL);
|
2018-11-08 17:28:29 +01:00
|
|
|
if (substr(Strings::normaliseLink($server_url), 0, 7) != "http://") {
|
2017-11-18 12:02:46 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$result = "Checking server ".$server_url." - ";
|
2019-10-04 01:33:41 +02:00
|
|
|
$ret = GServer::check($server_url);
|
2017-11-18 12:02:46 +01:00
|
|
|
if ($ret) {
|
|
|
|
$result .= "success";
|
|
|
|
} else {
|
|
|
|
$result .= "failed";
|
|
|
|
}
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log($result, Logger::DEBUG);
|
2019-12-20 21:30:13 +01:00
|
|
|
} 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 12:02:46 +01: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 15:09:28 +01:00
|
|
|
GContact::discoverGsUsers();
|
2017-11-18 12:02:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('end '.$search);
|
2017-11-18 12:02:46 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|