2 require_once("include/datetime.php");
3 require_once('include/bbcode.php');
4 require_once('include/ForumManager.php');
5 require_once('include/group.php');
6 require_once('mod/proxy.php');
7 require_once('include/xml.php');
8 require_once('include/cache.php');
11 * @brief Outputs the counts and the lists of various notifications
13 * The output format can be controlled via the GET parameter 'format'. It can be
14 * - xml (deprecated legacy default)
15 * - json (outputs JSONP with the 'callback' GET parameter)
17 * Expected JSON structure:
26 * "all-events-today": 0,
30 * "birthdays-today": 0,
34 * "notifications": [ ],
42 * @param App $a The Friendica App instance
44 function ping_init(App $a)
48 if (isset($_GET['format']) && $_GET['format'] == 'json') {
60 $notifications = array();
68 $groups_unseen = array();
69 $forums_unseen = array();
72 $all_events_today = 0;
79 $data['intro'] = $intro_count;
80 $data['mail'] = $mail_count;
81 $data['net'] = $network_count;
82 $data['home'] = $home_count;
83 $data['register'] = $register_count;
85 $data['all-events'] = $all_events;
86 $data['all-events-today'] = $all_events_today;
87 $data['events'] = $events;
88 $data['events-today'] = $events_today;
89 $data['birthdays'] = $birthdays;
90 $data['birthdays-today'] = $birthdays_today;
93 // Different login session than the page that is calling us.
94 if (intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
96 $data = array('result' => array('invalid' => 1));
98 if ($format == 'json') {
99 if (isset($_GET['callback'])) {
101 header("Content-type: application/javascript");
102 echo $_GET['callback'] . '(' . json_encode($data) . ')';
104 header("Content-type: application/json");
105 echo json_encode($data);
108 header("Content-type: text/xml");
109 echo xml::from_array($data, $xml);
114 $notifs = ping_get_notifications(local_user());
116 $items_unseen = qu("SELECT `item`.`id`, `item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`,
117 `item`.`contact-id`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`,
118 `pitem`.`author-name` AS `pname`, `pitem`.`author-link` AS `plink`
119 FROM `item` INNER JOIN `item` AS `pitem` ON `pitem`.`id` = `item`.`parent`
120 WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
121 `item`.`deleted` = 0 AND `item`.`uid` = %d AND `pitem`.`parent` != 0
122 AND `item`.`contact-id` != %d
123 ORDER BY `item`.`created` DESC",
124 intval(local_user()), intval(local_user())
127 if (dbm::is_result($items_unseen)) {
128 $arr = array('items' => $items_unseen);
129 call_hooks('network_ping', $arr);
131 foreach ($items_unseen as $item) {
140 if ($network_count) {
141 if (intval(feature_enabled(local_user(), 'groups'))) {
142 // Find out how unseen network posts are spread across groups
143 $group_counts = groups_count_unseen();
144 if (dbm::is_result($group_counts)) {
145 foreach ($group_counts as $group_count) {
146 if ($group_count['count'] > 0) {
147 $groups_unseen[] = $group_count;
153 if (intval(feature_enabled(local_user(), 'forumlist_widget'))) {
154 $forum_counts = ForumManager::count_unseen_items();
155 if (dbm::is_result($forums_counts)) {
156 foreach ($forums_counts as $forum_count) {
157 if ($forum_count['count'] > 0) {
158 $forums_unseen[] = $forum_count;
165 $intros1 = qu("SELECT `intro`.`id`, `intro`.`datetime`,
166 `fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
167 FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
168 WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid` != 0",
171 $intros2 = qu("SELECT `intro`.`id`, `intro`.`datetime`,
172 `contact`.`name`, `contact`.`url`, `contact`.`photo`
173 FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
174 WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id` != 0",
178 $intro_count = count($intros1) + count($intros2);
179 $intros = $intros1 + $intros2;
181 $myurl = App::get_baseurl() . '/profile/' . $a->user['nickname'] ;
182 $mails = qu("SELECT `id`, `from-name`, `from-url`, `from-photo`, `created` FROM `mail`
183 WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
184 intval(local_user()),
187 $mail_count = count($mails);
189 if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){
190 $regs = qu("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) AS `total`
191 FROM `contact` RIGHT JOIN `register` ON `register`.`uid` = `contact`.`uid`
192 WHERE `contact`.`self` = 1");
194 if (dbm::is_result($regs)) {
195 $register_count = $regs[0]['total'];
199 $cachekey = "ping_init:".local_user();
200 $ev = Cache::get($cachekey);
202 $ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event`
203 WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
204 ORDER BY `start` ASC ",
205 intval(local_user()),
206 dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),
207 dbesc(datetime_convert('UTC', 'UTC', 'now'))
209 if (dbm::is_result($ev)) {
210 Cache::set($cachekey, $ev, CACHE_HOUR);
214 if (dbm::is_result($ev)) {
215 $all_events = intval($ev[0]['total']);
218 $str_now = datetime_convert('UTC', $a->timezone, 'now', 'Y-m-d');
221 if ($x['type'] === 'birthday') {
228 if (datetime_convert('UTC', ((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'], 'Y-m-d') === $str_now) {
229 $all_events_today ++;
239 $data['intro'] = $intro_count;
240 $data['mail'] = $mail_count;
241 $data['net'] = $network_count;
242 $data['home'] = $home_count;
243 $data['register'] = $register_count;
245 $data['all-events'] = $all_events;
246 $data['all-events-today'] = $all_events_today;
247 $data['events'] = $events;
248 $data['events-today'] = $events_today;
249 $data['birthdays'] = $birthdays;
250 $data['birthdays-today'] = $birthdays_today;
252 if (dbm::is_result($notifs)) {
253 foreach ($notifs as $notif) {
254 if ($notif['seen'] == 0) {
260 // merge all notification types in one array
261 if (dbm::is_result($intros)) {
262 foreach ($intros as $intro) {
264 'href' => App::get_baseurl() . '/notifications/intros/' . $intro['id'],
265 'name' => $intro['name'],
266 'url' => $intro['url'],
267 'photo' => $intro['photo'],
268 'date' => $intro['datetime'],
270 'message' => t('{0} wants to be your friend'),
276 if (dbm::is_result($mails)) {
277 foreach ($mails as $mail) {
279 'href' => App::get_baseurl() . '/message/' . $mail['id'],
280 'name' => $mail['from-name'],
281 'url' => $mail['from-url'],
282 'photo' => $mail['from-photo'],
283 'date' => $mail['created'],
285 'message' => t('{0} sent you a message'),
291 if (dbm::is_result($regs)) {
292 foreach ($regs as $reg) {
294 'href' => App::get_baseurl() . '/admin/users/',
295 'name' => $reg['name'],
296 'url' => $reg['url'],
297 'photo' => $reg['micro'],
298 'date' => $reg['created'],
300 'message' => t('{0} requested registration'),
306 // sort notifications by $[]['date']
307 $sort_function = function($a, $b) {
308 $adate = date($a['date']);
309 $bdate = date($b['date']);
310 if ($adate == $bdate) {
313 return ($adate < $bdate) ? 1 : -1;
315 usort($notifs, $sort_function);
317 if (dbm::is_result($notifs)) {
318 // Are the nofications called from the regular process or via the friendica app?
319 $regularnotifications = (intval($_GET['uid']) AND intval($_GET['_']));
321 foreach ($notifs as $notif) {
322 if ($a->is_friendica_app() OR !$regularnotifications) {
323 $notif['message'] = str_replace("{0}", $notif['name'], $notif['message']);
326 $contact = get_contact_details_by_url($notif['url']);
327 if (isset($contact['micro'])) {
328 $notif['photo'] = proxy_url($contact['micro'], false, PROXY_SIZE_MICRO);
330 $notif['photo'] = proxy_url($notif['photo'], false, PROXY_SIZE_MICRO);
333 $local_time = datetime_convert('UTC', date_default_timezone_get(), $notif['date']);
335 $notifications[] = array(
336 'id' => $notif['id'],
337 'href' => $notif['href'],
338 'name' => $notif['name'],
339 'url' => $notif['url'],
340 'photo' => $notif['photo'],
341 'date' => relative_date($notif['date']),
342 'message' => $notif['message'],
343 'seen' => $notif['seen'],
344 'timestamp' => strtotime($local_time)
351 $sysmsgs_info = array();
353 if (x($_SESSION, 'sysmsg')) {
354 $sysmsgs = $_SESSION['sysmsg'];
355 unset($_SESSION['sysmsg']);
358 if (x($_SESSION, 'sysmsg_info')) {
359 $sysmsgs_info = $_SESSION['sysmsg_info'];
360 unset($_SESSION['sysmsg_info']);
363 if ($format == 'json') {
364 $data['groups'] = $groups_unseen;
365 $data['forums'] = $forums_unseen;
366 $data['notify'] = $sysnotify_count + $intro_count + $mail_count + $register_count;
367 $data['notifications'] = $notifications;
368 $data['sysmsgs'] = array(
369 'notice' => $sysmsgs,
370 'info' => $sysmsgs_info
373 $json_payload = json_encode(array("result" => $data));
375 if (isset($_GET['callback'])) {
377 header("Content-type: application/javascript");
378 echo $_GET['callback'] . '(' . $json_payload . ')';
380 header("Content-type: application/json");
384 // Legacy slower XML format output
385 $data = ping_format_xml_data($data, $sysnotify_count, $notifications, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen);
387 header("Content-type: text/xml");
388 echo xml::from_array(array("result" => $data), $xml);
395 * @brief Retrieves the notifications array for the given user ID
397 * @param int $uid User id
398 * @return array Associative array of notifications
400 function ping_get_notifications($uid)
412 $r = qu("SELECT `notify`.*, `item`.`visible`, `item`.`spam`, `item`.`deleted`
413 FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid`
414 WHERE `notify`.`uid` = %d AND `notify`.`msg` != ''
415 AND NOT (`notify`.`type` IN (%d, %d))
416 AND $seensql `notify`.`seen` ORDER BY `notify`.`date` $order LIMIT %d, 50",
418 intval(NOTIFY_INTRO),
423 if (!$r AND !$seen) {
434 foreach ($r AS $notification) {
435 if (is_null($notification["visible"])) {
436 $notification["visible"] = true;
439 if (is_null($notification["spam"])) {
440 $notification["spam"] = 0;
443 if (is_null($notification["deleted"])) {
444 $notification["deleted"] = 0;
447 if ($notification["msg_cache"]) {
448 $notification["name"] = $notification["name_cache"];
449 $notification["message"] = $notification["msg_cache"];
451 $notification["name"] = strip_tags(bbcode($notification["name"]));
452 $notification["message"] = format_notification_message($notification["name"], strip_tags(bbcode($notification["msg"])));
454 q("UPDATE `notify` SET `name_cache` = '%s', `msg_cache` = '%s' WHERE `id` = %d",
455 dbesc($notification["name"]),
456 dbesc($notification["message"]),
457 intval($notification["id"])
461 $notification["href"] = App::get_baseurl() . "/notify/view/" . $notification["id"];
463 if ($notification["visible"] AND !$notification["spam"] AND
464 !$notification["deleted"] AND !is_array($result[$notification["parent"]])) {
465 $result[$notification["parent"]] = $notification;
468 } while ((count($result) < 50) AND !$quit);
474 * @brief Backward-compatible XML formatting for ping.php output
477 * @param array $data The initial ping data array
478 * @param int $sysnotify_count Number of unseen system notifications
479 * @param array $notifs Complete list of notification
480 * @param array $sysmsgs List of system notice messages
481 * @param array $sysmsgs_info List of system info messages
482 * @param int $groups_unseen Number of unseen group items
483 * @param int $forums_unseen Number of unseen forum items
484 * @return array XML-transform ready data array
486 function ping_format_xml_data($data, $sysnotify, $notifs, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen)
488 $notifications = array();
489 foreach($notifs as $key => $notif) {
490 $notifications[$key . ':note'] = $notif['message'];
492 $notifications[$key . ':@attributes'] = array(
493 'id' => $notif['id'],
494 'href' => $notif['href'],
495 'name' => $notif['name'],
496 'url' => $notif['url'],
497 'photo' => $notif['photo'],
498 'date' => $notif['date'],
499 'seen' => $notif['seen'],
500 'timestamp' => $notif['timestamp']
505 foreach ($sysmsgs as $key => $m){
506 $sysmsg[$key . ':notice'] = $m;
508 foreach ($sysmsgs_info as $key => $m){
509 $sysmsg[$key . ':info'] = $m;
512 $data['notif'] = $notifications;
513 $data['@attributes'] = array('count' => $sysnotify_count + $data['intro'] + $data['mail'] + $data['register']);
514 $data['sysmsgs'] = $sysmsg;
516 if ($data['register'] == 0) {
517 unset($data['register']);
521 if (count($groups_unseen)) {
522 foreach ($groups_unseen as $key => $item) {
523 $groups[$key . ':group'] = $item['count'];
524 $groups[$key . ':@attributes'] = array('id' => $item['id']);
526 $data['groups'] = $groups;
530 if (count($forums_unseen)) {
531 foreach ($forums_unseen as $key => $item) {
532 $forums[$count . ':forum'] = $item['count'];
533 $forums[$count . ':@attributes'] = array('id' => $item['id']);
535 $data['forums'] = $forums;