2017-11-18 02:59:30 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 10:18:46 -05:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
2017-11-18 02:59:30 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2017-11-18 02:59:30 -05:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-19 15:26:42 -05:00
|
|
|
use Friendica\DI;
|
2017-11-18 02:59:30 -05:00
|
|
|
|
2020-02-09 10:18:46 -05:00
|
|
|
/**
|
|
|
|
* Sends updated profile data to the directory
|
|
|
|
*/
|
2018-01-27 11:13:41 -05:00
|
|
|
class Directory
|
|
|
|
{
|
|
|
|
public static function execute($url = '')
|
|
|
|
{
|
2020-01-19 15:21:13 -05:00
|
|
|
$dir = DI::config()->get('system', 'directory');
|
2017-11-18 02:59:30 -05:00
|
|
|
|
|
|
|
if (!strlen($dir)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($url == '') {
|
|
|
|
self::updateAll();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$dir .= "/submit";
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$arr = ['url' => $url];
|
2017-11-18 02:59:30 -05:00
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('globaldir_update', $arr);
|
2017-11-18 02:59:30 -05:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Updating directory: ' . $arr['url'], Logger::DEBUG);
|
2017-11-18 02:59:30 -05:00
|
|
|
if (strlen($arr['url'])) {
|
2021-08-25 15:54:54 -04:00
|
|
|
DI::httpClient()->fetch($dir . '?url=' . bin2hex($arr['url']));
|
2017-11-18 02:59:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function updateAll() {
|
2020-04-24 07:55:46 -04:00
|
|
|
$users = DBA::select('owner-view', ['url'], ['net-publish' => true, 'account_expired' => false, 'verified' => true]);
|
|
|
|
while ($user = DBA::fetch($users)) {
|
|
|
|
Worker::add(PRIORITY_LOW, 'Directory', $user['url']);
|
2017-11-18 02:59:30 -05:00
|
|
|
}
|
2020-04-24 07:55:46 -04:00
|
|
|
DBA::close($users);
|
2017-11-18 02:59:30 -05:00
|
|
|
}
|
|
|
|
}
|