]> git.mxchange.org Git - friendica.git/blob - include/poller.php
Do the directory change only when it is needed.
[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 . ' 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_conversations();
107
108         // To-Do: Regenerate usage statistics
109         // q("ANALYZE TABLE `item`");
110
111         // once daily run birthday_updates and then expire in background
112
113         $d1 = get_config('system','last_expire_day');
114         $d2 = intval(datetime_convert('UTC','UTC','now','d'));
115
116         if($d2 != intval($d1)) {
117
118                 update_contact_birthdays();
119
120                 update_suggestions();
121
122                 set_config('system','last_expire_day',$d2);
123                 proc_run('php','include/expire.php');
124         }
125
126         $last = get_config('system','cache_last_cleared');
127
128         if($last) {
129                 $next = $last + (3600); // Once per hour
130                 $clear_cache = ($next <= time());
131         } else
132                 $clear_cache = true;
133
134         if ($clear_cache) {
135                 // clear old cache
136                 Cache::clear();
137
138                 // clear old item cache files
139                 clear_cache();
140
141                 // clear cache for photos
142                 clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
143
144                 // clear smarty cache
145                 clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
146
147                 // clear cache for image proxy
148                 if (!get_config("system", "proxy_disabled")) {
149                         clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
150
151                         $cachetime = get_config('system','proxy_cache_time');
152                         if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
153
154                         q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
155                 }
156
157                 set_config('system','cache_last_cleared', time());
158         }
159
160         $manual_id  = 0;
161         $generation = 0;
162         $hub_update = false;
163         $force      = false;
164         $restart    = false;
165
166         if(($argc > 1) && ($argv[1] == 'force'))
167                 $force = true;
168
169         if(($argc > 1) && ($argv[1] == 'restart')) {
170                 $restart = true;
171                 $generation = intval($argv[2]);
172                 if(! $generation)
173                         killme();
174         }
175
176         if(($argc > 1) && intval($argv[1])) {
177                 $manual_id = intval($argv[1]);
178                 $force     = true;
179         }
180
181         $interval = intval(get_config('system','poll_interval'));
182         if(! $interval) 
183                 $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
184
185         $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
186
187         reload_plugins();
188
189         $d = datetime_convert();
190
191         if(! $restart)
192                 proc_run('php','include/cronhooks.php');
193
194         // Only poll from those with suitable relationships,
195         // and which have a polling address and ignore Diaspora since 
196         // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
197
198         $abandon_sql = (($abandon_days) 
199                 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days)) 
200                 : '' 
201         );
202
203         $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` 
204                 WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
205                 AND NOT `network` IN ( '%s', '%s', '%s' )
206                 $sql_extra 
207                 AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0 
208                 AND `contact`.`archive` = 0 
209                 AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 $abandon_sql ORDER BY RAND()",
210                 intval(CONTACT_IS_SHARING),
211                 intval(CONTACT_IS_FRIEND),
212                 dbesc(NETWORK_DIASPORA),
213                 dbesc(NETWORK_FACEBOOK),
214                 dbesc(NETWORK_PUMPIO)
215         );
216
217         if(! count($contacts)) {
218                 return;
219         }
220
221         foreach($contacts as $c) {
222
223                 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
224                         intval($c['id'])
225                 );
226
227                 if((! $res) || (! count($res)))
228                         continue;
229
230                 foreach($res as $contact) {
231
232                         $xml = false;
233
234                         if($manual_id)
235                                 $contact['last-update'] = '0000-00-00 00:00:00';
236
237                         if($contact['network'] === NETWORK_DFRN)
238                                 $contact['priority'] = 2;
239
240                         if(!get_config('system','ostatus_use_priority') and ($contact['network'] === NETWORK_OSTATUS))
241                                 $contact['priority'] = 2;
242
243                         if($contact['priority'] || $contact['subhub']) {
244
245                                 $hub_update = true;
246                                 $update     = false;
247
248                                 $t = $contact['last-update'];
249
250                                 // We should be getting everything via a hub. But just to be sure, let's check once a day.
251                                 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
252                                 // This also lets us update our subscription to the hub, and add or replace hubs in case it
253                                 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
254
255
256                                 if($contact['subhub']) {
257                                         $poll_interval = get_config('system','pushpoll_frequency');
258                                         $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
259                                         $hub_update = false;
260
261                                         if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) || $force)
262                                                         $hub_update = true;
263                                 }
264                                 else
265                                         $hub_update = false;
266
267                                 /**
268                                  * Based on $contact['priority'], should we poll this site now? Or later?
269                                  */
270
271                                 switch ($contact['priority']) {
272                                         case 5:
273                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
274                                                         $update = true;
275                                                 break;
276                                         case 4:
277                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
278                                                         $update = true;
279                                                 break;
280                                         case 3:
281                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
282                                                         $update = true;
283                                                 break;
284                                         case 2:
285                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
286                                                         $update = true;
287                                                 break;
288                                         case 1:
289                                         default:
290                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
291                                                         $update = true;
292                                                 break;
293                                 }
294                                 if((! $update) && (! $force))
295                                         continue;
296                         }
297
298                         // Don't run onepoll.php if the contact isn't pollable
299                         // This check also is inside the onepoll.php - but this will reduce the load
300                         if (in_array($contact["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND)) AND ($contact["poll"] != "")
301                                 AND !in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_FACEBOOK, NETWORK_PUMPIO, NETWORK_TWITTER, NETWORK_APPNET))
302                                 AND !$contact["self"] AND !$contact["blocked"] AND !$contact["readonly"] AND !$contact["archive"])
303                                 proc_run('php','include/onepoll.php',$contact['id']);
304
305                         if($interval)
306                                 @time_sleep_until(microtime(true) + (float) $interval);
307                 }
308         }
309
310         return;
311 }
312
313 if (array_search(__file__,get_included_files())===0){
314   poller_run($_SERVER["argv"],$_SERVER["argc"]);
315   killme();
316 }