]> git.mxchange.org Git - friendica.git/blob - include/onepoll.php
Merge pull request #1052 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_lockpath();
62         if ($lockpath != '') {
63                 $pidfile = new pidfile($lockpath, 'onepoll'.$contact_id);
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` INNER 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                                                 $datarray['verb'] = ACTIVITY_POST;
334         //                                      $meta = email_msg_meta($mbox,$msg_uid);
335         //                                      $headers = email_msg_headers($mbox,$msg_uid);
336
337                                                 $datarray['uri'] = msgid2iri(trim($meta->message_id,'<>'));
338
339                                                 // Have we seen it before?
340                                                 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
341                                                         intval($importer_uid),
342                                                         dbesc($datarray['uri'])
343                                                 );
344
345                                                 if(count($r)) {
346                                                         logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user']." UID: ".$importer_uid." URI: ".$datarray['uri'],LOGGER_DEBUG);
347
348                                                         // Only delete when mails aren't automatically moved or deleted
349                                                         if (($mailconf[0]['action'] != 1) AND ($mailconf[0]['action'] != 3))
350                                                                 if($meta->deleted && ! $r[0]['deleted']) {
351                                                                         q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d",
352                                                                                 dbesc(datetime_convert()),
353                                                                                 intval($r[0]['id'])
354                                                                         );
355                                                                 }
356
357                                                         switch ($mailconf[0]['action']) {
358                                                                 case 0:
359                                                                         logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
360                                                                         break;
361                                                                 case 1:
362                                                                         logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
363                                                                         imap_delete($mbox, $msg_uid, FT_UID);
364                                                                         break;
365                                                                 case 2:
366                                                                         logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']);
367                                                                         imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
368                                                                         break;
369                                                                 case 3:
370                                                                         logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']);
371                                                                         imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
372                                                                         if ($mailconf[0]['movetofolder'] != "")
373                                                                                 imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
374                                                                         break;
375                                                         }
376                                                         continue;
377                                                 }
378
379
380                                                 // look for a 'references' or an 'in-reply-to' header and try to match with a parent item we have locally.
381
382         //                                      $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
383                                                 $raw_refs = ((property_exists($meta,'references')) ? str_replace("\t",'',$meta->references) : '');
384                                                 if(! trim($raw_refs))
385                                                         $raw_refs = ((property_exists($meta,'in_reply_to')) ? str_replace("\t",'',$meta->in_reply_to) : '');
386                                                 $raw_refs = trim($raw_refs);  // Don't allow a blank reference in $refs_arr
387
388                                                 if($raw_refs) {
389                                                         $refs_arr = explode(' ', $raw_refs);
390                                                         if(count($refs_arr)) {
391                                                                 for($x = 0; $x < count($refs_arr); $x ++)
392                                                                         $refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
393                                                         }
394                                                         $qstr = implode(',',$refs_arr);
395                                                         $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
396                                                                 intval($importer_uid)
397                                                         );
398                                                         if(count($r))
399                                                                 $datarray['parent-uri'] = $r[0]['parent-uri'];  // Set the parent as the top-level item
400         //                                                      $datarray['parent-uri'] = $r[0]['uri'];
401                                                 }
402
403                                                 // Decoding the header
404                                                 $subject = imap_mime_header_decode($meta->subject);
405                                                 $datarray['title'] = "";
406                                                 foreach($subject as $subpart)
407                                                         if ($subpart->charset != "default")
408                                                                 $datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
409                                                         else
410                                                                 $datarray['title'] .= $subpart->text;
411
412                                                 $datarray['title'] = notags(trim($datarray['title']));
413
414                                                 //$datarray['title'] = notags(trim($meta->subject));
415                                                 $datarray['created'] = datetime_convert('UTC','UTC',$meta->date);
416
417                                                 // Is it a reply?
418                                                 $reply = ((substr(strtolower($datarray['title']), 0, 3) == "re:") or
419                                                         (substr(strtolower($datarray['title']), 0, 3) == "re-") or
420                                                         ($raw_refs != ""));
421
422                                                 // Remove Reply-signs in the subject
423                                                 $datarray['title'] = RemoveReply($datarray['title']);
424
425                                                 // If it seems to be a reply but a header couldn't be found take the last message with matching subject
426                                                 if(!x($datarray,'parent-uri') and $reply) {
427                                                         $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `title` = \"%s\" AND `uid` = %d ORDER BY `created` DESC LIMIT 1",
428                                                                 dbesc(protect_sprintf($datarray['title'])),
429                                                                 intval($importer_uid));
430                                                         if(count($r))
431                                                                 $datarray['parent-uri'] = $r[0]['parent-uri'];
432                                                 }
433
434                                                 if(! x($datarray,'parent-uri'))
435                                                         $datarray['parent-uri'] = $datarray['uri'];
436
437
438                                                 $r = email_get_msg($mbox,$msg_uid, $reply);
439                                                 if(! $r) {
440                                                         logger("Mail: can't fetch msg ".$msg_uid." for ".$mailconf[0]['user']);
441                                                         continue;
442                                                 }
443                                                 $datarray['body'] = escape_tags($r['body']);
444                                                 $datarray['body'] = limit_body_size($datarray['body']);
445
446                                                 logger("Mail: Importing ".$msg_uid." for ".$mailconf[0]['user']);
447
448                                                 // some mailing lists have the original author as 'from' - add this sender info to msg body.
449                                                 // todo: adding a gravatar for the original author would be cool
450
451                                                 if(! stristr($meta->from,$contact['addr'])) {
452                                                         $from = imap_mime_header_decode($meta->from);
453                                                         $fromdecoded = "";
454                                                         foreach($from as $frompart)
455                                                                 if ($frompart->charset != "default")
456                                                                         $fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
457                                                                 else
458                                                                         $fromdecoded .= $frompart->text;
459
460                                                         $fromarr = imap_rfc822_parse_adrlist($fromdecoded, $a->get_hostname());
461
462                                                         $frommail = $fromarr[0]->mailbox."@".$fromarr[0]->host;
463
464                                                         if (isset($fromarr[0]->personal))
465                                                                 $fromname = $fromarr[0]->personal;
466                                                         else
467                                                                 $fromname = $frommail;
468
469                                                         //$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
470
471                                                         $datarray['author-name'] = $fromname;
472                                                         $datarray['author-link'] = "mailto:".$frommail;
473                                                         $datarray['author-avatar'] = $contact['photo'];
474
475                                                         $datarray['owner-name'] = $contact['name'];
476                                                         $datarray['owner-link'] = "mailto:".$contact['addr'];
477                                                         $datarray['owner-avatar'] = $contact['photo'];
478
479                                                 } else {
480                                                         $datarray['author-name'] = $contact['name'];
481                                                         $datarray['author-link'] = 'mailbox';
482                                                         $datarray['author-avatar'] = $contact['photo'];
483                                                 }
484
485                                                 $datarray['uid'] = $importer_uid;
486                                                 $datarray['contact-id'] = $contact['id'];
487                                                 if($datarray['parent-uri'] === $datarray['uri'])
488                                                         $datarray['private'] = 1;
489                                                 if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
490                                                         $datarray['private'] = 1;
491                                                         $datarray['allow_cid'] = '<' . $contact['id'] . '>';
492                                                 }
493
494                                                 $stored_item = item_store($datarray);
495                                                 q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d",
496                                                         dbesc($datarray['parent-uri']),
497                                                         intval($importer_uid)
498                                                 );
499                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d",
500                                                         intval($stored_item)
501                                                 );
502                                                 switch ($mailconf[0]['action']) {
503                                                         case 0:
504                                                                 logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
505                                                                 break;
506                                                         case 1:
507                                                                 logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
508                                                                 imap_delete($mbox, $msg_uid, FT_UID);
509                                                                 break;
510                                                         case 2:
511                                                                 logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']);
512                                                                 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
513                                                                 break;
514                                                         case 3:
515                                                                 logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']);
516                                                                 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
517                                                                 if ($mailconf[0]['movetofolder'] != "")
518                                                                         imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
519                                                                 break;
520                                                 }
521                                         }
522                                 }
523                         }
524                         imap_close($mbox);
525                 }
526         }
527         elseif($contact['network'] === NETWORK_FACEBOOK) {
528                 // This is picked up by the Facebook plugin on a cron hook.
529                 // Ignored here.
530         } elseif($contact['network'] === NETWORK_PUMPIO) {
531                 // This is picked up by the pump.io plugin on a cron hook.
532                 // Ignored here.
533         }
534
535         if($xml) {
536                 logger('poller: received xml : ' . $xml, LOGGER_DATA);
537                 if((! strstr($xml,'<?xml')) && (! strstr($xml,'<rss'))) {
538                         logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
539                         $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d",
540                                 dbesc(datetime_convert()),
541                                 intval($contact['id'])
542                         );
543                         return;
544                 }
545
546
547                 consume_feed($xml,$importer,$contact,$hub,1,1);
548
549
550                 // do it twice. Ensures that children of parents which may be later in the stream aren't tossed
551
552                 consume_feed($xml,$importer,$contact,$hub,1,2);
553
554                 $hubmode = 'subscribe';
555                 if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
556                         $hubmode = 'unsubscribe';
557
558                 if(($contact['network'] === NETWORK_OSTATUS ||  $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify']))
559                         $hub_update = true;
560
561                 if((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) {
562                         logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
563                         $hubs = explode(',', $hub);
564                         if(count($hubs)) {
565                                 foreach($hubs as $h) {
566                                         $h = trim($h);
567                                         if(! strlen($h))
568                                                 continue;
569                                         subscribe_to_hub($h,$importer,$contact,$hubmode);
570                                 }
571                         }
572                 }
573         }
574
575         $updated = datetime_convert();
576
577         $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d",
578                 dbesc($updated),
579                 dbesc($updated),
580                 intval($contact['id'])
581         );
582
583
584         // load current friends if possible.
585
586         if($contact['poco']) {  
587                 $r = q("SELECT count(*) as total from glink 
588                         where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
589                         intval($contact['id'])
590                 );
591         }
592         if(count($r)) {
593                 if(! $r[0]['total']) {
594                         poco_load($contact['id'],$importer_uid,0,$contact['poco']);
595                 }
596         }
597
598         return;
599 }
600
601 if (array_search(__file__,get_included_files())===0){
602   onepoll_run($argv,$argc);
603   killme();
604 }