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