]> git.mxchange.org Git - friendica.git/blob - src/Worker/Directory.php
Merge pull request #12814 from nupplaphil/bug/config_multi_serialize
[friendica.git] / src / Worker / Directory.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Search;
27 use Friendica\Core\Worker;
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
31
32 /**
33  * Sends updated profile data to the directory
34  */
35 class Directory
36 {
37         public static function execute(string $url = '')
38         {
39                 $dir = Search::getGlobalDirectory();
40
41                 if (!strlen($dir)) {
42                         return;
43                 }
44
45                 if ($url == '') {
46                         self::updateAll();
47                         return;
48                 }
49
50                 $dir .= "/submit";
51
52                 $arr = ['url' => $url];
53
54                 Hook::callAll('globaldir_update', $arr);
55
56                 Logger::info('Updating directory: ' . $arr['url']);
57                 if (strlen($arr['url'])) {
58                         DI::httpClient()->fetch($dir . '?url=' . bin2hex($arr['url']), HttpClientAccept::HTML);
59                 }
60
61                 return;
62         }
63
64         private static function updateAll() {
65                 $users = DBA::select('owner-view', ['url'], ['net-publish' => true, 'account_expired' => false, 'verified' => true]);
66                 while ($user = DBA::fetch($users)) {
67                         Worker::add(Worker::PRIORITY_LOW, 'Directory', $user['url']);
68                 }
69                 DBA::close($users);
70         }
71 }