add more notification messages
This commit is contained in:
parent
d5567eb297
commit
89c5733ca5
106
mod/ping.php
106
mod/ping.php
|
@ -8,17 +8,63 @@ function ping_init(&$a) {
|
||||||
xml_status(0);
|
xml_status(0);
|
||||||
|
|
||||||
|
|
||||||
$r = q("SELECT COUNT(*) AS `total` FROM `item`
|
$comments = array();
|
||||||
WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d AND `wall` = 0 ",
|
$likes = array();
|
||||||
intval(local_user())
|
$dislikes = array();
|
||||||
);
|
$friends = array();
|
||||||
$network = $r[0]['total'];
|
|
||||||
|
|
||||||
$r = q("SELECT COUNT(*) AS `total` FROM `item`
|
$r = q("SELECT `item`.`parent`, `item`.`verb`, `item`.`author-name`,
|
||||||
WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d AND `wall` = 1 ",
|
`item`.`author-link`, `item`.`author-avatar`, `item`.`created`,
|
||||||
|
`pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
|
||||||
|
FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
|
||||||
|
WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
|
||||||
|
`item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 0",
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
);
|
);
|
||||||
$home = $r[0]['total'];
|
|
||||||
|
$network = count($r);
|
||||||
|
foreach ($r as $it) {
|
||||||
|
switch($it['verb']){
|
||||||
|
case 'http://activitystrea.ms/schema/1.0/like':
|
||||||
|
$likes[] = $it;
|
||||||
|
break;
|
||||||
|
case 'http://activitystrea.ms/schema/1.0/dislike':
|
||||||
|
$dislikes[] = $it;
|
||||||
|
break;
|
||||||
|
case 'http://activitystrea.ms/schema/1.0/make-friend':
|
||||||
|
$friends[] = $it;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$comments[] = $it;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$r = q("SELECT `item`.`parent`, `item`.`verb`, `item`.`author-name`,
|
||||||
|
`item`.`author-link`, `item`.`author-avatar`, `item`.`created`,
|
||||||
|
`pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
|
||||||
|
FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
|
||||||
|
WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
|
||||||
|
`item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 1",
|
||||||
|
intval(local_user())
|
||||||
|
);
|
||||||
|
$home = count($r);
|
||||||
|
foreach ($r as $it) {
|
||||||
|
switch($it['verb']){
|
||||||
|
case 'http://activitystrea.ms/schema/1.0/like':
|
||||||
|
$likes[] = $it;
|
||||||
|
break;
|
||||||
|
case 'http://activitystrea.ms/schema/1.0/dislike':
|
||||||
|
$dislikes[] = $it;
|
||||||
|
break;
|
||||||
|
case 'http://activitystrea.ms/schema/1.0/make-friend':
|
||||||
|
$friends[] = $it;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$comments[] = $it;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$intros1 = q("SELECT COUNT(`intro`.`id`) AS `total`, `intro`.`id`, `intro`.`datetime`,
|
$intros1 = q("SELECT COUNT(`intro`.`id`) AS `total`, `intro`.`id`, `intro`.`datetime`,
|
||||||
`fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
|
`fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
|
||||||
|
@ -56,9 +102,12 @@ function ping_init(&$a) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function xmlize($href, $name, $url, $photo, $date, $message){
|
||||||
$notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s">%s</note>';
|
$notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s">%s</note>';
|
||||||
|
return sprintf ( $notsxml,
|
||||||
|
$href, $name, $url, $photo, $date, $message
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
header("Content-type: text/xml");
|
header("Content-type: text/xml");
|
||||||
echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
|
echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
|
||||||
|
@ -69,26 +118,43 @@ function ping_init(&$a) {
|
||||||
<home>$home</home>";
|
<home>$home</home>";
|
||||||
if ($register!=0) echo "<register>$register</register>";
|
if ($register!=0) echo "<register>$register</register>";
|
||||||
|
|
||||||
echo ' <notif count="'.($mail+$intro+$register).'">';
|
$tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends);
|
||||||
|
|
||||||
|
echo ' <notif count="'.$tot.'">';
|
||||||
if ($intro>0){
|
if ($intro>0){
|
||||||
foreach ($intros as $i) {
|
foreach ($intros as $i) {
|
||||||
echo sprintf ( $notsxml,
|
echo xmlize( $a->get_baseurl().'/notifications/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), t("{0} wants to be your friend") );
|
||||||
$a->get_baseurl().'/notifications/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), t("{0} wants to be your friend")
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
if ($mail>0){
|
if ($mail>0){
|
||||||
foreach ($mails as $i) {
|
foreach ($mails as $i) {
|
||||||
echo sprintf ( $notsxml,
|
echo xmlize( $a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), t("{0} sent you a message") );
|
||||||
$a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), t("{0} sent you a message")
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
if ($register>0){
|
if ($register>0){
|
||||||
foreach ($regs as $i) {
|
foreach ($regs as $i) {
|
||||||
echo sprintf ( $notsxml,
|
echo xmlize( $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), t("{0} requested registration") );
|
||||||
$a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), t("{0} requested registration")
|
};
|
||||||
);
|
}
|
||||||
|
|
||||||
|
if (count($comments)){
|
||||||
|
foreach ($comments as $i) {
|
||||||
|
echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} commented %s's post"), $i['pname'] ) );
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (count($likes)){
|
||||||
|
foreach ($likes as $i) {
|
||||||
|
echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} like %s's post"), $i['pname'] ) );
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (count($dislikes)){
|
||||||
|
foreach ($dislikes as $i) {
|
||||||
|
echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} dislike %s's post"), $i['pname'] ) );
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (count($friends)){
|
||||||
|
foreach ($friends as $i) {
|
||||||
|
echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} is now friend with %s"), $i['pname'] ) );
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue