]> git.mxchange.org Git - friendica.git/blob - src/Worker/PollContacts.php
Merge pull request #9613 from annando/issue-8605
[friendica.git] / src / Worker / PollContacts.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\Logger;
25 use Friendica\Core\Protocol;
26 use Friendica\Core\Worker;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Protocol\Feed;
30 use Friendica\Util\DateTimeFormat;
31
32 /**
33  * Poll contacts for unreceived messages
34  */
35 class PollContacts
36 {
37         public static function execute()
38         {
39                 $abandon_days = intval(DI::config()->get('system', 'account_abandon_days'));
40                 if ($abandon_days < 1) {
41                         $abandon_days = 0;
42                 }
43
44                 $condition = ['network' => [Protocol::DFRN, Protocol::ACTIVITYPUB, Protocol::OSTATUS, Protocol::FEED, 
45                         Protocol::MAIL, Protocol::ZOT, Protocol::PHANTOM], 'self' => false, 'blocked' => false];
46
47                 if (!empty($abandon_days)) {
48                         $condition = DBA::mergeConditions($condition,
49                                 ["`uid` != ? AND `uid` IN (SELECT `uid` FROM `user` WHERE NOT `account_expired` AND NOT `account_removed`  AND `login_date` > UTC_TIMESTAMP() - INTERVAL ? DAY)", 0, $abandon_days]);
50                 } else  {
51                         $condition = DBA::mergeConditions($condition,
52                                 ["`uid` != ? AND `uid` IN (SELECT `uid` FROM `user` WHERE NOT `account_expired` AND NOT `account_removed`)", 0]);
53                 }
54
55                 $contacts = DBA::select('contact', ['id', 'nick', 'name', 'network', 'archive', 'last-update', 'priority', 'rating'], $condition);
56                 if (!DBA::isResult($contacts)) {
57                         return;
58                 }
59
60                 while ($contact = DBA::fetch($contacts)) {
61                         $interval = Feed::getPollInterval($contact);
62                         if ($interval == 0) {
63                                 continue;
64                         }
65
66                         $now = DateTimeFormat::utcNow();
67                         $next_update = DateTimeFormat::utc($contact['last-update'] . ' + ' . $interval . ' minute');
68
69                         if ($now < $next_update)  {
70                                 Logger::debug('No update', ['cid' => $contact['id'], 'interval' => $interval, 'next' => $next_update, 'now' => $now]);
71                                 continue;
72                         }
73
74                         if ((($contact['network'] == Protocol::FEED) && ($contact['priority'] <= 3)) || ($contact['network'] == Protocol::MAIL)) {
75                                 $priority = PRIORITY_MEDIUM;
76                         } elseif ($contact['archive']) {
77                                 $priority = PRIORITY_NEGLIGIBLE;
78                         } else {
79                                 $priority = PRIORITY_LOW;
80                         }
81
82                         Logger::notice("Polling " . $contact["network"] . " " . $contact["id"] . " " . $contact['priority'] . " " . $contact["nick"] . " " . $contact["name"]);
83
84                         Worker::add(['priority' => $priority, 'dont_fork' => true, 'force_priority' => true], 'OnePoll', (int)$contact['id']);
85                 }
86                 DBA::close($contacts);
87         }
88 }