]> git.mxchange.org Git - friendica.git/blob - include/cron.php
The index mustn't be 192 characters long
[friendica.git] / include / cron.php
1 <?php
2
3 use Friendica\Core\Config;
4
5 function cron_run(&$argv, &$argc){
6         global $a;
7
8         require_once 'include/datetime.php';
9
10         // Poll contacts with specific parameters
11         if ($argc > 1) {
12                 cron_poll_contacts($argc, $argv);
13                 return;
14         }
15
16         $last = get_config('system', 'last_cron');
17
18         $poll_interval = intval(get_config('system', 'cron_interval'));
19         if (! $poll_interval) {
20                 $poll_interval = 10;
21         }
22
23         if ($last) {
24                 $next = $last + ($poll_interval * 60);
25                 if ($next > time()) {
26                         logger('cron intervall not reached');
27                         return;
28                 }
29         }
30
31         logger('cron: start');
32
33         // run queue delivery process in the background
34         proc_run(PRIORITY_NEGLIGIBLE, "include/queue.php");
35
36         // run the process to discover global contacts in the background
37         proc_run(PRIORITY_LOW, "include/discover_poco.php");
38
39         // run the process to update locally stored global contacts in the background
40         proc_run(PRIORITY_LOW, "include/discover_poco.php", "checkcontact");
41
42         // Expire and remove user entries
43         proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "expire_and_remove_users");
44
45         // Check OStatus conversations
46         proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_mentions");
47
48         // Check every conversation
49         proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_conversations");
50
51         // Call possible post update functions
52         proc_run(PRIORITY_LOW, "include/cronjobs.php", "post_update");
53
54         // update nodeinfo data
55         proc_run(PRIORITY_LOW, "include/cronjobs.php", "nodeinfo");
56
57         // Clear cache entries
58         proc_run(PRIORITY_LOW, "include/cronjobs.php", "clear_cache");
59
60         // Repair missing Diaspora values in contacts
61         proc_run(PRIORITY_LOW, "include/cronjobs.php", "repair_diaspora");
62
63         // Repair entries in the database
64         proc_run(PRIORITY_LOW, "include/cronjobs.php", "repair_database");
65
66         // once daily run birthday_updates and then expire in background
67         $d1 = get_config('system', 'last_expire_day');
68         $d2 = intval(datetime_convert('UTC', 'UTC', 'now', 'd'));
69
70         if ($d2 != intval($d1)) {
71
72                 proc_run(PRIORITY_LOW, "include/cronjobs.php", "update_contact_birthdays");
73
74                 proc_run(PRIORITY_LOW, "include/discover_poco.php", "update_server");
75
76                 proc_run(PRIORITY_LOW, "include/discover_poco.php", "suggestions");
77
78                 set_config('system', 'last_expire_day', $d2);
79
80                 proc_run(PRIORITY_LOW, 'include/expire.php');
81
82                 proc_run(PRIORITY_MEDIUM, 'include/dbclean.php');
83
84                 proc_run(PRIORITY_LOW, "include/cronjobs.php", "update_photo_albums");
85         }
86
87         // Poll contacts
88         cron_poll_contacts($argc, $argv);
89
90         logger('cron: end');
91
92         set_config('system', 'last_cron', time());
93
94         return;
95 }
96
97 /**
98  * @brief Poll contacts for unreceived messages
99  *
100  * @param Integer $argc Number of command line arguments
101  * @param Array $argv Array of command line arguments
102  */
103 function cron_poll_contacts($argc, $argv) {
104         $manual_id  = 0;
105         $generation = 0;
106         $force      = false;
107         $restart    = false;
108
109         if (($argc > 1) && ($argv[1] == 'force')) {
110                 $force = true;
111         }
112         if (($argc > 1) && ($argv[1] == 'restart')) {
113                 $restart = true;
114                 $generation = intval($argv[2]);
115                 if (!$generation) {
116                         killme();
117                 }
118         }
119
120         if (($argc > 1) && intval($argv[1])) {
121                 $manual_id = intval($argv[1]);
122                 $force     = true;
123         }
124
125         $min_poll_interval = Config::get('system', 'min_poll_interval', 1);
126
127         $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
128
129         reload_plugins();
130
131         $d = datetime_convert();
132
133         // Only poll from those with suitable relationships,
134         // and which have a polling address and ignore Diaspora since
135         // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
136
137         $abandon_days = intval(get_config('system', 'account_abandon_days'));
138         if ($abandon_days < 1) {
139                 $abandon_days = 0;
140         }
141         $abandon_sql = (($abandon_days)
142                 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
143                 : ''
144         );
145
146         $contacts = q("SELECT `contact`.`id` FROM `user`
147                         STRAIGHT_JOIN `contact`
148                         ON `contact`.`uid` = `user`.`uid` AND `contact`.`rel` IN (%d, %d) AND `contact`.`poll` != ''
149                                 AND `contact`.`network` IN ('%s', '%s', '%s', '%s', '%s', '%s') $sql_extra
150                                 AND NOT `contact`.`self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly`
151                                 AND NOT `contact`.`archive`
152                         WHERE NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
153                 intval(CONTACT_IS_SHARING),
154                 intval(CONTACT_IS_FRIEND),
155                 dbesc(NETWORK_DFRN),
156                 dbesc(NETWORK_ZOT),
157                 dbesc(NETWORK_OSTATUS),
158                 dbesc(NETWORK_FEED),
159                 dbesc(NETWORK_MAIL),
160                 dbesc(NETWORK_MAIL2)
161         );
162
163         if (!dbm::is_result($contacts)) {
164                 return;
165         }
166
167         foreach ($contacts as $c) {
168
169                 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
170                         intval($c['id'])
171                 );
172
173                 if (!dbm::is_result($res)) {
174                         continue;
175                 }
176
177                 foreach ($res as $contact) {
178
179                         $xml = false;
180
181                         if ($manual_id) {
182                                 $contact['last-update'] = NULL_DATE;
183                         }
184
185                         if (in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
186                                 $contact['priority'] = 2;
187                         }
188
189                         if ($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
190                                 /*
191                                  * We should be getting everything via a hub. But just to be sure, let's check once a day.
192                                  * (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
193                                  * This also lets us update our subscription to the hub, and add or replace hubs in case it
194                                  * changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
195                                  */
196                                 $poll_interval = get_config('system', 'pushpoll_frequency');
197                                 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
198                         }
199
200                         if (($contact['priority'] >= 0) AND !$force) {
201                                 $update = false;
202
203                                 $t = $contact['last-update'];
204
205                                 /*
206                                  * Based on $contact['priority'], should we poll this site now? Or later?
207                                  */
208                                 switch ($contact['priority']) {
209                                         case 5:
210                                                 if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 month")) {
211                                                         $update = true;
212                                                 }
213                                                 break;
214                                         case 4:
215                                                 if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 week")) {
216                                                         $update = true;
217                                                 }
218                                                 break;
219                                         case 3:
220                                                 if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 day")) {
221                                                         $update = true;
222                                                 }
223                                                 break;
224                                         case 2:
225                                                 if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 12 hour")) {
226                                                         $update = true;
227                                                 }
228                                                 break;
229                                         case 1:
230                                                 if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + 1 hour")) {
231                                                         $update = true;
232                                                 }
233                                                 break;
234                                         case 0:
235                                         default:
236                                                 if (datetime_convert('UTC', 'UTC', 'now') > datetime_convert('UTC', 'UTC', $t . " + ".$min_poll_interval." minute")) {
237                                                         $update = true;
238                                                 }
239                                                 break;
240                                 }
241                                 if (!$update) {
242                                         continue;
243                                 }
244                         }
245
246                         logger("Polling " . $contact["network"] . " " . $contact["id"] . " " . $contact["nick"] . " " . $contact["name"]);
247
248                         if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) {
249                                 $priority = PRIORITY_MEDIUM;
250                         } else {
251                                 $priority = PRIORITY_LOW;
252                         }
253                         proc_run(array('priority' => $priority, 'dont_fork' => true), 'include/onepoll.php', intval($contact['id']));
254                 }
255         }
256 }