2 require_once("include/datetime.php");
3 require_once('include/bbcode.php');
6 function ping_init(&$a) {
8 header("Content-type: text/xml");
10 echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
13 $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
17 // Different login session than the page that is calling us.
19 if(intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
20 echo '<invalid>1</invalid></result>';
24 $firehose = intval(get_pconfig(local_user(),'system','notify_full'));
26 // Are the nofications calles from the regular process or via the friendica app?
27 $regularnotifications = (intval($_GET['uid']) AND intval($_GET['_']));
29 $z = ping_get_notifications(local_user(), $regularnotifications);
30 $sysnotify = 0; // we will update this in a moment
42 $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`,
43 `item`.`contact-id`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`,
44 `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
45 FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
46 WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
47 `item`.`deleted` = 0 AND `item`.`uid` = %d AND `pitem`.`parent` != 0
48 ORDER BY `item`.`created` DESC",
54 $arr = array('items' => $r);
55 call_hooks('network_ping', $arr);
66 $obj = parse_xml_string($xmlhead.$it['object']);
67 $it['tname'] = $obj->content;
73 case ACTIVITY_DISLIKE:
77 $obj = parse_xml_string($xmlhead.$it['object']);
78 $it['fname'] = $obj->title;
82 if ($it['parent']!=$it['id']) {
92 $intros1 = q("SELECT `intro`.`id`, `intro`.`datetime`,
93 `fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
94 FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
95 WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid`!=0",
98 $intros2 = q("SELECT `intro`.`id`, `intro`.`datetime`,
99 `contact`.`name`, `contact`.`url`, `contact`.`photo`
100 FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
101 WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id`!=0",
105 $intro = count($intros1) + count($intros2);
106 $intros = $intros1+$intros2;
110 $myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ;
111 $mails = q("SELECT * FROM `mail`
112 WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
113 intval(local_user()),
116 $mail = count($mails);
118 if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){
119 $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");
121 $register = $regs[0]['total'];
127 $all_events_today = 0;
131 $birthdays_today = 0;
134 $ev = q("SELECT count(`event`.`id`) as total, type, start, adjust FROM `event`
135 WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
136 ORDER BY `start` ASC ",
137 intval(local_user()),
138 dbesc(datetime_convert('UTC','UTC','now + 7 days')),
139 dbesc(datetime_convert('UTC','UTC','now'))
142 if($ev && count($ev)) {
143 $all_events = intval($ev[0]['total']);
146 $str_now = datetime_convert('UTC',$a->timezone,'now','Y-m-d');
149 if($x['type'] === 'birthday') {
156 if(datetime_convert('UTC',((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'],'Y-m-d') === $str_now) {
157 $all_events_today ++;
169 function xmlize($href, $name, $url, $photo, $date, $seen, $message){
170 require_once("mod/proxy.php");
171 $photo = proxy_url($photo);
172 $data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message);
173 call_hooks('ping_xmlize', $data);
174 $notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
175 return sprintf ( $notsxml,
176 xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)
180 echo "<intro>$intro</intro>
183 <home>$home</home>\r\n";
184 if ($register!=0) echo "<register>$register</register>";
186 echo "<all-events>$all_events</all-events>
187 <all-events-today>$all_events_today</all-events-today>
188 <events>$events</events>
189 <events-today>$events_today</events-today>
190 <birthdays>$birthdays</birthdays>
191 <birthdays-today>$birthdays_today</birthdays-today>\r\n";
193 $tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends)+count($posts)+count($tags);
196 echo ' <notif count="'.$tot.'">';
199 if(count($z) && (! $sysnotify)) {
206 echo ' <notif count="'. ($sysnotify + $intro + $mail + $register) .'">';
209 foreach ($intros as $i) {
210 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"));
214 foreach ($mails as $i) {
215 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"));
219 foreach ($regs as $i) {
220 echo xmlize($a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen', "→ ".t("{0} requested registration"));
226 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'])));
233 foreach ($intros as $i) {
234 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") );
238 foreach ($mails as $i) {
239 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") );
243 foreach ($regs as $i) {
244 echo xmlize( $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen',t("{0} requested registration") );
248 if (count($comments)){
249 foreach ($comments as $i) {
250 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'] ) );
254 foreach ($likes as $i) {
255 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'] ) );
258 if (count($dislikes)){
259 foreach ($dislikes as $i) {
260 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'] ) );
263 if (count($friends)){
264 foreach ($friends as $i) {
265 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'] ) );
269 foreach ($posts as $i) {
270 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") ) );
274 foreach ($tags as $i) {
275 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'] ) );
280 foreach ($cit as $i) {
281 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") );
290 if(x($_SESSION,'sysmsg')){
291 foreach ($_SESSION['sysmsg'] as $m){
292 echo "<notice>".xmlify($m)."</notice>";
294 unset($_SESSION['sysmsg']);
296 if(x($_SESSION,'sysmsg_info')){
297 foreach ($_SESSION['sysmsg_info'] as $m){
298 echo "<info>".xmlify($m)."</info>";
300 unset($_SESSION['sysmsg_info']);
310 function ping_get_notifications($uid, $regularnotifications) {
320 $r = q("SELECT `notify`.*, `item`.`visible`, `item`.`spam`, `item`.`deleted`
321 FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid`
322 WHERE `notify`.`uid` = %d AND `notify`.`msg` != ''
323 AND NOT (`notify`.`type` IN (%d, %d))
324 AND $seensql `notify`.`seen` ORDER BY `notify`.`date` $order LIMIT %d, 50",
326 intval(NOTIFY_INTRO),
331 if (!$r AND !$seen) {
341 foreach ($r AS $notification) {
342 if (is_null($notification["visible"]))
343 $notification["visible"] = true;
345 if (is_null($notification["spam"]))
346 $notification["spam"] = 0;
348 if (is_null($notification["deleted"]))
349 $notification["deleted"] = 0;
351 $notification["msg"] = strip_tags(bbcode($notification["msg"]));
352 $notification["name"] = strip_tags(bbcode($notification["name"]));
354 // Replace the name with {0} but ensure to make that only once
355 // The {0} is used later and prints the name in bold.
356 // But don't do it for the android app.
357 $pos = strpos($notification["msg"],$notification['name']);
358 if (($pos !== false) AND $regularnotifications)
359 $notification["msg"] = substr_replace($notification["msg"],"{0}",$pos,strlen($notification["name"]));
361 $notification["msg"] = str_replace("{0}", $notification["name"], $notification["msg"]);
363 if ($notification["visible"] AND !$notification["spam"] AND
364 !$notification["deleted"] AND !is_array($result[$notification["parent"]]))
365 $result[$notification["parent"]] = $notification;
368 } while ((count($result) < 50) AND !$quit);