]> git.mxchange.org Git - friendica.git/blob - mod/ping.php
Fix profile wrong DISTINCT + ORDER BY
[friendica.git] / mod / ping.php
1 <?php
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');
9
10 /**
11  * @brief Outputs the counts and the lists of various notifications
12  *
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)
16  *
17  * Expected JSON structure:
18  * {
19  *              "result": {
20  *                      "intro": 0,
21  *                      "mail": 0,
22  *                      "net": 0,
23  *                      "home": 0,
24  *                      "register": 0,
25  *                      "all-events": 0,
26  *                      "all-events-today": 0,
27  *                      "events": 0,
28  *                      "events-today": 0,
29  *                      "birthdays": 0,
30  *                      "birthdays-today": 0,
31  *                      "groups": [ ],
32  *                      "forums": [ ],
33  *                      "notify": 0,
34  *                      "notifications": [ ],
35  *                      "sysmsgs": {
36  *                              "notice": [ ],
37  *                              "info": [ ]
38  *                      }
39  *              }
40  *      }
41  *
42  * @param App $a The Friendica App instance
43  */
44 function ping_init(App $a)
45 {
46         $format = 'xml';
47
48         if (isset($_GET['format']) && $_GET['format'] == 'json') {
49                 $format = 'json';
50         }
51
52         $tags          = array();
53         $comments      = array();
54         $likes         = array();
55         $dislikes      = array();
56         $friends       = array();
57         $posts         = array();
58         $regs          = array();
59         $mails         = array();
60         $notifications = array();
61
62         $intro_count    = 0;
63         $mail_count     = 0;
64         $home_count     = 0;
65         $network_count  = 0;
66         $register_count = 0;
67         $sysnotify_count = 0;
68         $groups_unseen  = array();
69         $forums_unseen  = array();
70
71         $all_events       = 0;
72         $all_events_today = 0;
73         $events           = 0;
74         $events_today     = 0;
75         $birthdays        = 0;
76         $birthdays_today  = 0;
77
78         $data = array();
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;
84
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;
91
92         if (local_user()){
93                 // Different login session than the page that is calling us.
94                 if (intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
95
96                         $data = array('result' => array('invalid' => 1));
97
98                         if ($format == 'json') {
99                                 if (isset($_GET['callback'])) {
100                                         // JSONP support
101                                         header("Content-type: application/javascript");
102                                         echo $_GET['callback'] . '(' . json_encode($data) . ')';
103                                 } else {
104                                         header("Content-type: application/json");
105                                         echo json_encode($data);
106                                 }
107                         } else {
108                                 header("Content-type: text/xml");
109                                 echo xml::from_array($data, $xml);
110                         }
111                         killme();
112                 }
113
114                 $notifs = ping_get_notifications(local_user());
115
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())
125                 );
126
127                 if (dbm::is_result($items_unseen)) {
128                         $arr = array('items' => $items_unseen);
129                         call_hooks('network_ping', $arr);
130
131                         foreach ($items_unseen as $item) {
132                                 if ($item['wall']) {
133                                         $home_count++;
134                                 } else {
135                                         $network_count++;
136                                 }
137                         }
138                 }
139
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;
148                                                 }
149                                         }
150                                 }
151                         }
152
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;
159                                                 }
160                                         }
161                                 }
162                         }
163                 }
164
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",
169                         intval(local_user())
170                 );
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",
175                         intval(local_user())
176                 );
177
178                 $intro_count = count($intros1) + count($intros2);
179                 $intros = $intros1 + $intros2;
180
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()),
185                         dbesc($myurl)
186                 );
187                 $mail_count = count($mails);
188
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");
193
194                         if (dbm::is_result($regs)) {
195                                 $register_count = $regs[0]['total'];
196                         }
197                 }
198
199                 $cachekey = "ping_init:".local_user();
200                 $ev = Cache::get($cachekey);
201                 if (is_null($ev)) {
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                                 GROUP BY type, start, adjust
205                                 ORDER BY `start` ASC ",
206                                 intval(local_user()),
207                                 dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),
208                                 dbesc(datetime_convert('UTC', 'UTC', 'now'))
209                         );
210                         if (dbm::is_result($ev)) {
211                                 Cache::set($cachekey, $ev, CACHE_HOUR);
212                         }
213                 }
214
215                 if (dbm::is_result($ev)) {
216                         $all_events = intval($ev[0]['total']);
217
218                         if ($all_events) {
219                                 $str_now = datetime_convert('UTC', $a->timezone, 'now', 'Y-m-d');
220                                 foreach($ev as $x) {
221                                         $bd = false;
222                                         if ($x['type'] === 'birthday') {
223                                                 $birthdays ++;
224                                                 $bd = true;
225                                         }
226                                         else {
227                                                 $events ++;
228                                         }
229                                         if (datetime_convert('UTC', ((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'], 'Y-m-d') === $str_now) {
230                                                 $all_events_today ++;
231                                                 if ($bd)
232                                                         $birthdays_today ++;
233                                                 else
234                                                         $events_today ++;
235                                         }
236                                 }
237                         }
238                 }
239
240                 $data['intro']    = $intro_count;
241                 $data['mail']     = $mail_count;
242                 $data['net']      = $network_count;
243                 $data['home']     = $home_count;
244                 $data['register'] = $register_count;
245
246                 $data['all-events']       = $all_events;
247                 $data['all-events-today'] = $all_events_today;
248                 $data['events']           = $events;
249                 $data['events-today']     = $events_today;
250                 $data['birthdays']        = $birthdays;
251                 $data['birthdays-today']  = $birthdays_today;
252
253                 if (dbm::is_result($notifs)) {
254                         foreach ($notifs as $notif) {
255                                 if ($notif['seen'] == 0) {
256                                         $sysnotify_count ++;
257                                 }
258                         }
259                 }
260
261                 // merge all notification types in one array
262                 if (dbm::is_result($intros)) {
263                         foreach ($intros as $intro) {
264                                 $notif = array(
265                                         'href'    => App::get_baseurl() . '/notifications/intros/' . $intro['id'],
266                                         'name'    => $intro['name'],
267                                         'url'     => $intro['url'],
268                                         'photo'   => $intro['photo'],
269                                         'date'    => $intro['datetime'],
270                                         'seen'    => false,
271                                         'message' => t('{0} wants to be your friend'),
272                                 );
273                                 $notifs[] = $notif;
274                         }
275                 }
276
277                 if (dbm::is_result($mails)) {
278                         foreach ($mails as $mail) {
279                                 $notif = array(
280                                         'href'    => App::get_baseurl() . '/message/' . $mail['id'],
281                                         'name'    => $mail['from-name'],
282                                         'url'     => $mail['from-url'],
283                                         'photo'   => $mail['from-photo'],
284                                         'date'    => $mail['created'],
285                                         'seen'    => false,
286                                         'message' => t('{0} sent you a message'),
287                                 );
288                                 $notifs[] = $notif;
289                         }
290                 }
291
292                 if (dbm::is_result($regs)) {
293                         foreach ($regs as $reg) {
294                                 $notif = array(
295                                         'href'    => App::get_baseurl() . '/admin/users/',
296                                         'name'    => $reg['name'],
297                                         'url'     => $reg['url'],
298                                         'photo'   => $reg['micro'],
299                                         'date'    => $reg['created'],
300                                         'seen'    => false,
301                                         'message' => t('{0} requested registration'),
302                                 );
303                                 $notifs[] = $notif;
304                         }
305                 }
306
307                 // sort notifications by $[]['date']
308                 $sort_function = function($a, $b) {
309                         $adate = date($a['date']);
310                         $bdate = date($b['date']);
311                         if ($adate == $bdate) {
312                                 return 0;
313                         }
314                         return ($adate < $bdate) ? 1 : -1;
315                 };
316                 usort($notifs, $sort_function);
317
318                 if (dbm::is_result($notifs)) {
319                         // Are the nofications called from the regular process or via the friendica app?
320                         $regularnotifications = (intval($_GET['uid']) AND intval($_GET['_']));
321
322                         foreach ($notifs as $notif) {
323                                 if ($a->is_friendica_app() OR !$regularnotifications) {
324                                         $notif['message'] = str_replace("{0}", $notif['name'], $notif['message']);
325                                 }
326
327                                 $contact = get_contact_details_by_url($notif['url']);
328                                 if (isset($contact['micro'])) {
329                                         $notif['photo'] = proxy_url($contact['micro'], false, PROXY_SIZE_MICRO);
330                                 } else {
331                                         $notif['photo'] = proxy_url($notif['photo'], false, PROXY_SIZE_MICRO);
332                                 }
333
334                                 $local_time = datetime_convert('UTC', date_default_timezone_get(), $notif['date']);
335
336                                 $notifications[] = array(
337                                         'id'        => $notif['id'],
338                                         'href'      => $notif['href'],
339                                         'name'      => $notif['name'],
340                                         'url'       => $notif['url'],
341                                         'photo'     => $notif['photo'],
342                                         'date'      => relative_date($notif['date']),
343                                         'message'   => $notif['message'],
344                                         'seen'      => $notif['seen'],
345                                         'timestamp' => strtotime($local_time)
346                                 );
347                         }
348                 }
349         }
350
351         $sysmsgs = array();
352         $sysmsgs_info = array();
353
354         if (x($_SESSION, 'sysmsg')) {
355                 $sysmsgs = $_SESSION['sysmsg'];
356                 unset($_SESSION['sysmsg']);
357         }
358
359         if (x($_SESSION, 'sysmsg_info')) {
360                 $sysmsgs_info = $_SESSION['sysmsg_info'];
361                 unset($_SESSION['sysmsg_info']);
362         }
363
364         if ($format == 'json') {
365                 $data['groups'] = $groups_unseen;
366                 $data['forums'] = $forums_unseen;
367                 $data['notify'] = $sysnotify_count + $intro_count + $mail_count + $register_count;
368                 $data['notifications'] = $notifications;
369                 $data['sysmsgs'] = array(
370                         'notice' => $sysmsgs,
371                         'info' => $sysmsgs_info
372                 );
373
374                 $json_payload = json_encode(array("result" => $data));
375
376                 if (isset($_GET['callback'])) {
377                         // JSONP support
378                         header("Content-type: application/javascript");
379                         echo $_GET['callback'] . '(' . $json_payload . ')';
380                 } else {
381                         header("Content-type: application/json");
382                         echo $json_payload;
383                 }
384         } else {
385                 // Legacy slower XML format output
386                 $data = ping_format_xml_data($data, $sysnotify_count, $notifications, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen);
387
388                 header("Content-type: text/xml");
389                 echo xml::from_array(array("result" => $data), $xml);
390         }
391
392         killme();
393 }
394
395 /**
396  * @brief Retrieves the notifications array for the given user ID
397  *
398  * @param int $uid User id
399  * @return array Associative array of notifications
400  */
401 function ping_get_notifications($uid)
402 {
403         $result  = array();
404         $offset  = 0;
405         $seen    = false;
406         $seensql = "NOT";
407         $order   = "DESC";
408         $quit    = false;
409
410         $a = get_app();
411
412         do {
413                 $r = qu("SELECT `notify`.*, `item`.`visible`, `item`.`spam`, `item`.`deleted`
414                         FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid`
415                         WHERE `notify`.`uid` = %d AND `notify`.`msg` != ''
416                         AND NOT (`notify`.`type` IN (%d, %d))
417                         AND $seensql `notify`.`seen` ORDER BY `notify`.`date` $order LIMIT %d, 50",
418                         intval($uid),
419                         intval(NOTIFY_INTRO),
420                         intval(NOTIFY_MAIL),
421                         intval($offset)
422                 );
423
424                 if (!$r AND !$seen) {
425                         $seen = true;
426                         $seensql = "";
427                         $order = "DESC";
428                         $offset = 0;
429                 } elseif (!$r) {
430                         $quit = true;
431                 } else {
432                         $offset += 50;
433                 }
434
435                 foreach ($r AS $notification) {
436                         if (is_null($notification["visible"])) {
437                                 $notification["visible"] = true;
438                         }
439
440                         if (is_null($notification["spam"])) {
441                                 $notification["spam"] = 0;
442                         }
443
444                         if (is_null($notification["deleted"])) {
445                                 $notification["deleted"] = 0;
446                         }
447
448                         if ($notification["msg_cache"]) {
449                                 $notification["name"] = $notification["name_cache"];
450                                 $notification["message"] = $notification["msg_cache"];
451                         } else {
452                                 $notification["name"] = strip_tags(bbcode($notification["name"]));
453                                 $notification["message"] = format_notification_message($notification["name"], strip_tags(bbcode($notification["msg"])));
454
455                                 q("UPDATE `notify` SET `name_cache` = '%s', `msg_cache` = '%s' WHERE `id` = %d",
456                                         dbesc($notification["name"]),
457                                         dbesc($notification["message"]),
458                                         intval($notification["id"])
459                                 );
460                         }
461
462                         $notification["href"] = App::get_baseurl() . "/notify/view/" . $notification["id"];
463
464                         if ($notification["visible"] AND !$notification["spam"] AND
465                                 !$notification["deleted"] AND !is_array($result[$notification["parent"]])) {
466                                 $result[$notification["parent"]] = $notification;
467                         }
468                 }
469         } while ((count($result) < 50) AND !$quit);
470
471         return($result);
472 }
473
474 /**
475  * @brief Backward-compatible XML formatting for ping.php output
476  * @deprecated
477  *
478  * @param array $data The initial ping data array
479  * @param int $sysnotify_count Number of unseen system notifications
480  * @param array $notifs Complete list of notification
481  * @param array $sysmsgs List of system notice messages
482  * @param array $sysmsgs_info List of system info messages
483  * @param int $groups_unseen Number of unseen group items
484  * @param int $forums_unseen Number of unseen forum items
485  * @return array XML-transform ready data array
486  */
487 function ping_format_xml_data($data, $sysnotify, $notifs, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen)
488 {
489         $notifications = array();
490         foreach($notifs as $key => $notif) {
491                 $notifications[$key . ':note'] = $notif['message'];
492
493                 $notifications[$key . ':@attributes'] = array(
494                         'id'        => $notif['id'],
495                         'href'      => $notif['href'],
496                         'name'      => $notif['name'],
497                         'url'       => $notif['url'],
498                         'photo'     => $notif['photo'],
499                         'date'      => $notif['date'],
500                         'seen'      => $notif['seen'],
501                         'timestamp' => $notif['timestamp']
502                 );
503         }
504
505         $sysmsg = array();
506         foreach ($sysmsgs as $key => $m){
507                 $sysmsg[$key . ':notice'] = $m;
508         }
509         foreach ($sysmsgs_info as $key => $m){
510                 $sysmsg[$key . ':info'] = $m;
511         }
512
513         $data['notif'] = $notifications;
514         $data['@attributes'] = array('count' => $sysnotify_count + $data['intro'] + $data['mail'] + $data['register']);
515         $data['sysmsgs'] = $sysmsg;
516
517         if ($data['register'] == 0) {
518                 unset($data['register']);
519         }
520
521         $groups = array();
522         if (count($groups_unseen)) {
523                 foreach ($groups_unseen as $key => $item) {
524                         $groups[$key . ':group'] = $item['count'];
525                         $groups[$key . ':@attributes'] = array('id' => $item['id']);
526                 }
527                 $data['groups'] = $groups;
528         }
529
530         $forums = array();
531         if (count($forums_unseen)) {
532                 foreach ($forums_unseen as $key => $item) {
533                         $forums[$count . ':forum'] = $item['count'];
534                         $forums[$count . ':@attributes'] = array('id' => $item['id']);
535                 }
536                 $data['forums'] = $forums;
537         }
538
539         return $data;
540 }