2010-07-20 07:52:31 +02:00
|
|
|
<?php
|
2017-11-09 17:05:18 +01:00
|
|
|
/**
|
|
|
|
* @file include/ping.php
|
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-12-04 15:04:36 +01:00
|
|
|
use Friendica\Content\Feature;
|
2017-11-21 13:20:22 +01:00
|
|
|
use Friendica\Content\ForumManager;
|
2018-02-15 03:33:55 +01:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2017-11-09 17:05:18 +01:00
|
|
|
use Friendica\Core\Cache;
|
2018-07-12 04:41:52 +02:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 15:16:25 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-04 13:01:08 +01:00
|
|
|
use Friendica\Core\PConfig;
|
2018-01-25 03:08:45 +01:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-09 19:45:17 +01:00
|
|
|
use Friendica\Model\Group;
|
2018-06-16 00:30:49 +02:00
|
|
|
use Friendica\Model\Item;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-02-03 18:25:58 +01:00
|
|
|
use Friendica\Util\Temporal;
|
2018-07-31 04:06:22 +02:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2017-11-10 13:45:33 +01:00
|
|
|
use Friendica\Util\XML;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-11-09 17:05:18 +01:00
|
|
|
require_once 'include/enotify.php';
|
2010-07-20 07:52:31 +02:00
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
/**
|
|
|
|
* @brief Outputs the counts and the lists of various notifications
|
|
|
|
*
|
|
|
|
* The output format can be controlled via the GET parameter 'format'. It can be
|
|
|
|
* - xml (deprecated legacy default)
|
|
|
|
* - json (outputs JSONP with the 'callback' GET parameter)
|
|
|
|
*
|
|
|
|
* Expected JSON structure:
|
|
|
|
* {
|
|
|
|
* "result": {
|
|
|
|
* "intro": 0,
|
|
|
|
* "mail": 0,
|
|
|
|
* "net": 0,
|
|
|
|
* "home": 0,
|
|
|
|
* "register": 0,
|
|
|
|
* "all-events": 0,
|
|
|
|
* "all-events-today": 0,
|
|
|
|
* "events": 0,
|
|
|
|
* "events-today": 0,
|
|
|
|
* "birthdays": 0,
|
|
|
|
* "birthdays-today": 0,
|
|
|
|
* "groups": [ ],
|
|
|
|
* "forums": [ ],
|
|
|
|
* "notify": 0,
|
|
|
|
* "notifications": [ ],
|
|
|
|
* "sysmsgs": {
|
|
|
|
* "notice": [ ],
|
|
|
|
* "info": [ ]
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* @param App $a The Friendica App instance
|
|
|
|
*/
|
|
|
|
function ping_init(App $a)
|
|
|
|
{
|
2016-11-17 05:26:43 +01:00
|
|
|
$format = 'xml';
|
|
|
|
|
|
|
|
if (isset($_GET['format']) && $_GET['format'] == 'json') {
|
|
|
|
$format = 'json';
|
|
|
|
}
|
2010-07-20 07:52:31 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$tags = [];
|
|
|
|
$comments = [];
|
|
|
|
$likes = [];
|
|
|
|
$dislikes = [];
|
|
|
|
$friends = [];
|
|
|
|
$posts = [];
|
|
|
|
$regs = [];
|
|
|
|
$mails = [];
|
|
|
|
$notifications = [];
|
2016-11-23 03:11:22 +01:00
|
|
|
|
|
|
|
$intro_count = 0;
|
|
|
|
$mail_count = 0;
|
|
|
|
$home_count = 0;
|
|
|
|
$network_count = 0;
|
|
|
|
$register_count = 0;
|
|
|
|
$sysnotify_count = 0;
|
2018-01-15 14:05:12 +01:00
|
|
|
$groups_unseen = [];
|
|
|
|
$forums_unseen = [];
|
2016-11-23 03:11:22 +01:00
|
|
|
|
|
|
|
$all_events = 0;
|
|
|
|
$all_events_today = 0;
|
|
|
|
$events = 0;
|
|
|
|
$events_today = 0;
|
|
|
|
$birthdays = 0;
|
|
|
|
$birthdays_today = 0;
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$data = [];
|
2016-11-23 03:11:22 +01:00
|
|
|
$data['intro'] = $intro_count;
|
|
|
|
$data['mail'] = $mail_count;
|
|
|
|
$data['net'] = $network_count;
|
|
|
|
$data['home'] = $home_count;
|
|
|
|
$data['register'] = $register_count;
|
|
|
|
|
|
|
|
$data['all-events'] = $all_events;
|
|
|
|
$data['all-events-today'] = $all_events_today;
|
|
|
|
$data['events'] = $events;
|
|
|
|
$data['events-today'] = $events_today;
|
|
|
|
$data['birthdays'] = $birthdays;
|
|
|
|
$data['birthdays-today'] = $birthdays_today;
|
2016-08-11 08:44:03 +02:00
|
|
|
|
2017-11-09 17:05:18 +01:00
|
|
|
if (local_user()) {
|
2015-04-26 13:25:04 +02:00
|
|
|
// Different login session than the page that is calling us.
|
2018-08-02 07:21:01 +02:00
|
|
|
if (!empty($_GET['uid']) && intval($_GET['uid']) != local_user()) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$data = ['result' => ['invalid' => 1]];
|
2016-11-17 05:26:43 +01:00
|
|
|
|
|
|
|
if ($format == 'json') {
|
|
|
|
if (isset($_GET['callback'])) {
|
|
|
|
// JSONP support
|
|
|
|
header("Content-type: application/javascript");
|
|
|
|
echo $_GET['callback'] . '(' . json_encode($data) . ')';
|
|
|
|
} else {
|
|
|
|
header("Content-type: application/json");
|
|
|
|
echo json_encode($data);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header("Content-type: text/xml");
|
2017-11-20 18:56:31 +01:00
|
|
|
echo XML::fromArray($data, $xml);
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
2012-05-23 01:01:07 +02:00
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2015-06-25 10:02:26 +02:00
|
|
|
$notifs = ping_get_notifications(local_user());
|
2016-11-23 03:11:22 +01:00
|
|
|
|
2018-06-16 00:30:49 +02:00
|
|
|
$condition = ["`unseen` AND `uid` = ? AND `contact-id` != ?", local_user(), local_user()];
|
|
|
|
$fields = ['id', 'parent', 'verb', 'author-name', 'unseen', 'author-link', 'author-avatar', 'contact-avatar',
|
2018-07-08 11:37:05 +02:00
|
|
|
'network', 'created', 'object', 'parent-author-name', 'parent-author-link', 'parent-guid', 'wall'];
|
2018-06-16 08:27:20 +02:00
|
|
|
$params = ['order' => ['created' => true]];
|
2018-06-17 19:05:17 +02:00
|
|
|
$items = Item::selectForUser(local_user(), $fields, $condition, $params);
|
2018-06-16 00:30:49 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($items)) {
|
2018-06-24 12:48:29 +02:00
|
|
|
$items_unseen = Item::inArray($items);
|
2018-01-15 14:05:12 +01:00
|
|
|
$arr = ['items' => $items_unseen];
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('network_ping', $arr);
|
2012-09-26 13:46:54 +02:00
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
foreach ($items_unseen as $item) {
|
|
|
|
if ($item['wall']) {
|
|
|
|
$home_count++;
|
2016-11-17 05:26:43 +01:00
|
|
|
} else {
|
2016-11-21 22:02:36 +01:00
|
|
|
$network_count++;
|
2012-02-24 01:50:29 +01:00
|
|
|
}
|
2011-09-28 09:30:22 +02:00
|
|
|
}
|
2011-08-23 13:52:20 +02:00
|
|
|
}
|
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
if ($network_count) {
|
2018-11-18 21:13:46 +01:00
|
|
|
// Find out how unseen network posts are spread across groups
|
|
|
|
$group_counts = Group::countUnseen();
|
|
|
|
if (DBA::isResult($group_counts)) {
|
|
|
|
foreach ($group_counts as $group_count) {
|
|
|
|
if ($group_count['count'] > 0) {
|
|
|
|
$groups_unseen[] = $group_count;
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-03 17:15:49 +01:00
|
|
|
}
|
2015-11-24 22:14:26 +01:00
|
|
|
|
2018-11-18 21:13:46 +01:00
|
|
|
$forum_counts = ForumManager::countUnseenItems();
|
|
|
|
if (DBA::isResult($forum_counts)) {
|
|
|
|
foreach ($forum_counts as $forum_count) {
|
|
|
|
if ($forum_count['count'] > 0) {
|
|
|
|
$forums_unseen[] = $forum_count;
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
|
|
|
}
|
2015-11-24 22:14:26 +01:00
|
|
|
}
|
2015-11-08 15:33:12 +01:00
|
|
|
}
|
|
|
|
|
2017-11-09 17:05:18 +01:00
|
|
|
$intros1 = q(
|
|
|
|
"SELECT `intro`.`id`, `intro`.`datetime`,
|
2014-07-26 15:01:01 +02:00
|
|
|
`fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
|
2011-09-28 09:30:22 +02:00
|
|
|
FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
|
2016-11-23 03:11:22 +01:00
|
|
|
WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid` != 0",
|
2011-09-28 09:30:22 +02:00
|
|
|
intval(local_user())
|
|
|
|
);
|
2017-11-09 17:05:18 +01:00
|
|
|
$intros2 = q(
|
|
|
|
"SELECT `intro`.`id`, `intro`.`datetime`,
|
2014-07-26 15:01:01 +02:00
|
|
|
`contact`.`name`, `contact`.`url`, `contact`.`photo`
|
2011-09-28 09:30:22 +02:00
|
|
|
FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
|
2016-11-23 03:11:22 +01:00
|
|
|
WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id` != 0",
|
2011-09-28 09:30:22 +02:00
|
|
|
intval(local_user())
|
|
|
|
);
|
2014-02-16 17:36:52 +01:00
|
|
|
|
2016-11-21 22:02:36 +01:00
|
|
|
$intro_count = count($intros1) + count($intros2);
|
2016-12-13 09:59:43 +01:00
|
|
|
$intros = $intros1 + $intros2;
|
2011-09-28 09:30:22 +02:00
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$myurl = System::baseUrl() . '/profile/' . $a->user['nickname'] ;
|
2017-11-09 17:05:18 +01:00
|
|
|
$mails = q(
|
|
|
|
"SELECT `id`, `from-name`, `from-url`, `from-photo`, `created` FROM `mail`
|
2011-09-28 09:30:22 +02:00
|
|
|
WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
|
|
|
|
intval(local_user()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($myurl)
|
2011-09-28 09:30:22 +02:00
|
|
|
);
|
2016-11-17 05:26:43 +01:00
|
|
|
$mail_count = count($mails);
|
2014-02-16 17:36:52 +01:00
|
|
|
|
2018-07-15 21:04:48 +02:00
|
|
|
if (intval(Config::get('config', 'register_policy')) === REGISTER_APPROVE && is_site_admin()) {
|
2018-10-14 17:57:28 +02:00
|
|
|
$regs = Friendica\Model\Register::getPending();
|
2011-08-17 21:59:06 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($regs)) {
|
2017-11-21 03:45:13 +01:00
|
|
|
$register_count = count($regs);
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
2011-09-28 09:30:22 +02:00
|
|
|
}
|
2012-09-19 02:43:09 +02:00
|
|
|
|
2017-01-13 18:31:10 +01:00
|
|
|
$cachekey = "ping_init:".local_user();
|
2017-01-13 14:04:37 +01:00
|
|
|
$ev = Cache::get($cachekey);
|
|
|
|
if (is_null($ev)) {
|
2017-11-09 17:05:18 +01:00
|
|
|
$ev = q(
|
|
|
|
"SELECT type, start, adjust FROM `event`
|
2017-01-13 14:04:37 +01:00
|
|
|
WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
|
|
|
|
ORDER BY `start` ASC ",
|
|
|
|
intval(local_user()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape(DateTimeFormat::utc('now + 7 days')),
|
|
|
|
DBA::escape(DateTimeFormat::utcNow())
|
2017-01-13 14:04:37 +01:00
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($ev)) {
|
2018-10-20 18:19:55 +02:00
|
|
|
Cache::set($cachekey, $ev, Cache::HOUR);
|
2017-01-13 18:31:10 +01:00
|
|
|
}
|
2017-01-13 14:04:37 +01:00
|
|
|
}
|
2012-09-19 02:43:09 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($ev)) {
|
2017-04-12 18:54:54 +02:00
|
|
|
$all_events = count($ev);
|
2012-09-19 02:43:09 +02:00
|
|
|
|
2016-08-10 22:51:03 +02:00
|
|
|
if ($all_events) {
|
2018-01-27 03:38:34 +01:00
|
|
|
$str_now = DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d');
|
2017-11-09 17:05:18 +01:00
|
|
|
foreach ($ev as $x) {
|
2012-09-19 02:43:09 +02:00
|
|
|
$bd = false;
|
2016-08-10 22:51:03 +02:00
|
|
|
if ($x['type'] === 'birthday') {
|
2012-09-19 02:43:09 +02:00
|
|
|
$birthdays ++;
|
|
|
|
$bd = true;
|
2017-11-09 17:05:18 +01:00
|
|
|
} else {
|
2012-09-19 02:43:09 +02:00
|
|
|
$events ++;
|
|
|
|
}
|
2018-01-27 03:38:34 +01:00
|
|
|
if (DateTimeFormat::convert($x['start'], ((intval($x['adjust'])) ? $a->timezone : 'UTC'), 'UTC', 'Y-m-d') === $str_now) {
|
2012-09-19 02:43:09 +02:00
|
|
|
$all_events_today ++;
|
2017-11-09 17:05:18 +01:00
|
|
|
if ($bd) {
|
2012-09-19 02:43:09 +02:00
|
|
|
$birthdays_today ++;
|
2017-11-09 17:05:18 +01:00
|
|
|
} else {
|
2012-09-19 02:43:09 +02:00
|
|
|
$events_today ++;
|
2017-11-09 17:05:18 +01:00
|
|
|
}
|
2012-09-19 02:43:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
$data['intro'] = $intro_count;
|
2016-11-17 05:26:43 +01:00
|
|
|
$data['mail'] = $mail_count;
|
2016-11-21 22:02:36 +01:00
|
|
|
$data['net'] = $network_count;
|
|
|
|
$data['home'] = $home_count;
|
|
|
|
$data['register'] = $register_count;
|
2015-11-24 22:14:26 +01:00
|
|
|
|
2016-11-17 05:26:43 +01:00
|
|
|
$data['all-events'] = $all_events;
|
|
|
|
$data['all-events-today'] = $all_events_today;
|
|
|
|
$data['events'] = $events;
|
|
|
|
$data['events-today'] = $events_today;
|
|
|
|
$data['birthdays'] = $birthdays;
|
|
|
|
$data['birthdays-today'] = $birthdays_today;
|
2016-02-13 18:15:24 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($notifs)) {
|
2016-11-17 05:26:43 +01:00
|
|
|
foreach ($notifs as $notif) {
|
|
|
|
if ($notif['seen'] == 0) {
|
2016-11-21 22:02:36 +01:00
|
|
|
$sysnotify_count ++;
|
2016-08-10 22:51:03 +02:00
|
|
|
}
|
2012-02-22 04:03:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-25 10:02:26 +02:00
|
|
|
// merge all notification types in one array
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($intros)) {
|
2016-11-17 05:26:43 +01:00
|
|
|
foreach ($intros as $intro) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$notif = [
|
2018-07-10 14:27:56 +02:00
|
|
|
'id' => 0,
|
2017-08-26 09:32:10 +02:00
|
|
|
'href' => System::baseUrl() . '/notifications/intros/' . $intro['id'],
|
2016-11-17 05:26:43 +01:00
|
|
|
'name' => $intro['name'],
|
|
|
|
'url' => $intro['url'],
|
|
|
|
'photo' => $intro['photo'],
|
|
|
|
'date' => $intro['datetime'],
|
|
|
|
'seen' => false,
|
2018-01-22 15:16:25 +01:00
|
|
|
'message' => L10n::t('{0} wants to be your friend'),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-11-17 05:26:43 +01:00
|
|
|
$notifs[] = $notif;
|
2012-02-24 01:50:29 +01:00
|
|
|
}
|
2015-06-25 10:02:26 +02:00
|
|
|
}
|
2015-11-08 18:02:04 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($mails)) {
|
2016-11-17 05:26:43 +01:00
|
|
|
foreach ($mails as $mail) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$notif = [
|
2018-07-10 14:27:56 +02:00
|
|
|
'id' => 0,
|
2017-08-26 09:32:10 +02:00
|
|
|
'href' => System::baseUrl() . '/message/' . $mail['id'],
|
2016-11-17 05:26:43 +01:00
|
|
|
'name' => $mail['from-name'],
|
|
|
|
'url' => $mail['from-url'],
|
|
|
|
'photo' => $mail['from-photo'],
|
|
|
|
'date' => $mail['created'],
|
|
|
|
'seen' => false,
|
2018-01-22 15:16:25 +01:00
|
|
|
'message' => L10n::t('{0} sent you a message'),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-11-17 05:26:43 +01:00
|
|
|
$notifs[] = $notif;
|
2012-02-24 01:50:29 +01:00
|
|
|
}
|
2015-06-25 10:02:26 +02:00
|
|
|
}
|
2015-11-08 18:02:04 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($regs)) {
|
2016-11-17 05:26:43 +01:00
|
|
|
foreach ($regs as $reg) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$notif = [
|
2018-07-10 14:27:56 +02:00
|
|
|
'id' => 0,
|
2017-08-26 09:32:10 +02:00
|
|
|
'href' => System::baseUrl() . '/admin/users/',
|
2016-11-17 05:26:43 +01:00
|
|
|
'name' => $reg['name'],
|
|
|
|
'url' => $reg['url'],
|
|
|
|
'photo' => $reg['micro'],
|
|
|
|
'date' => $reg['created'],
|
|
|
|
'seen' => false,
|
2018-01-22 15:16:25 +01:00
|
|
|
'message' => L10n::t('{0} requested registration'),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-11-17 05:26:43 +01:00
|
|
|
$notifs[] = $notif;
|
2012-02-24 01:50:29 +01:00
|
|
|
}
|
2015-06-25 10:02:26 +02:00
|
|
|
}
|
2016-03-01 14:33:54 +01:00
|
|
|
|
2015-06-25 10:02:26 +02:00
|
|
|
// sort notifications by $[]['date']
|
2017-11-09 17:05:18 +01:00
|
|
|
$sort_function = function ($a, $b) {
|
2017-04-29 16:22:49 +02:00
|
|
|
$adate = strtotime($a['date']);
|
|
|
|
$bdate = strtotime($b['date']);
|
|
|
|
|
|
|
|
// Unseen messages are kept at the top
|
|
|
|
// The value 31536000 means one year. This should be enough :-)
|
|
|
|
if (!$a['seen']) {
|
|
|
|
$adate += 31536000;
|
|
|
|
}
|
|
|
|
if (!$b['seen']) {
|
|
|
|
$bdate += 31536000;
|
|
|
|
}
|
|
|
|
|
2015-06-25 10:02:26 +02:00
|
|
|
if ($adate == $bdate) {
|
|
|
|
return 0;
|
2012-02-24 01:50:29 +01:00
|
|
|
}
|
2015-06-25 10:02:26 +02:00
|
|
|
return ($adate < $bdate) ? 1 : -1;
|
|
|
|
};
|
|
|
|
usort($notifs, $sort_function);
|
2012-02-22 04:03:55 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($notifs)) {
|
2016-11-17 05:26:43 +01:00
|
|
|
// Are the nofications called from the regular process or via the friendica app?
|
2018-08-02 07:21:01 +02:00
|
|
|
$regularnotifications = (!empty($_GET['uid']) && !empty($_GET['_']));
|
2016-08-10 22:51:03 +02:00
|
|
|
|
2016-11-17 05:26:43 +01:00
|
|
|
foreach ($notifs as $notif) {
|
2018-10-09 19:58:58 +02:00
|
|
|
if ($a->isFriendicaApp() || !$regularnotifications) {
|
2016-11-17 05:26:43 +01:00
|
|
|
$notif['message'] = str_replace("{0}", $notif['name'], $notif['message']);
|
|
|
|
}
|
2016-08-10 22:51:03 +02:00
|
|
|
|
2017-11-19 23:03:39 +01:00
|
|
|
$contact = Contact::getDetailsByURL($notif['url']);
|
2016-11-17 05:26:43 +01:00
|
|
|
if (isset($contact['micro'])) {
|
2018-07-31 04:06:22 +02:00
|
|
|
$notif['photo'] = ProxyUtils::proxifyUrl($contact['micro'], false, ProxyUtils::SIZE_MICRO);
|
2016-11-17 05:26:43 +01:00
|
|
|
} else {
|
2018-07-31 04:06:22 +02:00
|
|
|
$notif['photo'] = ProxyUtils::proxifyUrl($notif['photo'], false, ProxyUtils::SIZE_MICRO);
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
2016-08-10 22:51:03 +02:00
|
|
|
|
2018-01-27 03:38:34 +01:00
|
|
|
$local_time = DateTimeFormat::local($notif['date']);
|
2016-11-17 05:26:43 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$notifications[] = [
|
2016-11-17 05:26:43 +01:00
|
|
|
'id' => $notif['id'],
|
|
|
|
'href' => $notif['href'],
|
|
|
|
'name' => $notif['name'],
|
|
|
|
'url' => $notif['url'],
|
|
|
|
'photo' => $notif['photo'],
|
2018-02-03 18:25:58 +01:00
|
|
|
'date' => Temporal::getRelativeDate($notif['date']),
|
2016-11-17 05:26:43 +01:00
|
|
|
'message' => $notif['message'],
|
|
|
|
'seen' => $notif['seen'],
|
|
|
|
'timestamp' => strtotime($local_time)
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2012-02-24 01:50:29 +01:00
|
|
|
}
|
2012-01-06 01:47:47 +01:00
|
|
|
}
|
2011-07-29 16:24:09 +02:00
|
|
|
}
|
2011-09-28 09:30:22 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$sysmsgs = [];
|
|
|
|
$sysmsgs_info = [];
|
2016-08-10 22:51:03 +02:00
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
if (x($_SESSION, 'sysmsg')) {
|
2016-11-17 05:26:43 +01:00
|
|
|
$sysmsgs = $_SESSION['sysmsg'];
|
2012-02-24 01:50:29 +01:00
|
|
|
unset($_SESSION['sysmsg']);
|
|
|
|
}
|
2016-08-10 22:51:03 +02:00
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
if (x($_SESSION, 'sysmsg_info')) {
|
2016-11-17 05:26:43 +01:00
|
|
|
$sysmsgs_info = $_SESSION['sysmsg_info'];
|
2012-02-24 01:50:29 +01:00
|
|
|
unset($_SESSION['sysmsg_info']);
|
|
|
|
}
|
2015-04-22 08:39:27 +02:00
|
|
|
|
2016-11-17 05:26:43 +01:00
|
|
|
if ($format == 'json') {
|
|
|
|
$data['groups'] = $groups_unseen;
|
|
|
|
$data['forums'] = $forums_unseen;
|
2016-11-21 22:02:36 +01:00
|
|
|
$data['notify'] = $sysnotify_count + $intro_count + $mail_count + $register_count;
|
2016-11-17 05:26:43 +01:00
|
|
|
$data['notifications'] = $notifications;
|
2018-01-15 14:05:12 +01:00
|
|
|
$data['sysmsgs'] = [
|
2016-11-17 05:26:43 +01:00
|
|
|
'notice' => $sysmsgs,
|
|
|
|
'info' => $sysmsgs_info
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-11-17 05:26:43 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$json_payload = json_encode(["result" => $data]);
|
2016-11-17 05:26:43 +01:00
|
|
|
|
|
|
|
if (isset($_GET['callback'])) {
|
|
|
|
// JSONP support
|
|
|
|
header("Content-type: application/javascript");
|
|
|
|
echo $_GET['callback'] . '(' . $json_payload . ')';
|
|
|
|
} else {
|
|
|
|
header("Content-type: application/json");
|
|
|
|
echo $json_payload;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Legacy slower XML format output
|
2016-11-21 22:02:36 +01:00
|
|
|
$data = ping_format_xml_data($data, $sysnotify_count, $notifications, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen);
|
2016-11-17 05:26:43 +01:00
|
|
|
|
|
|
|
header("Content-type: text/xml");
|
2018-01-15 14:05:12 +01:00
|
|
|
echo XML::fromArray(["result" => $data], $xml);
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
2010-07-20 07:52:31 +02:00
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2016-10-28 12:28:16 +02:00
|
|
|
/**
|
|
|
|
* @brief Retrieves the notifications array for the given user ID
|
|
|
|
*
|
2016-10-29 04:14:51 +02:00
|
|
|
* @param int $uid User id
|
|
|
|
* @return array Associative array of notifications
|
2016-10-28 12:28:16 +02:00
|
|
|
*/
|
2016-11-23 03:11:22 +01:00
|
|
|
function ping_get_notifications($uid)
|
|
|
|
{
|
2018-01-15 14:05:12 +01:00
|
|
|
$result = [];
|
2016-11-23 03:11:22 +01:00
|
|
|
$offset = 0;
|
|
|
|
$seen = false;
|
2015-04-22 08:39:27 +02:00
|
|
|
$seensql = "NOT";
|
2016-11-23 03:11:22 +01:00
|
|
|
$order = "DESC";
|
|
|
|
$quit = false;
|
2015-04-22 08:39:27 +02:00
|
|
|
|
2015-06-13 20:23:26 +02:00
|
|
|
$a = get_app();
|
|
|
|
|
2015-04-22 08:39:27 +02:00
|
|
|
do {
|
2017-11-09 17:05:18 +01:00
|
|
|
$r = q(
|
2018-06-03 09:42:56 +02:00
|
|
|
"SELECT `notify`.*, `item`.`visible`, `item`.`deleted`
|
2015-04-22 08:39:27 +02:00
|
|
|
FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid`
|
|
|
|
WHERE `notify`.`uid` = %d AND `notify`.`msg` != ''
|
2015-04-23 08:37:31 +02:00
|
|
|
AND NOT (`notify`.`type` IN (%d, %d))
|
2015-04-23 08:59:30 +02:00
|
|
|
AND $seensql `notify`.`seen` ORDER BY `notify`.`date` $order LIMIT %d, 50",
|
2015-04-23 08:37:31 +02:00
|
|
|
intval($uid),
|
|
|
|
intval(NOTIFY_INTRO),
|
|
|
|
intval(NOTIFY_MAIL),
|
|
|
|
intval($offset)
|
2015-04-22 08:39:27 +02:00
|
|
|
);
|
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
if (!$r && !$seen) {
|
2015-04-22 08:39:27 +02:00
|
|
|
$seen = true;
|
|
|
|
$seensql = "";
|
2015-04-23 08:59:30 +02:00
|
|
|
$order = "DESC";
|
2015-04-22 08:39:27 +02:00
|
|
|
$offset = 0;
|
2016-10-28 12:28:16 +02:00
|
|
|
} elseif (!$r) {
|
2015-04-22 08:39:27 +02:00
|
|
|
$quit = true;
|
2016-10-28 12:28:16 +02:00
|
|
|
} else {
|
2015-04-22 08:39:27 +02:00
|
|
|
$offset += 50;
|
2016-10-28 12:28:16 +02:00
|
|
|
}
|
2015-04-22 08:39:27 +02:00
|
|
|
|
2017-11-09 17:05:18 +01:00
|
|
|
foreach ($r as $notification) {
|
2016-10-28 12:28:16 +02:00
|
|
|
if (is_null($notification["visible"])) {
|
2015-04-22 08:39:27 +02:00
|
|
|
$notification["visible"] = true;
|
2016-10-28 12:28:16 +02:00
|
|
|
}
|
2015-04-22 08:39:27 +02:00
|
|
|
|
2016-10-28 12:28:16 +02:00
|
|
|
if (is_null($notification["deleted"])) {
|
2015-04-22 08:39:27 +02:00
|
|
|
$notification["deleted"] = 0;
|
2016-10-28 12:28:16 +02:00
|
|
|
}
|
2015-04-22 08:39:27 +02:00
|
|
|
|
2016-10-28 12:28:16 +02:00
|
|
|
if ($notification["msg_cache"]) {
|
|
|
|
$notification["name"] = $notification["name_cache"];
|
|
|
|
$notification["message"] = $notification["msg_cache"];
|
|
|
|
} else {
|
2018-02-15 03:33:55 +01:00
|
|
|
$notification["name"] = strip_tags(BBCode::convert($notification["name"]));
|
|
|
|
$notification["message"] = format_notification_message($notification["name"], strip_tags(BBCode::convert($notification["msg"])));
|
2016-10-28 12:28:16 +02:00
|
|
|
|
2017-11-09 17:05:18 +01:00
|
|
|
q(
|
|
|
|
"UPDATE `notify` SET `name_cache` = '%s', `msg_cache` = '%s' WHERE `id` = %d",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($notification["name"]),
|
|
|
|
DBA::escape($notification["message"]),
|
2016-10-28 12:28:16 +02:00
|
|
|
intval($notification["id"])
|
|
|
|
);
|
|
|
|
}
|
2015-04-23 08:37:31 +02:00
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
$notification["href"] = System::baseUrl() . "/notify/view/" . $notification["id"];
|
2015-11-08 18:02:04 +01:00
|
|
|
|
2018-01-01 21:51:02 +01:00
|
|
|
if ($notification["visible"]
|
|
|
|
&& !$notification["deleted"]
|
2018-07-08 11:37:05 +02:00
|
|
|
&& !(x($result, $notification["parent"]) && !empty($result[$notification["parent"]]))
|
2017-11-09 17:05:18 +01:00
|
|
|
) {
|
2017-11-04 15:00:29 +01:00
|
|
|
// Should we condense the notifications or show them all?
|
2017-11-04 13:08:12 +01:00
|
|
|
if (PConfig::get(local_user(), 'system', 'detailed_notif')) {
|
2017-11-04 13:01:08 +01:00
|
|
|
$result[$notification["id"]] = $notification;
|
|
|
|
} else {
|
|
|
|
$result[$notification["parent"]] = $notification;
|
|
|
|
}
|
2015-06-24 16:10:06 +02:00
|
|
|
}
|
2015-04-22 08:39:27 +02:00
|
|
|
}
|
2017-06-08 04:00:59 +02:00
|
|
|
} while ((count($result) < 50) && !$quit);
|
2015-04-22 08:39:27 +02:00
|
|
|
|
|
|
|
return($result);
|
|
|
|
}
|
2016-11-17 05:26:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Backward-compatible XML formatting for ping.php output
|
|
|
|
* @deprecated
|
|
|
|
*
|
2018-09-02 19:48:07 +02:00
|
|
|
* @param array $data The initial ping data array
|
|
|
|
* @param int $sysnotify_count Number of unseen system notifications
|
|
|
|
* @param array $notifs Complete list of notification
|
|
|
|
* @param array $sysmsgs List of system notice messages
|
|
|
|
* @param array $sysmsgs_info List of system info messages
|
|
|
|
* @param int $groups_unseen Number of unseen group items
|
|
|
|
* @param int $forums_unseen Number of unseen forum items
|
|
|
|
*
|
2016-11-17 05:26:43 +01:00
|
|
|
* @return array XML-transform ready data array
|
|
|
|
*/
|
2018-09-02 10:01:13 +02:00
|
|
|
function ping_format_xml_data($data, $sysnotify_count, $notifs, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen)
|
2016-11-23 03:11:22 +01:00
|
|
|
{
|
2018-01-15 14:05:12 +01:00
|
|
|
$notifications = [];
|
2017-11-09 17:05:18 +01:00
|
|
|
foreach ($notifs as $key => $notif) {
|
2016-11-23 03:11:22 +01:00
|
|
|
$notifications[$key . ':note'] = $notif['message'];
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$notifications[$key . ':@attributes'] = [
|
2016-11-23 03:11:22 +01:00
|
|
|
'id' => $notif['id'],
|
|
|
|
'href' => $notif['href'],
|
|
|
|
'name' => $notif['name'],
|
|
|
|
'url' => $notif['url'],
|
|
|
|
'photo' => $notif['photo'],
|
|
|
|
'date' => $notif['date'],
|
|
|
|
'seen' => $notif['seen'],
|
|
|
|
'timestamp' => $notif['timestamp']
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$sysmsg = [];
|
2017-11-09 17:05:18 +01:00
|
|
|
foreach ($sysmsgs as $key => $m) {
|
2016-11-23 03:11:22 +01:00
|
|
|
$sysmsg[$key . ':notice'] = $m;
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
2017-11-09 17:05:18 +01:00
|
|
|
foreach ($sysmsgs_info as $key => $m) {
|
2016-11-23 03:11:22 +01:00
|
|
|
$sysmsg[$key . ':info'] = $m;
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
$data['notif'] = $notifications;
|
2018-01-15 14:05:12 +01:00
|
|
|
$data['@attributes'] = ['count' => $sysnotify_count + $data['intro'] + $data['mail'] + $data['register']];
|
2016-11-23 03:11:22 +01:00
|
|
|
$data['sysmsgs'] = $sysmsg;
|
2016-11-17 05:26:43 +01:00
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
if ($data['register'] == 0) {
|
|
|
|
unset($data['register']);
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$groups = [];
|
2016-11-17 05:26:43 +01:00
|
|
|
if (count($groups_unseen)) {
|
|
|
|
foreach ($groups_unseen as $key => $item) {
|
|
|
|
$groups[$key . ':group'] = $item['count'];
|
2018-01-15 14:05:12 +01:00
|
|
|
$groups[$key . ':@attributes'] = ['id' => $item['id']];
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
|
|
|
$data['groups'] = $groups;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$forums = [];
|
2016-11-17 05:26:43 +01:00
|
|
|
if (count($forums_unseen)) {
|
|
|
|
foreach ($forums_unseen as $key => $item) {
|
2018-02-12 03:25:09 +01:00
|
|
|
$forums[$key . ':forum'] = $item['count'];
|
|
|
|
$forums[$key . ':@attributes'] = ['id' => $item['id']];
|
2016-11-17 05:26:43 +01:00
|
|
|
}
|
|
|
|
$data['forums'] = $forums;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
2016-11-23 03:11:22 +01:00
|
|
|
}
|