]> git.mxchange.org Git - friendica.git/blob - include/onepoll.php
Merge pull request #817 from annando/master
[friendica.git] / include / onepoll.php
1 <?php
2
3 require_once("boot.php");
4
5 function RemoveReply($subject) {
6         while (in_array(strtolower(substr($subject, 0, 3)), array("re:", "aw:")))
7                 $subject = trim(substr($subject, 4));
8
9         return($subject);
10 }
11
12 function onepoll_run(&$argv, &$argc){
13         global $a, $db;
14
15         if(is_null($a)) {
16                 $a = new App;
17         }
18   
19         if(is_null($db)) {
20             @include(".htconfig.php");
21         require_once("include/dba.php");
22             $db = new dba($db_host, $db_user, $db_pass, $db_data);
23         unset($db_host, $db_user, $db_pass, $db_data);
24         };
25
26
27         require_once('include/session.php');
28         require_once('include/datetime.php');
29         require_once('library/simplepie/simplepie.inc');
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/pidfile.php');
35         require_once('include/queue_fn.php');
36
37         load_config('config');
38         load_config('system');
39
40         $a->set_baseurl(get_config('system','url'));
41
42         load_hooks();
43
44         logger('onepoll: start');
45
46         $manual_id  = 0;
47         $generation = 0;
48         $hub_update = false;
49         $force      = false;
50         $restart    = false;
51
52         if(($argc > 1) && (intval($argv[1])))
53                 $contact_id = intval($argv[1]);
54
55         if(! $contact_id) {
56                 logger('onepoll: no contact');
57                 return;
58         }
59
60         // Test
61         $lockpath = get_config('system','lockpath');
62         if ($lockpath != '') {
63                 $pidfile = new pidfile($lockpath, 'onepoll'.$contact_id.'.lck');
64                 if($pidfile->is_already_running()) {
65                         logger("onepoll: Already running for contact ".$contact_id);
66                         exit;
67                 }
68         }
69
70
71         $d = datetime_convert();
72
73         // Only poll from those with suitable relationships,
74         // and which have a polling address and ignore Diaspora since 
75         // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
76
77         $contacts = q("SELECT `contact`.* FROM `contact` 
78                 WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
79                 AND NOT `network` IN ( '%s', '%s', '%s' )
80                 AND `contact`.`id` = %d
81                 AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0 
82                 AND `contact`.`archive` = 0 LIMIT 1",
83                 intval(CONTACT_IS_SHARING),
84                 intval(CONTACT_IS_FRIEND),
85                 dbesc(NETWORK_DIASPORA),
86                 dbesc(NETWORK_FACEBOOK),
87                 dbesc(NETWORK_PUMPIO),
88                 intval($contact_id)
89         );
90
91         if(! count($contacts)) {
92                 return;
93         }
94
95         $contact = $contacts[0];
96
97         $xml = false;
98
99         $t = $contact['last-update'];
100
101         if($contact['subhub']) {
102                 $poll_interval = get_config('system','pushpoll_frequency');
103                 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
104                 $hub_update = false;
105
106                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
107                                 $hub_update = true;
108         }
109         else
110                 $hub_update = false;
111
112
113         $importer_uid = $contact['uid'];
114
115         $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
116                 intval($importer_uid)
117         );
118         if(! count($r))
119                 return;
120
121         $importer = $r[0];
122
123         logger("onepoll: poll: ({$contact['id']}) IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
124
125         $last_update = (($contact['last-update'] === '0000-00-00 00:00:00')
126                 ? datetime_convert('UTC','UTC','now - 7 days', ATOM_TIME)
127                 : datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME)
128         );
129
130         if($contact['network'] === NETWORK_DFRN) {
131
132
133                 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
134                 if(intval($contact['duplex']) && $contact['dfrn-id'])
135                         $idtosend = '0:' . $orig_id;
136                 if(intval($contact['duplex']) && $contact['issued-id'])
137                         $idtosend = '1:' . $orig_id;
138
139                 // they have permission to write to us. We already filtered this in the contact query.
140                 $perm = 'rw';
141
142                 // But this may be our first communication, so set the writable flag if it isn't set already.
143
144                 if(! intval($contact['writable']))
145                         q("update contact set writable = 1 where id = %d", intval($contact['id']));
146
147
148                 $url = $contact['poll'] . '?dfrn_id=' . $idtosend
149                         . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
150                         . '&type=data&last_update=' . $last_update
151                         . '&perm=' . $perm ;
152
153                 $handshake_xml = fetch_url($url);
154                 $html_code = $a->get_curl_code();
155
156                 logger('onepoll: handshake with url ' . $url . ' returns xml: ' . $handshake_xml, LOGGER_DATA);
157
158
159                 if((! strlen($handshake_xml)) || ($html_code >= 400) || (! $html_code)) {
160                         logger("poller: $url appears to be dead - marking for death ");
161
162                         // dead connection - might be a transient event, or this might
163                         // mean the software was uninstalled or the domain expired.
164                         // Will keep trying for one month.
165
166                         mark_for_death($contact);
167
168                         // set the last-update so we don't keep polling
169                         $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d",
170                                 dbesc(datetime_convert()),
171                                 intval($contact['id'])
172                         );
173
174                         return;
175                 }
176
177                 if(! strstr($handshake_xml,'<?xml')) {
178                         logger('poller: response from ' . $url . ' did not contain XML.');
179
180                         mark_for_death($contact);
181
182                         $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d",
183                                 dbesc(datetime_convert()),
184                                 intval($contact['id'])
185                         );
186                         return;
187                 }
188
189
190                 $res = parse_xml_string($handshake_xml);
191
192                 if(intval($res->status) == 1) {
193                         logger("poller: $url replied status 1 - marking for death ");
194
195                         // we may not be friends anymore. Will keep trying for one month.
196                         // set the last-update so we don't keep polling
197
198
199                         $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d",
200                                 dbesc(datetime_convert()),
201                                 intval($contact['id'])
202                         );
203                         mark_for_death($contact);
204                 }
205                 else {
206                         if($contact['term-date'] != '0000-00-00 00:00:00') {
207                                 logger("poller: $url back from the dead - removing mark for death");
208                                 unmark_for_death($contact);
209                         }
210                 }
211
212                 if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
213                         return;
214
215                 if(((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
216                         q("update contact set poco = '%s' where id = %d",
217                                 dbesc(str_replace('/profile/','/poco/', $contact['url'])),
218                                 intval($contact['id'])
219                         );
220                 }
221
222                 $postvars = array();
223
224                 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
225                 $challenge    = hex2bin((string) $res->challenge);
226
227                 $final_dfrn_id = '';
228
229                 if(($contact['duplex']) && strlen($contact['prvkey'])) {
230                         openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
231                         openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
232                 }
233                 else {
234                         openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
235                         openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
236                 }
237
238                 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
239
240                 if(strpos($final_dfrn_id,':') == 1)
241                         $final_dfrn_id = substr($final_dfrn_id,2);
242
243                 if($final_dfrn_id != $orig_id) {
244                         logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);    
245                         // did not decode properly - cannot trust this site 
246                         return;
247                 }
248
249                 $postvars['dfrn_id'] = $idtosend;
250                 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
251                 $postvars['perm'] = 'rw';
252
253                 $xml = post_url($contact['poll'],$postvars);
254
255         }
256         elseif(($contact['network'] === NETWORK_OSTATUS) 
257                 || ($contact['network'] === NETWORK_DIASPORA)
258                 || ($contact['network'] === NETWORK_FEED) ) {
259
260                 // Upgrading DB fields from an older Friendica version
261                 // Will only do this once per notify-enabled OStatus contact
262                 // or if relationship changes
263
264                 $stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
265
266                 if($contact['network'] === NETWORK_OSTATUS && get_pconfig($importer_uid,'system','ostatus_autofriend'))
267                         $stat_writeable = 1;
268
269                 if($stat_writeable != $contact['writable']) {
270                         q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d",
271                                 intval($stat_writeable),
272                                 intval($contact['id'])
273                         );
274                 }
275
276                 // Are we allowed to import from this person?
277
278                 if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
279                         return;
280
281                 $xml = fetch_url($contact['poll']);
282         }
283         elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
284
285                 logger("onepoll: mail: Fetching", LOGGER_DEBUG);
286
287                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
288                 if($mail_disabled)
289                         return;
290
291                 logger("onepoll: Mail: Enabled", LOGGER_DEBUG);
292
293                 $mbox = null;
294                 $x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
295                         intval($importer_uid)
296                 );
297                 $mailconf = q("SELECT * FROM `mailacct` WHERE `server` != '' AND `uid` = %d LIMIT 1",
298                         intval($importer_uid)
299                 );
300                 if(count($x) && count($mailconf)) {
301                     $mailbox = construct_mailbox_name($mailconf[0]);
302                         $password = '';
303                         openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']);
304                         $mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
305                         unset($password);
306                         logger("Mail: Connect to " . $mailconf[0]['user']);
307                         if($mbox) {
308                                 q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d",
309                                         dbesc(datetime_convert()),
310                                         intval($mailconf[0]['id']),
311                                         intval($importer_uid)
312                                 );
313                         }
314                 }
315                 if($mbox) {
316
317                         $msgs = email_poll($mbox,$contact['addr']);
318
319                         if(count($msgs)) {
320                                 logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG);
321
322                                 $metas = email_msg_meta($mbox,implode(',',$msgs));
323                                 if(count($metas) != count($msgs)) {
324                                         logger("onepoll: for " . $mailconf[0]['user'] . " there are ". count($msgs) . " messages but received " . count($metas) . " metas", LOGGER_DEBUG);
325                                 }
326                                 else {
327                                         $msgs = array_combine($msgs, $metas);
328
329                                         foreach($msgs as $msg_uid => $meta) {
330                                                 logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA);
331
332                                                 $datarray = array();
333         //                                      $meta = email_msg_meta($mbox,$msg_uid);
334         //                                      $headers = email_msg_headers($mbox,$msg_uid);
335
336                                                 $datarray['uri'] = msgid2iri(trim($meta->message_id,'<>'));
337
338                                                 // Have we seen it before?
339                                                 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
340                                                         intval($importer_uid),
341                                                         dbesc($datarray['uri'])
342                                                 );
343
344                                                 if(count($r)) {
345                                                         logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user']." UID: ".$importer_uid." URI: ".$datarray['uri'],LOGGER_DEBUG);
346
347                                                         // Only delete when mails aren't automatically moved or deleted
348                                                         if (($mailconf[0]['action'] != 1) AND ($mailconf[0]['action'] != 3))
349                                                                 if($meta->deleted && ! $r[0]['deleted']) {
350                                                                         q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d",
351                                                                                 dbesc(datetime_convert()),
352                                                                                 intval($r[0]['id'])
353                                                                         );
354                                                                 }
355
356                                                         switch ($mailconf[0]['action']) {
357                                                                 case 0:
358                                                                         logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
359                                                                         break;
360                                                                 case 1:
361                                                                         logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
362                                                                         imap_delete($mbox, $msg_uid, FT_UID);
363                                                                         break;
364                                                                 case 2:
365                                                                         logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']);
366                                                                         imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
367                                                                         break;
368                                                                 case 3:
369                                                                         logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']);
370                                                                         imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
371                                                                         if ($mailconf[0]['movetofolder'] != "")
372                                                                                 imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
373                                                                         break;
374                                                         }
375                                                         continue;
376                                                 }
377
378
379                                                 // look for a 'references' or an 'in-reply-to' header and try to match with a parent item we have locally.
380
381         //                                      $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
382                                                 $raw_refs = ((property_exists($meta,'references')) ? str_replace("\t",'',$meta->references) : '');
383                                                 if(! trim($raw_refs))
384                                                         $raw_refs = ((property_exists($meta,'in_reply_to')) ? str_replace("\t",'',$meta->in_reply_to) : '');
385                                                 $raw_refs = trim($raw_refs);  // Don't allow a blank reference in $refs_arr
386
387                                                 if($raw_refs) {
388                                                         $refs_arr = explode(' ', $raw_refs);
389                                                         if(count($refs_arr)) {
390                                                                 for($x = 0; $x < count($refs_arr); $x ++)
391                                                                         $refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
392                                                         }
393                                                         $qstr = implode(',',$refs_arr);
394                                                         $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
395                                                                 intval($importer_uid)
396                                                         );
397                                                         if(count($r))
398                                                                 $datarray['parent-uri'] = $r[0]['parent-uri'];  // Set the parent as the top-level item
399         //                                                      $datarray['parent-uri'] = $r[0]['uri'];
400                                                 }
401
402                                                 // Decoding the header
403                                                 $subject = imap_mime_header_decode($meta->subject);
404                                                 $datarray['title'] = "";
405                                                 foreach($subject as $subpart)
406                                                         if ($subpart->charset != "default")
407                                                                 $datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
408                                                         else
409                                                                 $datarray['title'] .= $subpart->text;
410
411                                                 $datarray['title'] = notags(trim($datarray['title']));
412
413                                                 //$datarray['title'] = notags(trim($meta->subject));
414                                                 $datarray['created'] = datetime_convert('UTC','UTC',$meta->date);
415
416                                                 // Is it a reply?
417                                                 $reply = ((substr(strtolower($datarray['title']), 0, 3) == "re:") or
418                                                         (substr(strtolower($datarray['title']), 0, 3) == "re-") or
419                                                         ($raw_refs != ""));
420
421                                                 // Remove Reply-signs in the subject
422                                                 $datarray['title'] = RemoveReply($datarray['title']);
423
424                                                 // If it seems to be a reply but a header couldn't be found take the last message with matching subject
425                                                 if(!x($datarray,'parent-uri') and $reply) {
426                                                         $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `title` = \"%s\" AND `uid` = %d ORDER BY `created` DESC LIMIT 1",
427                                                                 dbesc(protect_sprintf($datarray['title'])),
428                                                                 intval($importer_uid));
429                                                         if(count($r))
430                                                                 $datarray['parent-uri'] = $r[0]['parent-uri'];
431                                                 }
432
433                                                 if(! x($datarray,'parent-uri'))
434                                                         $datarray['parent-uri'] = $datarray['uri'];
435
436
437                                                 $r = email_get_msg($mbox,$msg_uid, $reply);
438                                                 if(! $r) {
439                                                         logger("Mail: can't fetch msg ".$msg_uid." for ".$mailconf[0]['user']);
440                                                         continue;
441                                                 }
442                                                 $datarray['body'] = escape_tags($r['body']);
443                                                 $datarray['body'] = limit_body_size($datarray['body']);
444
445                                                 logger("Mail: Importing ".$msg_uid." for ".$mailconf[0]['user']);
446
447                                                 // some mailing lists have the original author as 'from' - add this sender info to msg body.
448                                                 // todo: adding a gravatar for the original author would be cool
449
450                                                 if(! stristr($meta->from,$contact['addr'])) {
451                                                         $from = imap_mime_header_decode($meta->from);
452                                                         $fromdecoded = "";
453                                                         foreach($from as $frompart)
454                                                                 if ($frompart->charset != "default")
455                                                                         $fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
456                                                                 else
457                                                                         $fromdecoded .= $frompart->text;
458
459                                                         $fromarr = imap_rfc822_parse_adrlist($fromdecoded, $a->get_hostname());
460
461                                                         $frommail = $fromarr[0]->mailbox."@".$fromarr[0]->host;
462
463                                                         if (isset($fromarr[0]->personal))
464                                                                 $fromname = $fromarr[0]->personal;
465                                                         else
466                                                                 $fromname = $frommail;
467
468                                                         //$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
469
470                                                         $datarray['author-name'] = $fromname;
471                                                         $datarray['author-link'] = "mailto:".$frommail;
472                                                         $datarray['author-avatar'] = $contact['photo'];
473
474                                                         $datarray['owner-name'] = $contact['name'];
475                                                         $datarray['owner-link'] = "mailto:".$contact['addr'];
476                                                         $datarray['owner-avatar'] = $contact['photo'];
477
478                                                 } else {
479                                                         $datarray['author-name'] = $contact['name'];
480                                                         $datarray['author-link'] = 'mailbox';
481                                                         $datarray['author-avatar'] = $contact['photo'];
482                                                 }
483
484                                                 $datarray['uid'] = $importer_uid;
485                                                 $datarray['contact-id'] = $contact['id'];
486                                                 if($datarray['parent-uri'] === $datarray['uri'])
487                                                         $datarray['private'] = 1;
488                                                 if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
489                                                         $datarray['private'] = 1;
490                                                         $datarray['allow_cid'] = '<' . $contact['id'] . '>';
491                                                 }
492
493                                                 $stored_item = item_store($datarray);
494                                                 q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d",
495                                                         dbesc($datarray['parent-uri']),
496                                                         intval($importer_uid)
497                                                 );
498                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
499                                                         intval($stored_item)
500                                                 );
501                                                 switch ($mailconf[0]['action']) {
502                                                         case 0:
503                                                                 logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
504                                                                 break;
505                                                         case 1:
506                                                                 logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
507                                                                 imap_delete($mbox, $msg_uid, FT_UID);
508                                                                 break;
509                                                         case 2:
510                                                                 logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']);
511                                                                 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
512                                                                 break;
513                                                         case 3:
514                                                                 logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']);
515                                                                 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
516                                                                 if ($mailconf[0]['movetofolder'] != "")
517                                                                         imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
518                                                                 break;
519                                                 }
520                                         }
521                                 }
522                         }
523                         imap_close($mbox);
524                 }
525         }
526         elseif($contact['network'] === NETWORK_FACEBOOK) {
527                 // This is picked up by the Facebook plugin on a cron hook.
528                 // Ignored here.
529         } elseif($contact['network'] === NETWORK_PUMPIO) {
530                 // This is picked up by the pump.io plugin on a cron hook.
531                 // Ignored here.
532         }
533
534         if($xml) {
535                 logger('poller: received xml : ' . $xml, LOGGER_DATA);
536                 if((! strstr($xml,'<?xml')) && (! strstr($xml,'<rss'))) {
537                         logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
538                         $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d",
539                                 dbesc(datetime_convert()),
540                                 intval($contact['id'])
541                         );
542                         return;
543                 }
544
545
546                 consume_feed($xml,$importer,$contact,$hub,1,1);
547
548
549                 // do it twice. Ensures that children of parents which may be later in the stream aren't tossed
550
551                 consume_feed($xml,$importer,$contact,$hub,1,2);
552
553                 $hubmode = 'subscribe';
554                 if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
555                         $hubmode = 'unsubscribe';
556
557                 if(($contact['network'] === NETWORK_OSTATUS ||  $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify']))
558                         $hub_update = true;
559
560                 if((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) {
561                         logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
562                         $hubs = explode(',', $hub);
563                         if(count($hubs)) {
564                                 foreach($hubs as $h) {
565                                         $h = trim($h);
566                                         if(! strlen($h))
567                                                 continue;
568                                         subscribe_to_hub($h,$importer,$contact,$hubmode);
569                                 }
570                         }
571                 }
572         }
573
574         $updated = datetime_convert();
575
576         $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d",
577                 dbesc($updated),
578                 dbesc($updated),
579                 intval($contact['id'])
580         );
581
582
583         // load current friends if possible.
584
585         if($contact['poco']) {  
586                 $r = q("SELECT count(*) as total from glink 
587                         where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
588                         intval($contact['id'])
589                 );
590         }
591         if(count($r)) {
592                 if(! $r[0]['total']) {
593                         poco_load($contact['id'],$importer_uid,0,$contact['poco']);
594                 }
595         }
596
597         return;
598 }
599
600 if (array_search(__file__,get_included_files())===0){
601   onepoll_run($argv,$argc);
602   killme();
603 }