friendica/src/Worker/UpdateServerDirectories.php

33 lines
736 B
PHP
Raw Normal View History

2017-11-18 12:02:46 +01:00
<?php
/**
2019-12-21 19:57:00 +01:00
* @file src/Worker/UpdateServerDirectories.php
2017-11-18 12:02:46 +01:00
*/
namespace Friendica\Worker;
use Friendica\Core\Config;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Model\GContact;
use Friendica\Model\GServer;
2017-11-18 12:02:46 +01:00
use Friendica\Protocol\PortableContact;
2019-12-21 19:57:00 +01:00
class UpdateServerDirectories
{
2019-12-21 21:18:44 +01:00
/**
* Query global servers for their users
*/
2019-12-20 22:46:30 +01:00
public static function execute()
2017-11-18 12:02:46 +01:00
{
2019-12-20 22:46:30 +01:00
if (Config::get('system', 'poco_discovery') == PortableContact::DISABLED) {
return;
}
2019-12-20 22:46:30 +01:00
// Query Friendica and Hubzilla servers for their users
GServer::discover();
2017-11-18 12:02:46 +01:00
2019-12-20 22:46:30 +01:00
// Query GNU Social servers for their users ("statistics" addon has to be enabled on the GS server)
if (!Config::get('system', 'ostatus_disabled')) {
GContact::discoverGsUsers();
2017-11-18 12:02:46 +01:00
}
}
}