]> git.mxchange.org Git - friendica.git/blob - include/poller.php
There is now two different checks for the completion of conversations
[friendica.git] / include / poller.php
1 <?php
2 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
3         $directory = dirname($_SERVER["argv"][0]);
4
5         if (substr($directory, 0, 1) != "/")
6                 $directory = $_SERVER["PWD"]."/".$directory;
7
8         $directory = realpath($directory."/..");
9
10         chdir($directory);
11 }
12
13 require_once("boot.php");
14
15
16 function poller_run(&$argv, &$argc){
17         global $a, $db;
18
19         if(is_null($a)) {
20                 $a = new App;
21         }
22
23         if(is_null($db)) {
24             @include(".htconfig.php");
25         require_once("include/dba.php");
26             $db = new dba($db_host, $db_user, $db_pass, $db_data);
27         unset($db_host, $db_user, $db_pass, $db_data);
28         };
29
30
31         require_once('include/session.php');
32         require_once('include/datetime.php');
33         require_once('library/simplepie/simplepie.inc');
34         require_once('include/items.php');
35         require_once('include/Contact.php');
36         require_once('include/email.php');
37         require_once('include/socgraph.php');
38         require_once('include/pidfile.php');
39
40         load_config('config');
41         load_config('system');
42
43         $maxsysload = intval(get_config('system','maxloadavg'));
44         if($maxsysload < 1)
45                 $maxsysload = 50;
46         if(function_exists('sys_getloadavg')) {
47                 $load = sys_getloadavg();
48                 if(intval($load[0]) > $maxsysload) {
49                         logger('system: load ' . $load[0] . ' too high. Poller deferred to next scheduled run.');
50                         return;
51                 }
52         }
53
54         $lockpath = get_lockpath();
55         if ($lockpath != '') {
56                 $pidfile = new pidfile($lockpath, 'poller');
57                 if($pidfile->is_already_running()) {
58                         logger("poller: Already running");
59                         if ($pidfile->running_time() > 9*60) {
60                                 $pidfile->kill();
61                                 logger("poller: killed stale process");
62                                 // Calling a new instance
63                                 proc_run('php','include/poller.php');
64                         }
65                         exit;
66                 }
67         }
68
69
70
71         $a->set_baseurl(get_config('system','url'));
72
73         load_hooks();
74
75         logger('poller: start');
76
77         // run queue delivery process in the background
78
79         proc_run('php',"include/queue.php");
80
81         // run diaspora photo queue process in the background
82
83         proc_run('php',"include/dsprphotoq.php");
84
85         // expire any expired accounts
86
87         q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
88                 AND `account_expires_on` != '0000-00-00 00:00:00'
89                 AND `account_expires_on` < UTC_TIMESTAMP() ");
90
91         // delete user and contact records for recently removed accounts
92
93         $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
94         if ($r) {
95                 foreach($r as $user) {
96                         q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
97                         q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
98                 }
99         }
100
101         $abandon_days = intval(get_config('system','account_abandon_days'));
102         if($abandon_days < 1)
103                 $abandon_days = 0;
104
105         // Check OStatus conversations
106         // Check only conversations with mentions (for a longer time)
107         check_conversations(true);
108
109         // Check every conversation
110         check_conversations(false);
111
112         // To-Do: Regenerate usage statistics
113         // q("ANALYZE TABLE `item`");
114
115         // once daily run birthday_updates and then expire in background
116
117         $d1 = get_config('system','last_expire_day');
118         $d2 = intval(datetime_convert('UTC','UTC','now','d'));
119
120         if($d2 != intval($d1)) {
121
122                 update_contact_birthdays();
123
124                 update_suggestions();
125
126                 set_config('system','last_expire_day',$d2);
127                 proc_run('php','include/expire.php');
128         }
129
130         $last = get_config('system','cache_last_cleared');
131
132         if($last) {
133                 $next = $last + (3600); // Once per hour
134                 $clear_cache = ($next <= time());
135         } else
136                 $clear_cache = true;
137
138         if ($clear_cache) {
139                 // clear old cache
140                 Cache::clear();
141
142                 // clear old item cache files
143                 clear_cache();
144
145                 // clear cache for photos
146                 clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
147
148                 // clear smarty cache
149                 clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
150
151                 // clear cache for image proxy
152                 if (!get_config("system", "proxy_disabled")) {
153                         clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
154
155                         $cachetime = get_config('system','proxy_cache_time');
156                         if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
157
158                         q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
159                 }
160
161                 set_config('system','cache_last_cleared', time());
162         }
163
164         $manual_id  = 0;
165         $generation = 0;
166         $force      = false;
167         $restart    = false;
168
169         if(($argc > 1) && ($argv[1] == 'force'))
170                 $force = true;
171
172         if(($argc > 1) && ($argv[1] == 'restart')) {
173                 $restart = true;
174                 $generation = intval($argv[2]);
175                 if(! $generation)
176                         killme();
177         }
178
179         if(($argc > 1) && intval($argv[1])) {
180                 $manual_id = intval($argv[1]);
181                 $force     = true;
182         }
183
184         $interval = intval(get_config('system','poll_interval'));
185         if(! $interval)
186                 $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
187
188         $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
189
190         reload_plugins();
191
192         $d = datetime_convert();
193
194         if(! $restart)
195                 proc_run('php','include/cronhooks.php');
196
197         // Only poll from those with suitable relationships,
198         // and which have a polling address and ignore Diaspora since
199         // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
200
201         $abandon_sql = (($abandon_days)
202                 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
203                 : ''
204         );
205
206         $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
207                 WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s')
208                 $sql_extra
209                 AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive`
210                 AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
211                 intval(CONTACT_IS_SHARING),
212                 intval(CONTACT_IS_FRIEND),
213                 dbesc(NETWORK_DFRN),
214                 dbesc(NETWORK_ZOT),
215                 dbesc(NETWORK_OSTATUS),
216                 dbesc(NETWORK_FEED),
217                 dbesc(NETWORK_MAIL),
218                 dbesc(NETWORK_MAIL2)
219         );
220
221         if(! count($contacts)) {
222                 return;
223         }
224
225         foreach($contacts as $c) {
226
227                 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
228                         intval($c['id'])
229                 );
230
231                 if((! $res) || (! count($res)))
232                         continue;
233
234                 foreach($res as $contact) {
235
236                         $xml = false;
237
238                         if($manual_id)
239                                 $contact['last-update'] = '0000-00-00 00:00:00';
240
241                         if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS)))
242                                 $contact['priority'] = 2;
243
244                         if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
245                                 // We should be getting everything via a hub. But just to be sure, let's check once a day.
246                                 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
247                                 // This also lets us update our subscription to the hub, and add or replace hubs in case it
248                                 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
249
250                                 $poll_interval = get_config('system','pushpoll_frequency');
251                                 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
252                         }
253
254                         if($contact['priority'] AND !$force) {
255
256                                 $update     = false;
257
258                                 $t = $contact['last-update'];
259
260                                 /**
261                                  * Based on $contact['priority'], should we poll this site now? Or later?
262                                  */
263
264                                 switch ($contact['priority']) {
265                                         case 5:
266                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
267                                                         $update = true;
268                                                 break;
269                                         case 4:
270                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
271                                                         $update = true;
272                                                 break;
273                                         case 3:
274                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
275                                                         $update = true;
276                                                 break;
277                                         case 2:
278                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
279                                                         $update = true;
280                                                 break;
281                                         case 1:
282                                         default:
283                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
284                                                         $update = true;
285                                                 break;
286                                 }
287                                 if(!$update)
288                                         continue;
289                         }
290
291                         logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
292
293                         proc_run('php','include/onepoll.php',$contact['id']);
294
295                         if($interval)
296                                 @time_sleep_until(microtime(true) + (float) $interval);
297                 }
298         }
299
300         logger('poller: end');
301
302         return;
303 }
304
305 if (array_search(__file__,get_included_files())===0){
306   poller_run($_SERVER["argv"],$_SERVER["argc"]);
307   killme();
308 }