friendica/include/poller.php

289 lines
8.1 KiB
PHP
Raw Normal View History

2010-07-19 05:49:54 +02:00
<?php
require_once("boot.php");
function poller_run($argv, $argc){
global $a, $db;
if(is_null($a)){
$a = new App;
}
if(is_null($db)){
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
2010-08-17 05:47:40 +02:00
2010-09-02 09:31:11 +02:00
require_once('session.php');
require_once('datetime.php');
require_once('simplepie/simplepie.inc');
require_once('include/items.php');
2010-09-09 05:14:17 +02:00
require_once('include/Contact.php');
2010-08-17 05:47:40 +02:00
$a->set_baseurl(get_config('system','url'));
2010-07-19 05:49:54 +02:00
2010-11-26 03:31:33 +01:00
logger('poller: start');
2010-11-26 03:22:54 +01:00
// run queue delivery process in the background
2010-11-23 00:30:52 +01:00
2010-11-26 03:22:54 +01:00
$php_path = ((x($a->config,'php_path') && strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
//proc_close(proc_open("\"$php_path\" \"include/queue.php\" &", array(), $foo));
proc_run($php_path,"include/queue.php");
2011-01-31 17:16:35 +01:00
// clear old cache
q("DELETE FROM `cache` WHERE `updated`<'%s'",
dbesc(datetime_convert('UTC','UTC',"now - 30 days")));
2010-11-23 00:30:52 +01:00
$manual_id = 0;
$hub_update = false;
$force = false;
2010-11-05 04:47:44 +01:00
if(($argc > 1) && ($argv[1] == 'force'))
$force = true;
2011-01-24 05:09:34 +01:00
if(($argc > 1) && intval($argv[1])) {
$manual_id = intval($argv[1]);
$force = true;
2011-01-24 05:09:34 +01:00
}
$sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
2010-10-25 06:10:52 +02:00
// 'stat' clause is a temporary measure until we have federation subscriptions working both directions
2010-08-17 07:05:04 +02:00
$contacts = q("SELECT * FROM `contact`
WHERE ( ( `network` = 'dfrn' AND ( `dfrn-id` != '' OR (`issued-id` != '' AND `duplex` = 1)))
2011-01-24 05:09:34 +01:00
OR ( `network` IN ( 'stat', 'feed' ) AND `poll` != '' ))
$sql_extra
AND `self` = 0 AND `blocked` = 0 AND `readonly` = 0 ORDER BY RAND()");
2010-07-19 05:49:54 +02:00
if(! count($contacts)){
return;
}
2010-07-19 05:49:54 +02:00
foreach($contacts as $contact) {
if($manual_id)
$contact['last-update'] = '0000-00-00 00:00:00';
if($contact['priority'] || $contact['subhub']) {
$hub_update = true;
$update = false;
$t = $contact['last-update'];
// We should be getting everything via a hub. But just to be sure, let's check once a day.
// (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
// This also lets us update our subscription to the hub, and add or replace hubs in case it
// changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
if($contact['subhub']) {
$interval = get_config('system','pushpoll_frequency');
$contact['priority'] = (($interval !== false) ? intval($interval) : 3);
$hub_update = false;
2011-01-31 03:25:41 +01:00
if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) || $force)
$hub_update = true;
}
/**
* Based on $contact['priority'], should we poll this site now? Or later?
*/
switch ($contact['priority']) {
case 5:
2010-10-01 04:41:22 +02:00
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
$update = true;
break;
case 4:
2010-10-01 04:41:22 +02:00
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
$update = true;
break;
case 3:
2010-10-01 04:41:22 +02:00
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
$update = true;
break;
case 2:
2010-10-01 04:41:22 +02:00
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
$update = true;
break;
case 1:
default:
2010-10-01 04:41:22 +02:00
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
$update = true;
break;
}
2010-11-05 04:47:44 +01:00
if((! $update) && (! $force))
continue;
}
2010-07-19 05:49:54 +02:00
$importer_uid = $contact['uid'];
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
intval($importer_uid)
);
if(! count($r))
continue;
$importer = $r[0];
2010-11-15 00:17:27 +01:00
logger("poller: poll: IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
2010-09-09 14:25:01 +02:00
2010-09-27 02:24:20 +02:00
$last_update = (($contact['last-update'] === '0000-00-00 00:00:00')
2010-10-13 02:11:06 +02:00
? datetime_convert('UTC','UTC','now - 30 days', ATOM_TIME)
: datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME)
);
2010-07-19 05:49:54 +02:00
if($contact['network'] === 'dfrn') {
2010-09-13 06:25:37 +02:00
$idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
2010-09-13 06:25:37 +02:00
if(intval($contact['duplex']) && $contact['dfrn-id'])
$idtosend = '0:' . $orig_id;
if(intval($contact['duplex']) && $contact['issued-id'])
$idtosend = '1:' . $orig_id;
$url = $contact['poll'] . '?dfrn_id=' . $idtosend
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
. '&type=data&last_update=' . $last_update ;
$xml = fetch_url($url);
2010-09-02 09:31:11 +02:00
2010-11-15 00:17:27 +01:00
logger('poller: handshake with url ' . $url . ' returns xml: ' . $xml, LOGGER_DATA);
2010-09-02 09:31:11 +02:00
if(! $xml) {
2010-11-05 04:47:44 +01:00
logger("poller: $url appears to be dead - marking for death ");
// dead connection - might be a transient event, or this might
// mean the software was uninstalled or the domain expired.
// Will keep trying for one month.
mark_for_death($contact);
// set the last-update so we don't keep polling
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
continue;
}
2010-09-13 06:25:37 +02:00
if(! strstr($xml,'<?xml')) {
logger('poller: response from ' . $url . ' did not contain XML.');
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
continue;
}
2010-09-13 06:25:37 +02:00
$res = simplexml_load_string($xml);
2010-07-19 05:49:54 +02:00
if(intval($res->status) == 1) {
2010-11-05 04:47:44 +01:00
logger("poller: $url replied status 1 - marking for death ");
// we may not be friends anymore. Will keep trying for one month.
// set the last-update so we don't keep polling
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
mark_for_death($contact);
}
else {
2010-11-05 04:47:44 +01:00
if($contact['term-date'] != '0000-00-00 00:00:00') {
logger("poller: $url back from the dead - removing mark for death");
unmark_for_death($contact);
2010-11-05 04:47:44 +01:00
}
}
2010-09-09 05:14:17 +02:00
if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
continue;
2010-07-19 05:49:54 +02:00
$postvars = array();
2010-07-19 05:49:54 +02:00
2011-01-18 06:08:16 +01:00
$sent_dfrn_id = hex2bin((string) $res->dfrn_id);
$challenge = hex2bin((string) $res->challenge);
$final_dfrn_id = '';
2010-09-02 09:31:11 +02:00
if(($contact['duplex']) && strlen($contact['prvkey'])) {
openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
}
else {
openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
}
2010-09-02 09:31:11 +02:00
$final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
if(strpos($final_dfrn_id,':') == 1)
$final_dfrn_id = substr($final_dfrn_id,2);
2010-09-02 09:31:11 +02:00
if($final_dfrn_id != $orig_id) {
2010-09-13 06:25:37 +02:00
// did not decode properly - cannot trust this site
continue;
}
2010-09-13 06:25:37 +02:00
$postvars['dfrn_id'] = $idtosend;
$postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
2010-09-13 06:25:37 +02:00
$xml = post_url($contact['poll'],$postvars);
}
else {
// $contact['network'] !== 'dfrn'
$xml = fetch_url($contact['poll']);
}
2010-07-19 05:49:54 +02:00
2010-11-05 04:47:44 +01:00
logger('poller: received xml : ' . $xml, LOGGER_DATA);
2010-07-19 05:49:54 +02:00
if(! strlen($xml))
continue;
consume_feed($xml,$importer,$contact,$hub,1);
2010-11-05 04:47:44 +01:00
// do it twice. Ensures that children of parents which may be later in the stream aren't tossed
consume_feed($xml,$importer,$contact,$hub,1);
if((strlen($hub)) && ($hub_update)
&& (($contact['rel'] == REL_BUD) || (($contact['network'] === 'stat') && (! $contact['readonly'])))) {
2010-11-08 06:07:47 +01:00
logger('poller: subscribing to hub(s) : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
$hubs = explode(',', $hub);
if(count($hubs)) {
foreach($hubs as $h) {
$h = trim($h);
if(! strlen($h))
continue;
subscribe_to_hub($h,$importer,$contact);
}
}
}
2010-09-10 09:42:53 +02:00
2010-07-19 05:49:54 +02:00
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
// loop - next contact
}
2010-07-19 05:49:54 +02:00
return;
}
2010-07-19 05:49:54 +02:00
if (array_search(__file__,get_included_files())===0){
poller_run($argv,$argc);
killme();
}