friendica/include/notifier.php

159 lines
3.3 KiB
PHP
Raw Normal View History

2010-07-07 08:08:38 +02:00
<?php
require_once("boot.php");
2010-07-07 08:08:38 +02:00
$a = new App;
2010-07-07 08:08:38 +02:00
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
2010-07-07 08:08:38 +02:00
unset($db_host, $db_user, $db_pass, $db_data);
require_once("session.php");
require_once("datetime.php");
2010-07-07 08:08:38 +02:00
// FIXME - generalise for other content, probably create a notify queue in
// the db with type and recipient list
2010-07-09 02:49:41 +02:00
if($argc < 3)
exit;
2010-07-07 08:08:38 +02:00
2010-07-09 02:49:41 +02:00
$baseurl = trim(hex2bin($argv[1]));
$cmd = $argv[2];
switch($cmd) {
default:
$item_id = intval($argv[3]);
if(! $item_id)
killme();
break;
}
2010-07-08 09:18:23 +02:00
$is_parent = false;
$recipients = array();
2010-07-08 09:18:23 +02:00
2010-07-09 02:49:41 +02:00
// fetch requested item
2010-07-08 09:18:23 +02:00
$r = q("SELECT `item`.*, `contact`.*,`item`.`id` AS `item_id` FROM `item` LEFT JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
WHERE `item`.`id` = %d LIMIT 1",
intval($item_id)
);
if(! count($r))
killme();
2010-07-07 08:08:38 +02:00
2010-07-08 09:18:23 +02:00
$item = $r[0];
$recipients[] = $item['contact-id'];
2010-07-08 09:18:23 +02:00
if($item['parent'] == $item['id']) {
$is_parent = true;
}
else {
$r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
intval($item['parent'])
);
if(count($r))
$parent = $r[0];
}
if(is_array($parent))
$recipients[] = $parent['contact-id'];
2010-07-08 09:18:23 +02:00
$r = q("SELECT `contact-id` FROM `item` WHERE `hash` = '%s' AND `id` != %d AND `id` != %d",
dbesc($item['hash']),
intval($item['id']),
intval($item['parent'])
);
if(count($r)) {
foreach($r as $rr) {
if($rr['contact-id'] != $item['contact-id'])
$recipients[] = $rr['contact-id'];
2010-07-08 09:18:23 +02:00
}
}
$tpl = file_get_contents('view/atomic.tpl');
// FIXME should dump the entire conversation
2010-07-08 09:18:23 +02:00
$atom = replace_macros($tpl, array(
'$feed_id' => xmlify($baseurl),
'$feed_title' => xmlify('Wall Item'),
'$feed_updated' => xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00' ,'Y-m-d\Th:i:s\Z')) ,
'$name' => xmlify($item['name']),
'$profile_page' => xmlify($item['url']),
'$thumb' => xmlify($item['thumb']),
'$item_id' => xmlify($item['hash'] . '-' . $item['id']),
'$title' => xmlify(''),
'$link' => xmlify($baseurl . '/item/' . $item['id']),
'$updated' => xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00' ,'Y-m-d\Th:i:s\Z')),
'$summary' => xmlify(''),
'$content' => xmlify($item['body'])
2010-07-08 09:18:23 +02:00
));
print_r($atom);
2010-07-07 08:08:38 +02:00
// atomify
// expand list of recipients
dbg(3);
2010-07-07 08:08:38 +02:00
$recipients = array_unique($recipients);
print_r($recipients);
$recip_str = implode(', ', $recipients);
2010-07-07 08:08:38 +02:00
$r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) ",
dbesc($recip_str)
);
if(! count($r))
killme();
2010-07-07 08:08:38 +02:00
// delivery loop
2010-07-07 08:08:38 +02:00
foreach($r as $rr) {
if($rr['self'])
continue;
2010-07-07 08:08:38 +02:00
if(! strlen($rr['dfrn-id']))
continue;
$url = $rr['notify'] . '?dfrn_id=' . $rr['dfrn-id'];
print_r($url);
$xml = fetch_url($url);
echo $xml;
2010-07-07 08:08:38 +02:00
print_r($xml);
if(! $xml)
continue;
$res = simplexml_load_string($xml);
print_r($res);
var_dump($res);
if((intval($res->status) != 0) || (! strlen($res->challenge)) || ($res->dfrn_id != $rr['dfrn-id']))
continue;
$postvars = array();
$postvars['dfrn_id'] = $rr['dfrn-id'];
$challenge = hex2bin($res->challenge);
echo "dfrn-id:" . $res->dfrn_id . "\r\n";
echo "challenge:" . $res->challenge . "\r\n";
echo "pubkey:" . $rr['pubkey'] . "\r\n";
openssl_public_decrypt($challenge,$postvars['challenge'],$rr['pubkey']);
$postvars['data'] = $atom;
print_r($postvars);
$xml = fetch_url($url,$postvars);
}
killme();