2010-07-19 03:49:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
2010-09-02 07:31:11 +00:00
|
|
|
require_once('boot.php');
|
2010-07-19 03:49:54 +00:00
|
|
|
|
2010-09-02 07:31:11 +00:00
|
|
|
$a = new App;
|
2010-07-19 03:49:54 +00:00
|
|
|
|
2010-09-02 07:31:11 +00: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 03:47:40 +00:00
|
|
|
|
2010-09-02 07:31:11 +00:00
|
|
|
require_once('session.php');
|
|
|
|
require_once('datetime.php');
|
|
|
|
require_once('simplepie/simplepie.inc');
|
|
|
|
require_once('include/items.php');
|
2010-08-17 03:47:40 +00:00
|
|
|
|
2010-09-09 03:14:17 +00:00
|
|
|
require_once('include/Contact.php');
|
|
|
|
|
2010-09-26 23:30:21 +00:00
|
|
|
$debugging = get_config('system','debugging');
|
|
|
|
|
2010-08-17 03:47:40 +00:00
|
|
|
$a->set_baseurl(get_config('system','url'));
|
2010-07-19 03:49:54 +00:00
|
|
|
|
2010-08-17 05:05:04 +00:00
|
|
|
$contacts = q("SELECT * FROM `contact`
|
2010-10-15 11:20:42 +00:00
|
|
|
WHERE `network` = 'dfrn' AND ( `dfrn-id` != '' OR (`issued-id` != '' AND `duplex` = 1))
|
2010-10-11 02:42:07 +00:00
|
|
|
AND `self` = 0 AND `blocked` = 0 AND `readonly` = 0 ORDER BY RAND()");
|
2010-07-19 03:49:54 +00:00
|
|
|
|
|
|
|
if(! count($contacts))
|
|
|
|
killme();
|
|
|
|
|
|
|
|
foreach($contacts as $contact) {
|
|
|
|
|
2010-10-11 04:08:25 +00:00
|
|
|
if($contact['priority'] || $contact['subhub']) {
|
2010-08-01 12:46:51 +00:00
|
|
|
|
|
|
|
$update = false;
|
2010-10-15 11:58:13 +00:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2010-08-01 12:46:51 +00:00
|
|
|
$t = $contact['last-update'];
|
|
|
|
|
|
|
|
switch ($contact['priority']) {
|
|
|
|
case 5:
|
2010-10-01 02:41:22 +00:00
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
|
2010-08-01 12:46:51 +00:00
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 4:
|
2010-10-01 02:41:22 +00:00
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
|
2010-08-01 12:46:51 +00:00
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 3:
|
2010-10-01 02:41:22 +00:00
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
|
2010-08-01 12:46:51 +00:00
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 2:
|
2010-10-01 02:41:22 +00:00
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
|
2010-08-01 12:46:51 +00:00
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
default:
|
2010-10-01 02:41:22 +00:00
|
|
|
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
|
2010-08-01 12:46:51 +00:00
|
|
|
$update = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(! $update)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-07-19 03:49:54 +00: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 07:42:53 +00:00
|
|
|
if($debugging)
|
2010-10-13 00:11:06 +00:00
|
|
|
echo "IMPORTER: {$importer['name']}\n";
|
2010-09-09 12:25:01 +00:00
|
|
|
|
2010-09-27 00:24:20 +00:00
|
|
|
$last_update = (($contact['last-update'] === '0000-00-00 00:00:00')
|
2010-10-13 00:11:06 +00:00
|
|
|
? datetime_convert('UTC','UTC','now - 30 days', ATOM_TIME)
|
|
|
|
: datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME)
|
|
|
|
);
|
2010-07-19 03:49:54 +00:00
|
|
|
|
2010-09-13 04:25:37 +00: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;
|
|
|
|
|
2010-10-13 03:29:04 +00:00
|
|
|
$url = $contact['poll'] . '?dfrn_id=' . $idtosend
|
|
|
|
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
|
|
|
|
. '&type=data&last_update=' . $last_update ;
|
|
|
|
|
2010-07-19 03:49:54 +00:00
|
|
|
$xml = fetch_url($url);
|
2010-09-02 07:31:11 +00:00
|
|
|
|
2010-09-10 07:42:53 +00:00
|
|
|
if($debugging) {
|
2010-10-13 03:29:04 +00:00
|
|
|
echo "URL: " . $url . "\n";
|
|
|
|
echo "XML: " . $xml . "\n";
|
2010-09-10 07:42:53 +00:00
|
|
|
}
|
2010-09-02 07:31:11 +00:00
|
|
|
|
2010-09-21 02:34:44 +00: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 03:49:54 +00:00
|
|
|
continue;
|
2010-09-21 02:34:44 +00:00
|
|
|
}
|
2010-09-13 04:25:37 +00:00
|
|
|
|
|
|
|
|
2010-07-19 03:49:54 +00:00
|
|
|
$res = simplexml_load_string($xml);
|
|
|
|
|
2010-09-21 02:34:44 +00:00
|
|
|
if(intval($res->status) == 1) {
|
|
|
|
// we may not be friends anymore. Will keep trying for one month.
|
2010-09-09 03:14:17 +00:00
|
|
|
mark_for_death($contact);
|
2010-09-21 02:34:44 +00:00
|
|
|
}
|
2010-09-17 23:50:30 +00:00
|
|
|
else {
|
|
|
|
if($contact['term-date'] != '0000-00-00 00:00:00')
|
|
|
|
unmark_for_death($contact);
|
|
|
|
}
|
2010-09-09 03:14:17 +00:00
|
|
|
|
2010-08-05 09:57:03 +00:00
|
|
|
if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
|
2010-07-19 03:49:54 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
$postvars = array();
|
|
|
|
|
2010-08-05 09:57:03 +00:00
|
|
|
$sent_dfrn_id = hex2bin($res->dfrn_id);
|
2010-09-02 07:31:11 +00:00
|
|
|
$challenge = hex2bin($res->challenge);
|
2010-08-05 09:57:03 +00:00
|
|
|
|
|
|
|
$final_dfrn_id = '';
|
2010-09-02 07:31:11 +00:00
|
|
|
|
2010-09-09 03:14:17 +00:00
|
|
|
if(($contact['duplex']) && strlen($contact['prvkey'])) {
|
2010-09-02 07:31:11 +00: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']);
|
|
|
|
}
|
|
|
|
|
2010-08-05 09:57:03 +00:00
|
|
|
$final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
|
2010-09-13 04:25:37 +00:00
|
|
|
|
|
|
|
if(strpos($final_dfrn_id,':') == 1)
|
|
|
|
$final_dfrn_id = substr($final_dfrn_id,2);
|
|
|
|
|
|
|
|
if($final_dfrn_id != $orig_id) {
|
|
|
|
|
2010-08-05 09:57:03 +00:00
|
|
|
// did not decode properly - cannot trust this site
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-09-09 03:14:17 +00:00
|
|
|
$postvars['dfrn_id'] = $idtosend;
|
2010-10-13 03:29:04 +00:00
|
|
|
$postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
|
2010-09-13 04:25:37 +00:00
|
|
|
|
2010-07-19 03:49:54 +00:00
|
|
|
$xml = post_url($contact['poll'],$postvars);
|
|
|
|
|
2010-09-10 07:42:53 +00:00
|
|
|
if($debugging) {
|
2010-10-13 00:11:06 +00:00
|
|
|
echo "XML response:" . $xml . "\n";
|
|
|
|
echo "Length:" . strlen($xml) . "\n";
|
2010-09-10 07:42:53 +00:00
|
|
|
}
|
2010-07-19 03:49:54 +00:00
|
|
|
|
2010-09-21 02:34:44 +00:00
|
|
|
if(! strlen($xml))
|
2010-08-01 12:46:51 +00:00
|
|
|
continue;
|
|
|
|
|
2010-08-09 04:03:08 +00:00
|
|
|
|
2010-10-01 04:38:45 +00:00
|
|
|
consume_feed($xml,$importer,$contact,$hub);
|
|
|
|
|
|
|
|
|
2010-10-06 04:05:37 +00:00
|
|
|
if((strlen($hub)) && ($contact['rel'] == REL_BUD) && ($contact['priority'] == 0)) {
|
2010-10-15 11:20:42 +00:00
|
|
|
$hubs = explode(',', $hub);
|
|
|
|
if(count($hubs)) {
|
|
|
|
foreach($hubs as $h) {
|
|
|
|
$h = trim($h);
|
|
|
|
if(! strlen($h))
|
|
|
|
continue;
|
|
|
|
subscribe_to_hub($h,$importer,$contact);
|
|
|
|
}
|
|
|
|
}
|
2010-10-01 04:38:45 +00:00
|
|
|
}
|
|
|
|
|
2010-09-10 07:42:53 +00:00
|
|
|
|
2010-07-19 03:49:54 +00:00
|
|
|
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
intval($contact['id'])
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
killme();
|
|
|
|
|
|
|
|
|
|
|
|
|