]> git.mxchange.org Git - friendica.git/blob - src/Worker/SearchDirectory.php
1dcf0c8db6bb4990cdc08cc35235aaeb50686af9
[friendica.git] / src / Worker / SearchDirectory.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\Cache\Duration;
25 use Friendica\Core\Logger;
26 use Friendica\Core\Protocol;
27 use Friendica\Core\Search;
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Model\Contact;
31 use Friendica\Model\GContact;
32 use Friendica\Model\GServer;
33 use Friendica\Network\HTTPRequest;
34 use Friendica\Util\Strings;
35
36 class SearchDirectory
37 {
38         // <search pattern>: Searches for "search pattern" in the directory.
39         public static function execute($search)
40         {
41                 if (!DI::config()->get('system', 'poco_local_search')) {
42                         Logger::info('Local search is not enabled');
43                         return;
44                 }
45
46                 $data = DI::cache()->get('SearchDirectory:' . $search);
47                 if (!is_null($data)) {
48                         // Only search for the same item every 24 hours
49                         if (time() < $data + (60 * 60 * 24)) {
50                                 Logger::info('Already searched this in the last 24 hours', ['search' => $search]);
51                                 return;
52                         }
53                 }
54
55                 $x = HTTPRequest::fetchUrl(Search::getGlobalDirectory() . '/lsearch?p=1&n=500&search=' . urlencode($search));
56                 $j = json_decode($x);
57
58                 if (!empty($j->results)) {
59                         foreach ($j->results as $jj) {
60                                 // Check if the contact already exists
61                                 $gcontact = DBA::selectFirst('gcontact', ['failed'], ['nurl' => Strings::normaliseLink($jj->url)]);
62                                 if (DBA::isResult($gcontact)) {
63                                         Logger::info('Profile already exists', ['profile' => $jj->url, 'search' => $search]);
64
65                                         if ($gcontact['failed']) {
66                                                 continue;
67                                         }
68
69                                         // Update the contact
70                                         GContact::updateFromProbe($jj->url);
71                                         continue;
72                                 }
73
74                                 $server_url = GContact::getBasepath($jj->url, true);
75                                 if ($server_url != '') {
76                                         if (!GServer::check($server_url)) {
77                                                 Logger::info("Friendica server doesn't answer.", ['server' => $server_url]);
78                                                 continue;
79                                         }
80                                         Logger::info('Friendica server seems to be okay.', ['server' => $server_url]);
81                                 }
82
83                                 $data = Contact::getByURL($jj->url);
84                                 if ($data['network'] == Protocol::DFRN) {
85                                         Logger::info('Add profile to local directory', ['profile' => $jj->url]);
86
87                                         if ($jj->tags != '') {
88                                                 $data['keywords'] = $jj->tags;
89                                         }
90
91                                         $data['server_url'] = $data['baseurl'];
92
93                                         GContact::update($data);
94                                 } else {
95                                         Logger::info('Profile is not responding or no Friendica contact', ['profile' => $jj->url, 'network' => $data['network']]);
96                                 }
97                         }
98                 }
99                 DI::cache()->set('SearchDirectory:' . $search, time(), Duration::DAY);
100         }
101 }