]> git.mxchange.org Git - friendica.git/blob - src/Worker/Directory.php
ff844ca39209df506abbeb4042f1402f223d51c4
[friendica.git] / src / Worker / Directory.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Util\Network;
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::log('Updating directory: ' . $arr['url'], Logger::DEBUG);
56                 if (strlen($arr['url'])) {
57                         Network::fetchUrl($dir . '?url=' . bin2hex($arr['url']));
58                 }
59
60                 return;
61         }
62
63         private static function updateAll() {
64                 $r = q("SELECT `url` FROM `contact`
65                         INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid`
66                         INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
67                                 WHERE `contact`.`self` AND `profile`.`net-publish` AND
68                                         NOT `user`.`account_expired` AND `user`.`verified`");
69
70                 if (DBA::isResult($r)) {
71                         foreach ($r AS $user) {
72                                 Worker::add(PRIORITY_LOW, 'Directory', $user['url']);
73                         }
74                 }
75         }
76 }