2 require_once("include/datetime.php");
5 function ping_init(&$a) {
7 header("Content-type: text/xml");
9 echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
12 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
16 // Different login session than the page that is calling us.
18 if(intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
19 echo '<invalid>1</invalid></result>';
23 $firehose = intval(get_pconfig(local_user(),'system','notify_full'));
25 $t = q("select count(*) as total from notify where uid = %d and seen = 0",
28 if($t && intval($t[0]['total']) > 49) {
29 $z = q("select * from notify where uid = %d
30 and seen = 0 order by date desc limit 0, 50",
33 $sysnotify = $t[0]['total'];
36 $z1 = q("select * from notify where uid = %d
37 and seen = 0 order by date desc limit 0, 50",
41 $z2 = q("select * from notify where uid = %d
42 and seen = 1 order by date desc limit 0, %d",
44 intval(50 - intval($t[0]['total']))
46 $z = array_merge($z1,$z2);
47 $sysnotify = 0; // we will update this in a moment
62 $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`,
63 `item`.`contact-id`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`,
64 `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
65 FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
66 WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
67 `item`.`deleted` = 0 AND `item`.`uid` = %d
68 ORDER BY `item`.`created` DESC",
74 $arr = array('items' => $r);
75 call_hooks('network_ping', $arr);
86 $obj = parse_xml_string($xmlhead.$it['object']);
87 $it['tname'] = $obj->content;
93 case ACTIVITY_DISLIKE:
97 $obj = parse_xml_string($xmlhead.$it['object']);
98 $it['fname'] = $obj->title;
102 if ($it['parent']!=$it['id']) {
112 $intros1 = q("SELECT `intro`.`id`, `intro`.`datetime`,
113 `fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
114 FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
115 WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid`!=0",
118 $intros2 = q("SELECT `intro`.`id`, `intro`.`datetime`,
119 `contact`.`name`, `contact`.`url`, `contact`.`photo`
120 FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
121 WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id`!=0",
125 $intro = count($intros1) + count($intros2);
126 $intros = $intros1+$intros2;
130 $myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ;
131 $mails = q("SELECT *, COUNT(*) AS `total` FROM `mail`
132 WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
133 intval(local_user()),
137 $mail = $mails[0]['total'];
139 if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){
140 $regs = q("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) as `total` FROM `contact` RIGHT JOIN `register` ON `register`.`uid`=`contact`.`uid` WHERE `contact`.`self`=1");
142 $register = $regs[0]['total'];
148 $all_events_today = 0;
152 $birthdays_today = 0;
155 $ev = q("SELECT count(`event`.`id`) as total, type, start, adjust FROM `event`
156 WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
157 ORDER BY `start` ASC ",
158 intval(local_user()),
159 dbesc(datetime_convert('UTC','UTC','now + 7 days')),
160 dbesc(datetime_convert('UTC','UTC','now'))
163 if($ev && count($ev)) {
164 $all_events = intval($ev[0]['total']);
167 $str_now = datetime_convert('UTC',$a->timezone,'now','Y-m-d');
170 if($x['type'] === 'birthday') {
177 if(datetime_convert('UTC',((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'],'Y-m-d') === $str_now) {
178 $all_events_today ++;
190 function xmlize($href, $name, $url, $photo, $date, $seen, $message){
191 $data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message);
192 call_hooks('ping_xmlize', $data);
193 $notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
194 return sprintf ( $notsxml,
195 xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)
199 echo "<intro>$intro</intro>
202 <home>$home</home>\r\n";
203 if ($register!=0) echo "<register>$register</register>";
205 echo "<all-events>$all_events</all-events>
206 <all-events-today>$all_events_today</all-events-today>
207 <events>$events</events>
208 <events-today>$events_today</events-today>
209 <birthdays>$birthdays</birthdays>
210 <birthdays-today>$birthdays_today</birthdays-today>\r\n";
212 $tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends)+count($posts)+count($tags);
214 require_once('include/bbcode.php');
217 echo ' <notif count="'.$tot.'">';
220 if(count($z) && (! $sysnotify)) {
227 echo ' <notif count="'. $sysnotify .'">';
230 echo xmlize($a->get_baseurl() . '/notify/view/' . $zz['id'], $zz['name'],$zz['url'],$zz['photo'],relative_date($zz['date']), ($zz['seen'] ? 'notify-seen' : 'notify-unseen'), ($zz['seen'] ? '' : '→ ') .strip_tags(bbcode($zz['msg'])));
237 foreach ($intros as $i) {
238 echo xmlize( $a->get_baseurl().'/notifications/intros/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), 'notify-unseen',t("{0} wants to be your friend") );
242 foreach ($mails as $i) {
243 echo xmlize( $a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), 'notify-unseen',t("{0} sent you a message") );
247 foreach ($regs as $i) {
248 echo xmlize( $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen',t("{0} requested registration") );
252 if (count($comments)){
253 foreach ($comments as $i) {
254 echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} commented %s's post"), $i['pname'] ) );
258 foreach ($likes as $i) {
259 echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} liked %s's post"), $i['pname'] ) );
262 if (count($dislikes)){
263 foreach ($dislikes as $i) {
264 echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} disliked %s's post"), $i['pname'] ) );
267 if (count($friends)){
268 foreach ($friends as $i) {
269 echo xmlize($a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'],$i['author-name'],$i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} is now friends with %s"), $i['fname'] ) );
273 foreach ($posts as $i) {
274 echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} posted") ) );
278 foreach ($tags as $i) {
279 echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',sprintf( t("{0} tagged %s's post with #%s"), $i['pname'], $i['tname'] ) );
284 foreach ($cit as $i) {
285 echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), 'notify-unseen',t("{0} mentioned you in a post") );
294 if(x($_SESSION,'sysmsg')){
295 foreach ($_SESSION['sysmsg'] as $m){
296 echo "<notice>".xmlify($m)."</notice>";
298 unset($_SESSION['sysmsg']);
300 if(x($_SESSION,'sysmsg_info')){
301 foreach ($_SESSION['sysmsg_info'] as $m){
302 echo "<info>".xmlify($m)."</info>";
304 unset($_SESSION['sysmsg_info']);