3 require_once("boot.php");
6 function poller_run($argv, $argc){
14 @include(".htconfig.php");
15 require_once("dba.php");
16 $db = new dba($db_host, $db_user, $db_pass, $db_data);
17 unset($db_host, $db_user, $db_pass, $db_data);
21 require_once('include/session.php');
22 require_once('include/datetime.php');
23 require_once('library/simplepie/simplepie.inc');
24 require_once('include/items.php');
25 require_once('include/Contact.php');
26 require_once('include/email.php');
28 load_config('config');
29 load_config('system');
31 $a->set_baseurl(get_config('system','url'));
35 logger('poller: start');
37 // run queue delivery process in the background
39 proc_run('php',"include/queue.php");
41 // expire any expired accounts
43 q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
44 AND `account_expires_on` != '0000-00-00 00:00:00'
45 AND `account_expires_on` < UTC_TIMESTAMP() ");
47 $abandon_days = intval(get_config('system','account_abandon_days'));
53 // once daily run expire in background
55 $d1 = get_config('system','last_expire_day');
56 $d2 = intval(datetime_convert('UTC','UTC','now','d'));
58 if($d2 != intval($d1)) {
59 set_config('system','last_expire_day',$d2);
60 proc_run('php','include/expire.php');
64 q("DELETE FROM `cache` WHERE `updated` < '%s'",
65 dbesc(datetime_convert('UTC','UTC',"now - 30 days")));
73 if(($argc > 1) && ($argv[1] == 'force'))
76 if(($argc > 1) && ($argv[1] == 'restart')) {
78 $generation = intval($argv[2]);
83 if(($argc > 1) && intval($argv[1])) {
84 $manual_id = intval($argv[1]);
88 $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
92 $d = datetime_convert();
95 proc_run('php','include/cronhooks.php');
97 // Only poll from those with suitable relationships,
98 // and which have a polling address and ignore Diaspora since
99 // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
101 $abandon_sql = (($abandon_days)
102 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
106 $contacts = q("SELECT `contact`.`id` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
107 WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
108 AND `network` != '%s'
110 AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0
111 AND `user`.`account_expired` = 0 $abandon_sql ORDER BY RAND()",
112 intval(CONTACT_IS_SHARING),
113 intval(CONTACT_IS_FRIEND),
114 dbesc(NETWORK_DIASPORA)
117 if(! count($contacts)) {
121 foreach($contacts as $c) {
123 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
127 if((! $res) || (! count($res)))
130 foreach($res as $contact) {
135 $contact['last-update'] = '0000-00-00 00:00:00';
137 if($contact['priority'] || $contact['subhub']) {
142 $t = $contact['last-update'];
144 // We should be getting everything via a hub. But just to be sure, let's check once a day.
145 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
146 // This also lets us update our subscription to the hub, and add or replace hubs in case it
147 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
150 if($contact['subhub']) {
151 $interval = get_config('system','pushpoll_frequency');
152 $contact['priority'] = (($interval !== false) ? intval($interval) : 3);
155 if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) || $force)
162 * Based on $contact['priority'], should we poll this site now? Or later?
165 switch ($contact['priority']) {
167 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
171 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
175 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
179 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
184 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
188 if((! $update) && (! $force))
192 // Check to see if we are running out of memory - if so spawn a new process and kill this one
194 $avail_memory = return_bytes(ini_get('memory_limit'));
195 $memused = memory_get_peak_usage(true);
196 if(intval($avail_memory)) {
197 if(($memused / $avail_memory) > 0.95) {
198 if($generation + 1 > 10) {
199 logger('poller: maximum number of spawns exceeded. Terminating.');
202 logger('poller: memory exceeded. ' . $memused . ' bytes used. Spawning new poll.');
203 proc_run('php', 'include/poller.php', 'restart', (string) $generation + 1);
208 $importer_uid = $contact['uid'];
210 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
211 intval($importer_uid)
218 logger("poller: poll: IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
220 $last_update = (($contact['last-update'] === '0000-00-00 00:00:00')
221 ? datetime_convert('UTC','UTC','now - 30 days', ATOM_TIME)
222 : datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME)
225 if($contact['network'] === NETWORK_DFRN) {
227 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
229 if(intval($contact['duplex']) && $contact['dfrn-id'])
230 $idtosend = '0:' . $orig_id;
231 if(intval($contact['duplex']) && $contact['issued-id'])
232 $idtosend = '1:' . $orig_id;
234 // they have permission to write to us. We already filtered this in the contact query.
237 $url = $contact['poll'] . '?dfrn_id=' . $idtosend
238 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
239 . '&type=data&last_update=' . $last_update
242 $handshake_xml = fetch_url($url);
244 logger('poller: handshake with url ' . $url . ' returns xml: ' . $handshake_xml, LOGGER_DATA);
247 if(! $handshake_xml) {
248 logger("poller: $url appears to be dead - marking for death ");
249 // dead connection - might be a transient event, or this might
250 // mean the software was uninstalled or the domain expired.
251 // Will keep trying for one month.
252 mark_for_death($contact);
254 // set the last-update so we don't keep polling
256 $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
257 dbesc(datetime_convert()),
258 intval($contact['id'])
264 if(! strstr($handshake_xml,'<?xml')) {
265 logger('poller: response from ' . $url . ' did not contain XML.');
266 $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
267 dbesc(datetime_convert()),
268 intval($contact['id'])
274 $res = parse_xml_string($handshake_xml);
276 if(intval($res->status) == 1) {
277 logger("poller: $url replied status 1 - marking for death ");
279 // we may not be friends anymore. Will keep trying for one month.
280 // set the last-update so we don't keep polling
282 $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
283 dbesc(datetime_convert()),
284 intval($contact['id'])
287 mark_for_death($contact);
290 if($contact['term-date'] != '0000-00-00 00:00:00') {
291 logger("poller: $url back from the dead - removing mark for death");
292 unmark_for_death($contact);
296 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
301 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
302 $challenge = hex2bin((string) $res->challenge);
306 if(($contact['duplex']) && strlen($contact['prvkey'])) {
307 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
308 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
311 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
312 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
315 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
317 if(strpos($final_dfrn_id,':') == 1)
318 $final_dfrn_id = substr($final_dfrn_id,2);
320 if($final_dfrn_id != $orig_id) {
321 logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);
322 // did not decode properly - cannot trust this site
326 $postvars['dfrn_id'] = $idtosend;
327 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
328 $postvars['perm'] = 'rw';
330 $xml = post_url($contact['poll'],$postvars);
332 elseif(($contact['network'] === NETWORK_OSTATUS)
333 || ($contact['network'] === NETWORK_DIASPORA)
334 || ($contact['network'] === NETWORK_FEED) ) {
336 // Upgrading DB fields from an older Friendika version
337 // Will only do this once per notify-enabled OStatus contact
338 // or if relationship changes
340 $stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
342 if($stat_writeable != $contact['writable']) {
343 q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d LIMIT 1",
344 intval($stat_writeable),
345 intval($contact['id'])
349 // Are we allowed to import from this person?
351 if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
354 $xml = fetch_url($contact['poll']);
356 elseif($contact['network'] === NETWORK_MAIL) {
358 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
363 $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
364 intval($importer_uid)
366 $mailconf = q("SELECT * FROM `mailacct` WHERE `server` != '' AND `uid` = %d LIMIT 1",
367 intval($importer_uid)
369 if(count($x) && count($mailconf)) {
370 $mailbox = construct_mailbox_name($mailconf[0]);
372 openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']);
373 $mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
376 q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
377 dbesc(datetime_convert()),
378 intval($mailconf[0]['id']),
379 intval($importer_uid)
385 $msgs = email_poll($mbox,$contact['addr']);
388 foreach($msgs as $msg_uid) {
390 $meta = email_msg_meta($mbox,$msg_uid);
391 $headers = email_msg_headers($mbox,$msg_uid);
393 // look for a 'references' header and try and match with a parent item we have locally.
395 $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
396 $datarray['uri'] = trim($meta->message_id,'<>');
399 $refs_arr = explode(' ', $raw_refs);
400 if(count($refs_arr)) {
401 for($x = 0; $x < count($refs_arr); $x ++)
402 $refs_arr[$x] = "'" . str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x])) . "'";
404 $qstr = implode(',',$refs_arr);
405 $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
406 intval($importer_uid)
409 $datarray['parent-uri'] = $r[0]['uri'];
413 if(! x($datarray,'parent-uri'))
414 $datarray['parent-uri'] = $datarray['uri'];
416 // Have we seen it before?
417 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
418 intval($importer_uid),
419 dbesc($datarray['uri'])
423 if($meta->deleted && ! $r[0]['deleted']) {
424 q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d LIMIT 1",
425 dbesc(datetime_convert()),
431 $datarray['title'] = notags(trim($meta->subject));
432 $datarray['created'] = datetime_convert('UTC','UTC',$meta->date);
434 $r = email_get_msg($mbox,$msg_uid);
437 $datarray['body'] = escape_tags($r['body']);
439 // some mailing lists have the original author as 'from' - add this sender info to msg body.
440 // todo: adding a gravatar for the original author would be cool
442 if(! stristr($meta->from,$contact['addr']))
443 $datarray['body'] = t('From: ') . escape_tags($meta->from) . "\n\n" . $datarray['body'];
445 $datarray['uid'] = $importer_uid;
446 $datarray['contact-id'] = $contact['id'];
447 if($datarray['parent-uri'] === $datarray['uri'])
448 $datarray['private'] = 1;
449 if(! get_pconfig($importer_uid,'system','allow_public_email_replies')) {
450 $datarray['private'] = 1;
451 $datarray['allow_cid'] = '<' . $contact['id'] . '>';
453 $datarray['author-name'] = $contact['name'];
454 $datarray['author-link'] = 'mailbox';
455 $datarray['author-avatar'] = $contact['photo'];
457 $stored_item = item_store($datarray);
458 q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d",
459 dbesc($datarray['parent-uri']),
460 intval($importer_uid)
462 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
471 elseif($contact['network'] === NETWORK_FACEBOOK) {
472 // This is picked up by the Facebook plugin on a cron hook.
477 logger('poller: received xml : ' . $xml, LOGGER_DATA);
479 if(! strstr($xml,'<?xml')) {
480 logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
481 $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
482 dbesc(datetime_convert()),
483 intval($contact['id'])
489 consume_feed($xml,$importer,$contact,$hub,1, true);
491 // do it twice. Ensures that children of parents which may be later in the stream aren't tossed
493 consume_feed($xml,$importer,$contact,$hub,1);
495 $hubmode = 'subscribe';
496 if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
497 $hubmode = 'unsubscribe';
499 if((strlen($hub)) && ($hub_update) && ($contact['rel'] != CONTACT_IS_FOLLOWER)) {
500 logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
501 $hubs = explode(',', $hub);
503 foreach($hubs as $h) {
507 subscribe_to_hub($h,$importer,$contact,$hubmode);
514 $updated = datetime_convert();
516 $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d LIMIT 1",
519 intval($contact['id'])
522 // loop - next contact
530 if (array_search(__file__,get_included_files())===0){
531 poller_run($argv,$argc);