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