Nodeinfo: The number of comments is now calculated more reliable
[friendica.git/.git] / src / Worker / Cron.php
1 <?php
2 /**
3  * @file src/Worker/Cron.php
4  */
5 namespace Friendica\Worker;
6
7 use Friendica\Core\Addon;
8 use Friendica\Core\Config;
9 use Friendica\Core\Worker;
10 use Friendica\Database\DBM;
11 use Friendica\Util\DateTimeFormat;
12 use dba;
13
14 require_once 'include/dba.php';
15
16 Class Cron {
17         public static function execute($parameter = '', $generation = 0) {
18                 global $a;
19
20                 // Poll contacts with specific parameters
21                 if (!empty($parameter)) {
22                         self::pollContacts($parameter, $generation);
23                         return;
24                 }
25
26                 $last = Config::get('system', 'last_cron');
27
28                 $poll_interval = intval(Config::get('system', 'cron_interval'));
29                 if (! $poll_interval) {
30                         $poll_interval = 10;
31                 }
32
33                 if ($last) {
34                         $next = $last + ($poll_interval * 60);
35                         if ($next > time()) {
36                                 logger('cron intervall not reached');
37                                 return;
38                         }
39                 }
40
41                 logger('cron: start');
42
43                 // Fork the cron jobs in separate parts to avoid problems when one of them is crashing
44                 Addon::forkHooks($a->queue['priority'], "cron");
45
46                 // run queue delivery process in the background
47                 Worker::add(PRIORITY_NEGLIGIBLE, "Queue");
48
49                 // run the process to discover global contacts in the background
50                 Worker::add(PRIORITY_LOW, "DiscoverPoCo");
51
52                 // run the process to update locally stored global contacts in the background
53                 Worker::add(PRIORITY_LOW, "DiscoverPoCo", "checkcontact");
54
55                 // Expire and remove user entries
56                 Worker::add(PRIORITY_MEDIUM, "CronJobs", "expire_and_remove_users");
57
58                 // Call possible post update functions
59                 Worker::add(PRIORITY_LOW, "CronJobs", "post_update");
60
61                 // Clear cache entries
62                 Worker::add(PRIORITY_LOW, "CronJobs", "clear_cache");
63
64                 // Repair missing Diaspora values in contacts
65                 Worker::add(PRIORITY_LOW, "CronJobs", "repair_diaspora");
66
67                 // Repair entries in the database
68                 Worker::add(PRIORITY_LOW, "CronJobs", "repair_database");
69
70                 // once daily run birthday_updates and then expire in background
71                 $d1 = Config::get('system', 'last_expire_day');
72                 $d2 = intval(DateTimeFormat::utcNow('d'));
73
74                 // Daily cron calls
75                 if ($d2 != intval($d1)) {
76
77                         Worker::add(PRIORITY_LOW, "CronJobs", "update_contact_birthdays");
78
79                         Worker::add(PRIORITY_LOW, "CronJobs", "update_photo_albums");
80
81                         // update nodeinfo data
82                         Worker::add(PRIORITY_LOW, "CronJobs", "nodeinfo");
83
84                         Worker::add(PRIORITY_LOW, "DiscoverPoCo", "update_server");
85
86                         Worker::add(PRIORITY_LOW, "DiscoverPoCo", "suggestions");
87
88                         Worker::add(PRIORITY_LOW, 'Expire');
89
90                         Worker::add(PRIORITY_MEDIUM, 'DBClean');
91
92                         // check upstream version?
93                         Worker::add(PRIORITY_LOW, 'CheckVersion');
94
95                         Config::set('system', 'last_expire_day', $d2);
96                 }
97
98                 // Hourly cron calls
99                 if (Config::get('system', 'last_cron_hourly', 0) + 3600 < time()) {
100
101                         // Delete all done workerqueue entries
102                         dba::delete('workerqueue', ['`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 1 HOUR']);
103
104                         // Optimizing this table only last seconds
105                         dba::e("OPTIMIZE TABLE `workerqueue`");
106
107                         Config::set('system', 'last_cron_hourly', time());
108                 }
109
110                 // Poll contacts
111                 self::pollContacts($parameter, $generation);
112
113                 logger('cron: end');
114
115                 Config::set('system', 'last_cron', time());
116
117                 return;
118         }
119
120         /**
121          * @brief Poll contacts for unreceived messages
122          *
123          * @todo Currently it seems as if the following parameter aren't used at all ...
124          *
125          * @param string $parameter Parameter (force, restart, ...) for the contact polling
126          * @param integer $generation
127          */
128         private static function pollContacts($parameter, $generation) {
129                 $manual_id  = 0;
130                 $generation = 0;
131                 $force      = false;
132                 $restart    = false;
133
134                 if ($parameter == 'force') {
135                         $force = true;
136                 }
137                 if ($parameter == 'restart') {
138                         $restart = true;
139                         $generation = intval($generation);
140                         if (!$generation) {
141                                 killme();
142                         }
143                 }
144
145                 if (intval($parameter)) {
146                         $manual_id = intval($parameter);
147                         $force     = true;
148                 }
149
150                 $min_poll_interval = Config::get('system', 'min_poll_interval', 1);
151
152                 $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
153
154                 Addon::reload();
155
156                 $d = DateTimeFormat::utcNow();
157
158                 // Only poll from those with suitable relationships,
159                 // and which have a polling address and ignore Diaspora since
160                 // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
161
162                 $abandon_days = intval(Config::get('system', 'account_abandon_days'));
163                 if ($abandon_days < 1) {
164                         $abandon_days = 0;
165                 }
166                 $abandon_sql = (($abandon_days)
167                         ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
168                         : ''
169                 );
170
171                 $contacts = q("SELECT `contact`.`id`, `contact`.`nick`, `contact`.`name`, `contact`.`network`, `contact`.`archive`,
172                                         `contact`.`last-update`, `contact`.`priority`, `contact`.`rel`, `contact`.`subhub`
173                                 FROM `user`
174                                 STRAIGHT_JOIN `contact`
175                                 ON `contact`.`uid` = `user`.`uid` AND `contact`.`poll` != ''
176                                         AND `contact`.`network` IN ('%s', '%s', '%s', '%s', '%s') $sql_extra
177                                         AND NOT `contact`.`self` AND NOT `contact`.`blocked`
178                                 WHERE NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql",
179                         dbesc(NETWORK_DFRN),
180                         dbesc(NETWORK_OSTATUS),
181                         dbesc(NETWORK_DIASPORA),
182                         dbesc(NETWORK_FEED),
183                         dbesc(NETWORK_MAIL)
184                 );
185
186                 if (!DBM::is_result($contacts)) {
187                         return;
188                 }
189
190                 foreach ($contacts as $contact) {
191
192                         if ($manual_id) {
193                                 $contact['last-update'] = NULL_DATE;
194                         }
195
196                         // Friendica and OStatus are checked once a day
197                         if (in_array($contact['network'], [NETWORK_DFRN, NETWORK_OSTATUS])) {
198                                 $contact['priority'] = 2;
199                         }
200
201                         if ($contact['subhub'] && in_array($contact['network'], [NETWORK_DFRN, NETWORK_OSTATUS])) {
202                                 /*
203                                  * We should be getting everything via a hub. But just to be sure, let's check once a day.
204                                  * (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
205                                  * This also lets us update our subscription to the hub, and add or replace hubs in case it
206                                  * changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
207                                  */
208                                 $poll_interval = Config::get('system', 'pushpoll_frequency');
209                                 $contact['priority'] = (!is_null($poll_interval) ? intval($poll_interval) : 3);
210                         }
211
212                         // Check Diaspora contacts or followers once a week
213                         if (($contact["network"] == NETWORK_DIASPORA) || ($contact["rel"] == CONTACT_IS_FOLLOWER)) {
214                                 $contact['priority'] = 4;
215                         }
216
217                         // Check archived contacts once a month
218                         if ($contact['archive']) {
219                                 $contact['priority'] = 5;
220                         }
221
222                         if (($contact['priority'] >= 0) && !$force) {
223                                 $update = false;
224
225                                 $t = $contact['last-update'];
226
227                                 /*
228                                  * Based on $contact['priority'], should we poll this site now? Or later?
229                                  */
230                                 switch ($contact['priority']) {
231                                         case 5:
232                                                 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . " + 1 month")) {
233                                                         $update = true;
234                                                 }
235                                                 break;
236                                         case 4:
237                                                 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . " + 1 week")) {
238                                                         $update = true;
239                                                 }
240                                                 break;
241                                         case 3:
242                                                 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . " + 1 day")) {
243                                                         $update = true;
244                                                 }
245                                                 break;
246                                         case 2:
247                                                 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . " + 12 hour")) {
248                                                         $update = true;
249                                                 }
250                                                 break;
251                                         case 1:
252                                                 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . " + 1 hour")) {
253                                                         $update = true;
254                                                 }
255                                                 break;
256                                         case 0:
257                                         default:
258                                                 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($t . " + ".$min_poll_interval." minute")) {
259                                                         $update = true;
260                                                 }
261                                                 break;
262                                 }
263                                 if (!$update) {
264                                         continue;
265                                 }
266                         }
267
268                         if (($contact['network'] == NETWORK_FEED) && ($contact['priority'] <= 3)) {
269                                 $priority = PRIORITY_MEDIUM;
270                         } elseif ($contact['archive']) {
271                                 $priority = PRIORITY_NEGLIGIBLE;
272                         } else {
273                                 $priority = PRIORITY_LOW;
274                         }
275
276                         logger("Polling " . $contact["network"] . " " . $contact["id"] . " " . $contact['priority'] . " " . $contact["nick"] . " " . $contact["name"]);
277
278                         Worker::add(['priority' => $priority, 'dont_fork' => true], 'OnePoll', (int)$contact['id']);
279                 }
280         }
281 }