]> git.mxchange.org Git - friendica.git/blob - src/Worker/Directory.php
Merge pull request #11389 from nupplaphil/feat/http_client_arg
[friendica.git] / src / Worker / Directory.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Worker;
23
24 use Friendica\Core\Hook;
25 use Friendica\Core\Logger;
26 use Friendica\Core\Worker;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
30
31 /**
32  * Sends updated profile data to the directory
33  */
34 class Directory
35 {
36         public static function execute($url = '')
37         {
38                 $dir = DI::config()->get('system', 'directory');
39
40                 if (!strlen($dir)) {
41                         return;
42                 }
43
44                 if ($url == '') {
45                         self::updateAll();
46                         return;
47                 }
48
49                 $dir .= "/submit";
50
51                 $arr = ['url' => $url];
52
53                 Hook::callAll('globaldir_update', $arr);
54
55                 Logger::info('Updating directory: ' . $arr['url']);
56                 if (strlen($arr['url'])) {
57                         DI::httpClient()->fetch($dir . '?url=' . bin2hex($arr['url']), HttpClientAccept::HTML);
58                 }
59
60                 return;
61         }
62
63         private static function updateAll() {
64                 $users = DBA::select('owner-view', ['url'], ['net-publish' => true, 'account_expired' => false, 'verified' => true]);
65                 while ($user = DBA::fetch($users)) {
66                         Worker::add(PRIORITY_LOW, 'Directory', $user['url']);
67                 }
68                 DBA::close($users);
69         }
70 }