mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
getting deeper into notifications
This commit is contained in:
parent
4b4d680dc4
commit
e98aaa3cbd
3 changed files with 61 additions and 12 deletions
|
@ -16,12 +16,61 @@ require_once("datetime.php");
|
|||
if(($argc != 2) || (! intval($argv[1])))
|
||||
exit;
|
||||
|
||||
$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();
|
||||
|
||||
// fetch item
|
||||
$item = $r[0];
|
||||
|
||||
// if not parent, fetch it too
|
||||
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);
|
||||
// atomify
|
||||
|
||||
// expand list of recipients
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue