friendica/include/poller.php

201 lines
5.0 KiB
PHP
Raw Normal View History

2010-07-19 05:49:54 +02:00
<?php
2010-09-02 09:31:11 +02:00
require_once('boot.php');
2010-07-19 05:49:54 +02:00
2010-09-02 09:31:11 +02:00
$a = new App;
2010-07-19 05:49:54 +02:00
2010-09-02 09:31:11 +02:00
@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-08-17 05:47:40 +02:00
2010-09-09 05:14:17 +02:00
require_once('include/Contact.php');
$debugging = get_config('system','debugging');
2010-08-17 05:47:40 +02:00
$a->set_baseurl(get_config('system','url'));
2010-07-19 05:49:54 +02:00
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))
AND `self` = 0 AND `blocked` = 0 AND `readonly` = 0 ORDER BY RAND()");
2010-07-19 05:49:54 +02:00
if(! count($contacts))
killme();
foreach($contacts as $contact) {
if($contact['priority'] || $contact['subhub']) {
$update = false;
// We should be getting everything via a hub. But just to be sure, let's check once a day.
// This also lets us update our subscription to the hub, and add or replace hubs in case it
// changed.
if($contact['subhub'])
$contact['priority'] = 3;
$t = $contact['last-update'];
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;
}
if(! $update)
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-09-10 09:42:53 +02:00
if($debugging)
2010-10-13 02:11:06 +02:00
echo "IMPORTER: {$importer['name']}\n";
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
2010-09-13 06:25:37 +02:00
$idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
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 ;
2010-07-19 05:49:54 +02:00
$xml = fetch_url($url);
2010-09-02 09:31:11 +02:00
2010-09-10 09:42:53 +02:00
if($debugging) {
echo "URL: " . $url . "\n";
echo "XML: " . $xml . "\n";
2010-09-10 09:42:53 +02:00
}
2010-09-02 09:31:11 +02:00
if(! $xml) {
// 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);
2010-07-19 05:49:54 +02:00
continue;
}
2010-09-13 06:25:37 +02:00
2010-07-19 05:49:54 +02:00
$res = simplexml_load_string($xml);
if(intval($res->status) == 1) {
// we may not be friends anymore. Will keep trying for one month.
2010-09-09 05:14:17 +02:00
mark_for_death($contact);
}
else {
if($contact['term-date'] != '0000-00-00 00:00:00')
unmark_for_death($contact);
}
2010-09-09 05:14:17 +02:00
if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
2010-07-19 05:49:54 +02:00
continue;
$postvars = array();
$sent_dfrn_id = hex2bin($res->dfrn_id);
2010-09-02 09:31:11 +02:00
$challenge = hex2bin($res->challenge);
$final_dfrn_id = '';
2010-09-02 09:31:11 +02:00
2010-09-09 05:14:17 +02:00
if(($contact['duplex']) && strlen($contact['prvkey'])) {
2010-09-02 09:31:11 +02:00
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']);
}
$final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
2010-09-13 06:25:37 +02:00
if(strpos($final_dfrn_id,':') == 1)
$final_dfrn_id = substr($final_dfrn_id,2);
if($final_dfrn_id != $orig_id) {
// did not decode properly - cannot trust this site
continue;
}
2010-09-09 05:14:17 +02:00
$postvars['dfrn_id'] = $idtosend;
$postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
2010-09-13 06:25:37 +02:00
2010-07-19 05:49:54 +02:00
$xml = post_url($contact['poll'],$postvars);
2010-09-10 09:42:53 +02:00
if($debugging) {
2010-10-13 02:11:06 +02:00
echo "XML response:" . $xml . "\n";
echo "Length:" . strlen($xml) . "\n";
2010-09-10 09:42:53 +02:00
}
2010-07-19 05:49:54 +02:00
if(! strlen($xml))
continue;
consume_feed($xml,$importer,$contact,$hub);
2010-10-06 06:05:37 +02:00
if((strlen($hub)) && ($contact['rel'] == REL_BUD) && ($contact['priority'] == 0)) {
$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'])
);
}
killme();