2017-11-18 11:02:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/DiscoverPoCo.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
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\Protocol\PortableContact;
|
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:
|
|
|
|
- server <poco url>: Searches for the poco server list. "poco url" is base64 encoded.
|
|
|
|
*/
|
|
|
|
|
2018-02-14 05:05:00 +00:00
|
|
|
$search = "";
|
|
|
|
$mode = 0;
|
2019-12-20 21:04:38 +00:00
|
|
|
if ($command == "server") {
|
2017-11-18 11:02:46 +00:00
|
|
|
$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 !== "") {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|