3 require_once("boot.php");
4 require_once("include/follow.php");
6 function RemoveReply($subject) {
7 while (in_array(strtolower(substr($subject, 0, 3)), array("re:", "aw:")))
8 $subject = trim(substr($subject, 4));
13 function onepoll_run(&$argv, &$argc){
21 @include(".htconfig.php");
22 require_once("include/dba.php");
23 $db = new dba($db_host, $db_user, $db_pass, $db_data);
24 unset($db_host, $db_user, $db_pass, $db_data);
28 require_once('include/session.php');
29 require_once('include/datetime.php');
30 require_once('include/items.php');
31 require_once('include/Contact.php');
32 require_once('include/email.php');
33 require_once('include/socgraph.php');
34 require_once('include/queue_fn.php');
36 load_config('config');
37 load_config('system');
39 $a->set_baseurl(get_config('system','url'));
43 logger('onepoll: start');
51 if(($argc > 1) && (intval($argv[1])))
52 $contact_id = intval($argv[1]);
54 if(($argc > 2) && ($argv[2] == "force"))
58 logger('onepoll: no contact');
62 // Don't check this stuff if the function is called by the poller
63 if (App::callstack() != "poller_run")
64 if (App::is_already_running('onepoll'.$contact_id, '', 540))
67 $d = datetime_convert();
69 // Only poll from those with suitable relationships,
70 // and which have a polling address and ignore Diaspora since
71 // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
73 $contacts = q("SELECT `contact`.* FROM `contact`
74 WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
75 AND NOT `network` IN ( '%s', '%s' )
76 AND `contact`.`id` = %d
77 AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0
78 AND `contact`.`archive` = 0 LIMIT 1",
79 intval(CONTACT_IS_SHARING),
80 intval(CONTACT_IS_FRIEND),
81 dbesc(NETWORK_FACEBOOK),
82 dbesc(NETWORK_PUMPIO),
86 if(! count($contacts))
89 $contact = $contacts[0];
91 // load current friends if possible.
92 if (($contact['poco'] != "") AND ($contact['success_update'] > $contact['failure_update'])) {
93 $r = q("SELECT count(*) as total from glink
94 where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
95 intval($contact['id'])
99 poco_load($contact['id'],$importer_uid,0,$contact['poco']);
102 /// @TODO Check why we don't poll the Diaspora feed at the moment (some guid problem in the items?)
103 /// @TODO Check whether this is possible with Redmatrix
104 if ($contact["network"] == NETWORK_DIASPORA) {
105 if (poco_do_update($contact["created"], $contact["last-item"], $contact["failure_update"], $contact["success_update"])) {
106 $last_updated = poco_last_updated($contact["url"]);
107 $updated = datetime_convert();
109 q("UPDATE `contact` SET `last-item` = '%s', `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d",
110 dbesc($last_updated),
113 intval($contact['id'])
116 q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d",
119 intval($contact['id'])
128 $t = $contact['last-update'];
130 if($contact['subhub']) {
131 $poll_interval = get_config('system','pushpoll_frequency');
132 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
135 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
142 $importer_uid = $contact['uid'];
144 $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` INNER JOIN `user` on `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
145 intval($importer_uid)
152 logger("onepoll: poll: ({$contact['id']}) IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
154 $last_update = (($contact['last-update'] === '0000-00-00 00:00:00')
155 ? datetime_convert('UTC','UTC','now - 7 days', ATOM_TIME)
156 : datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME)
159 // Update the contact entry
160 if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) {
161 if (!poco_reachable($contact['url'])) {
162 logger("Skipping probably dead contact ".$contact['url']);
166 if (!update_contact($contact["id"])) {
167 mark_for_death($contact);
170 unmark_for_death($contact);
173 if($contact['network'] === NETWORK_DFRN) {
176 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
177 if(intval($contact['duplex']) && $contact['dfrn-id'])
178 $idtosend = '0:' . $orig_id;
179 if(intval($contact['duplex']) && $contact['issued-id'])
180 $idtosend = '1:' . $orig_id;
182 // they have permission to write to us. We already filtered this in the contact query.
185 // But this may be our first communication, so set the writable flag if it isn't set already.
187 if(! intval($contact['writable']))
188 q("update contact set writable = 1 where id = %d", intval($contact['id']));
191 $url = $contact['poll'] . '?dfrn_id=' . $idtosend
192 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
193 . '&type=data&last_update=' . $last_update
196 $handshake_xml = fetch_url($url);
197 $html_code = $a->get_curl_code();
199 logger('onepoll: handshake with url ' . $url . ' returns xml: ' . $handshake_xml, LOGGER_DATA);
202 if((! strlen($handshake_xml)) || ($html_code >= 400) || (! $html_code)) {
203 logger("poller: $url appears to be dead - marking for death ");
205 // dead connection - might be a transient event, or this might
206 // mean the software was uninstalled or the domain expired.
207 // Will keep trying for one month.
209 mark_for_death($contact);
211 // set the last-update so we don't keep polling
212 $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d",
213 dbesc(datetime_convert()),
214 dbesc(datetime_convert()),
215 intval($contact['id'])
221 if(! strstr($handshake_xml,'<')) {
222 logger('poller: response from ' . $url . ' did not contain XML.');
224 mark_for_death($contact);
226 $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d",
227 dbesc(datetime_convert()),
228 dbesc(datetime_convert()),
229 intval($contact['id'])
235 $res = parse_xml_string($handshake_xml);
237 if(intval($res->status) == 1) {
238 logger("poller: $url replied status 1 - marking for death ");
240 // we may not be friends anymore. Will keep trying for one month.
241 // set the last-update so we don't keep polling
244 $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d",
245 dbesc(datetime_convert()),
246 dbesc(datetime_convert()),
247 intval($contact['id'])
249 mark_for_death($contact);
252 if($contact['term-date'] != '0000-00-00 00:00:00') {
253 logger("poller: $url back from the dead - removing mark for death");
254 unmark_for_death($contact);
258 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
261 if(((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
262 q("update contact set poco = '%s' where id = %d",
263 dbesc(str_replace('/profile/','/poco/', $contact['url'])),
264 intval($contact['id'])
270 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
271 $challenge = hex2bin((string) $res->challenge);
275 if(($contact['duplex']) && strlen($contact['prvkey'])) {
276 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
277 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
280 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
281 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
284 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
286 if(strpos($final_dfrn_id,':') == 1)
287 $final_dfrn_id = substr($final_dfrn_id,2);
289 if($final_dfrn_id != $orig_id) {
290 logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);
291 // did not decode properly - cannot trust this site
295 $postvars['dfrn_id'] = $idtosend;
296 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
297 $postvars['perm'] = 'rw';
299 $xml = post_url($contact['poll'],$postvars);
302 elseif(($contact['network'] === NETWORK_OSTATUS)
303 || ($contact['network'] === NETWORK_DIASPORA)
304 || ($contact['network'] === NETWORK_FEED) ) {
306 // Upgrading DB fields from an older Friendica version
307 // Will only do this once per notify-enabled OStatus contact
308 // or if relationship changes
310 $stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
312 // Contacts from OStatus are always writable
313 if($contact['network'] === NETWORK_OSTATUS)
316 if($stat_writeable != $contact['writable']) {
317 q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d",
318 intval($stat_writeable),
319 intval($contact['id'])
323 // Are we allowed to import from this person?
325 if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
328 $cookiejar = tempnam(get_temppath(), 'cookiejar-onepoll-');
329 $xml = fetch_url($contact['poll'], false, $redirects, 0, Null, $cookiejar);
332 elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
334 logger("Mail: Fetching", LOGGER_DEBUG);
336 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
340 logger("Mail: Enabled", LOGGER_DEBUG);
343 $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
344 intval($importer_uid)
346 $mailconf = q("SELECT * FROM `mailacct` WHERE `server` != '' AND `uid` = %d LIMIT 1",
347 intval($importer_uid)
349 if(count($x) && count($mailconf)) {
350 $mailbox = construct_mailbox_name($mailconf[0]);
352 openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']);
353 $mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
355 logger("Mail: Connect to " . $mailconf[0]['user']);
357 q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d",
358 dbesc(datetime_convert()),
359 intval($mailconf[0]['id']),
360 intval($importer_uid)
362 logger("Mail: Connected to " . $mailconf[0]['user']);
364 logger("Mail: Connection error ".$mailconf[0]['user']." ".print_r(imap_errors(), true));
368 $msgs = email_poll($mbox,$contact['addr']);
371 logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG);
373 $metas = email_msg_meta($mbox,implode(',',$msgs));
374 if(count($metas) != count($msgs)) {
375 logger("onepoll: for " . $mailconf[0]['user'] . " there are ". count($msgs) . " messages but received " . count($metas) . " metas", LOGGER_DEBUG);
378 $msgs = array_combine($msgs, $metas);
380 foreach($msgs as $msg_uid => $meta) {
381 logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA);
384 $datarray['verb'] = ACTIVITY_POST;
385 $datarray['object-type'] = ACTIVITY_OBJ_NOTE;
386 // $meta = email_msg_meta($mbox,$msg_uid);
387 // $headers = email_msg_headers($mbox,$msg_uid);
389 $datarray['uri'] = msgid2iri(trim($meta->message_id,'<>'));
391 // Have we seen it before?
392 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
393 intval($importer_uid),
394 dbesc($datarray['uri'])
398 logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user']." UID: ".$importer_uid." URI: ".$datarray['uri'],LOGGER_DEBUG);
400 // Only delete when mails aren't automatically moved or deleted
401 if (($mailconf[0]['action'] != 1) AND ($mailconf[0]['action'] != 3))
402 if($meta->deleted && ! $r[0]['deleted']) {
403 q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d",
404 dbesc(datetime_convert()),
409 switch ($mailconf[0]['action']) {
411 logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
414 logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
415 imap_delete($mbox, $msg_uid, FT_UID);
418 logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']);
419 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
422 logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']);
423 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
424 if ($mailconf[0]['movetofolder'] != "")
425 imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
432 // look for a 'references' or an 'in-reply-to' header and try to match with a parent item we have locally.
434 // $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
435 $raw_refs = ((property_exists($meta,'references')) ? str_replace("\t",'',$meta->references) : '');
436 if(! trim($raw_refs))
437 $raw_refs = ((property_exists($meta,'in_reply_to')) ? str_replace("\t",'',$meta->in_reply_to) : '');
438 $raw_refs = trim($raw_refs); // Don't allow a blank reference in $refs_arr
441 $refs_arr = explode(' ', $raw_refs);
442 if(count($refs_arr)) {
443 for($x = 0; $x < count($refs_arr); $x ++)
444 $refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
446 $qstr = implode(',',$refs_arr);
447 $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
448 intval($importer_uid)
451 $datarray['parent-uri'] = $r[0]['parent-uri']; // Set the parent as the top-level item
452 // $datarray['parent-uri'] = $r[0]['uri'];
455 // Decoding the header
456 $subject = imap_mime_header_decode($meta->subject);
457 $datarray['title'] = "";
458 foreach($subject as $subpart)
459 if ($subpart->charset != "default")
460 $datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
462 $datarray['title'] .= $subpart->text;
464 $datarray['title'] = notags(trim($datarray['title']));
466 //$datarray['title'] = notags(trim($meta->subject));
467 $datarray['created'] = datetime_convert('UTC','UTC',$meta->date);
470 $reply = ((substr(strtolower($datarray['title']), 0, 3) == "re:") or
471 (substr(strtolower($datarray['title']), 0, 3) == "re-") or
474 // Remove Reply-signs in the subject
475 $datarray['title'] = RemoveReply($datarray['title']);
477 // If it seems to be a reply but a header couldn't be found take the last message with matching subject
478 if(!x($datarray,'parent-uri') and $reply) {
479 $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `title` = \"%s\" AND `uid` = %d ORDER BY `created` DESC LIMIT 1",
480 dbesc(protect_sprintf($datarray['title'])),
481 intval($importer_uid));
483 $datarray['parent-uri'] = $r[0]['parent-uri'];
486 if(! x($datarray,'parent-uri'))
487 $datarray['parent-uri'] = $datarray['uri'];
490 $r = email_get_msg($mbox,$msg_uid, $reply);
492 logger("Mail: can't fetch msg ".$msg_uid." for ".$mailconf[0]['user']);
495 $datarray['body'] = escape_tags($r['body']);
496 $datarray['body'] = limit_body_size($datarray['body']);
498 logger("Mail: Importing ".$msg_uid." for ".$mailconf[0]['user']);
500 // some mailing lists have the original author as 'from' - add this sender info to msg body.
501 /// @TODO Adding a gravatar for the original author would be cool
503 if(! stristr($meta->from,$contact['addr'])) {
504 $from = imap_mime_header_decode($meta->from);
506 foreach($from as $frompart)
507 if ($frompart->charset != "default")
508 $fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
510 $fromdecoded .= $frompart->text;
512 $fromarr = imap_rfc822_parse_adrlist($fromdecoded, $a->get_hostname());
514 $frommail = $fromarr[0]->mailbox."@".$fromarr[0]->host;
516 if (isset($fromarr[0]->personal))
517 $fromname = $fromarr[0]->personal;
519 $fromname = $frommail;
521 //$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
523 $datarray['author-name'] = $fromname;
524 $datarray['author-link'] = "mailto:".$frommail;
525 $datarray['author-avatar'] = $contact['photo'];
527 $datarray['owner-name'] = $contact['name'];
528 $datarray['owner-link'] = "mailto:".$contact['addr'];
529 $datarray['owner-avatar'] = $contact['photo'];
532 $datarray['author-name'] = $contact['name'];
533 $datarray['author-link'] = 'mailbox';
534 $datarray['author-avatar'] = $contact['photo'];
537 $datarray['uid'] = $importer_uid;
538 $datarray['contact-id'] = $contact['id'];
539 if($datarray['parent-uri'] === $datarray['uri'])
540 $datarray['private'] = 1;
541 if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
542 $datarray['private'] = 1;
543 $datarray['allow_cid'] = '<' . $contact['id'] . '>';
546 $stored_item = item_store($datarray);
547 q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d",
548 dbesc($datarray['parent-uri']),
549 intval($importer_uid)
551 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
554 switch ($mailconf[0]['action']) {
556 logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
559 logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
560 imap_delete($mbox, $msg_uid, FT_UID);
563 logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']);
564 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
567 logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']);
568 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
569 if ($mailconf[0]['movetofolder'] != "")
570 imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
576 logger("Mail: no mails for ".$mailconf[0]['user']);
578 logger("Mail: closing connection for ".$mailconf[0]['user']);
582 elseif($contact['network'] === NETWORK_FACEBOOK) {
583 // This is picked up by the Facebook plugin on a cron hook.
585 } elseif($contact['network'] === NETWORK_PUMPIO) {
586 // This is picked up by the pump.io plugin on a cron hook.
591 logger('poller: received xml : ' . $xml, LOGGER_DATA);
592 if(! strstr($xml,'<')) {
593 logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
594 $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d",
595 dbesc(datetime_convert()),
596 dbesc(datetime_convert()),
597 intval($contact['id'])
603 logger("Consume feed of contact ".$contact['id']);
605 consume_feed($xml,$importer,$contact,$hub,1,1);
607 // do it twice. Ensures that children of parents which may be later in the stream aren't tossed
609 consume_feed($xml,$importer,$contact,$hub,1,2);
611 $hubmode = 'subscribe';
612 if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
613 $hubmode = 'unsubscribe';
615 if(($contact['network'] === NETWORK_OSTATUS || $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify']))
621 logger("Contact ".$contact['id']." returned hub: ".$hub." Network: ".$contact['network']." Relation: ".$contact['rel']." Update: ".$hub_update);
623 if((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) {
624 logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
625 $hubs = explode(',', $hub);
627 foreach($hubs as $h) {
631 subscribe_to_hub($h,$importer,$contact,$hubmode);
636 $updated = datetime_convert();
638 $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d",
641 intval($contact['id'])
644 q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'",
646 dbesc($contact['nurl'])
649 } elseif (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_FEED))) {
650 $updated = datetime_convert();
652 $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d",
655 intval($contact['id'])
658 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
660 dbesc($contact['nurl'])
663 $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d",
665 intval($contact['id'])
672 if (array_search(__file__,get_included_files())===0){
673 onepoll_run($_SERVER["argv"],$_SERVER["argc"]);