friendica/include/notifier.php

94 lines
2.0 KiB
PHP
Raw Normal View History

2010-07-07 08:08:38 +02:00
<?php
echo getcwd();
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
if(($argc != 2) || (! intval($argv[1])))
exit;
2010-07-07 08:08:38 +02:00
2010-07-08 09:18:23 +02:00
$is_parent = false;
$item_id = $argv[1];
$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];
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];
}
$commenters = array();
$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'])
$commenters[] = $rr['contact-id'];
}
}
$tpl = file_get_contents('view/atomic.tpl');
$atom = replace_macros($tpl, array(
'$feed_id' => $a->get_baseurl(),
'$feed_title' => 'Wall Item',
'$feed_updated' => datetime_convert('UTC','UTC',$item['edited'] . '+00:00' ,'Y-m-d\Th:i:s\Z') ,
'$name' => $item['name'],
'$profile_page' => $item['url'],
'$thumb' => $item['thumb'],
'$item_id' => $item['hash'] . '-' . $item['id'],
'$title' => '',
'$link' => $a->get_baseurl() . '/item/' . $item['id'],
'$updated' => datetime_convert('UTC','UTC',$item['edited'] . '+00:00' ,'Y-m-d\Th:i:s\Z'),
'$summary' => '',
'$content' => $item['body']
));
print_r($atom);
2010-07-07 08:08:38 +02:00
// atomify
// expand list of recipients
// grab the contact records
// foreach recipient
// if no dfrn-id continue
// fetch_url dfrn-notify
// decrypt challenge
// post result
// continue
killme();