2010-07-20 07:52:31 +02:00
|
|
|
<?php
|
2017-11-09 17:05:18 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-09 17:05:18 +01:00
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
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;
|
2020-01-18 15:41:19 +01:00
|
|
|
use Friendica\Core\Cache\Duration;
|
2018-12-26 07:06:24 +01:00
|
|
|
use Friendica\Core\Hook;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 23:00:08 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-09 19:45:17 +01:00
|
|
|
use Friendica\Model\Group;
|
2021-01-23 10:53:44 +01:00
|
|
|
use Friendica\Model\Notification;
|
2021-01-16 23:37:27 +01:00
|
|
|
use Friendica\Model\Post;
|
2020-05-26 07:18:50 +02:00
|
|
|
use Friendica\Model\Verb;
|
2020-05-07 20:39:39 +02:00
|
|
|
use Friendica\Protocol\Activity;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2021-06-29 22:26:58 +02:00
|
|
|
use Friendica\Util\Proxy;
|
2018-02-03 18:25:58 +01:00
|
|
|
use Friendica\Util\Temporal;
|
2017-11-10 13:45:33 +01:00
|
|
|
use Friendica\Util\XML;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2016-11-23 03:11:22 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Outputs the counts and the lists of various notifications
|
2016-11-23 03:11:22 +01:00
|
|
|
*
|
|
|
|
* 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:
|
|
|
|
* {
|
2019-01-07 07:07:42 +01:00
|
|
|
* "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": [ ],
|
2020-01-25 17:25:11 +01:00
|
|
|
* "notification": 0,
|
2019-01-07 07:07:42 +01:00
|
|
|
* "notifications": [ ],
|
|
|
|
* "sysmsgs": {
|
|
|
|
* "notice": [ ],
|
|
|
|
* "info": [ ]
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* }
|
2016-11-23 03:11:22 +01:00
|
|
|
*
|
|
|
|
* @param App $a The Friendica App instance
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2016-11-23 03:11:22 +01:00
|
|
|
*/
|
|
|
|
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
|
|
|
$regs = [];
|
|
|
|
$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
|
|
|
}
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2012-05-23 01:01:07 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 00:17:24 +01:00
|
|
|
$notifications = ping_get_notifications(local_user());
|
2016-11-23 03:11:22 +01:00
|
|
|
|
2020-07-18 17:49:10 +02:00
|
|
|
$condition = ["`unseen` AND `uid` = ? AND NOT `origin` AND (`vid` != ? OR `vid` IS NULL)",
|
|
|
|
local_user(), Verb::getID(Activity::FOLLOW)];
|
2021-07-22 17:35:30 +02:00
|
|
|
$items = Post::selectForUser(local_user(), ['wall', 'uid', 'uri-id'], $condition, ['limit' => 1000]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($items)) {
|
2021-05-11 03:42:59 +02:00
|
|
|
$items_unseen = Post::toArray($items, false);
|
2018-01-15 14:05:12 +01:00
|
|
|
$arr = ['items' => $items_unseen];
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('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
|
|
|
}
|
2020-07-18 17:49:10 +02:00
|
|
|
DBA::close($items);
|
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`
|
2020-09-28 23:33:40 +02:00
|
|
|
FROM `intro` INNER JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
|
|
|
|
WHERE `intro`.`uid` = %d AND NOT `intro`.`blocked` AND NOT `intro`.`ignore` 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`
|
2020-09-28 23:33:40 +02:00
|
|
|
FROM `intro` INNER JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
|
2020-11-25 21:25:16 +01:00
|
|
|
WHERE `intro`.`uid` = %d AND NOT `intro`.`blocked` AND NOT `intro`.`ignore` AND `intro`.`contact-id` != 0 AND (`intro`.`fid` = 0 OR `intro`.`fid` IS NULL)",
|
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
|
|
|
|
2021-08-09 21:48:39 +02:00
|
|
|
$myurl = DI::baseUrl() . '/profile/' . $a->getLoggedInUserNickname();
|
2021-10-03 21:43:49 +02:00
|
|
|
$mail_count = DBA::count('mail', ["`uid` = ? AND NOT `seen` AND `from-url` != ?", local_user(), $myurl]);
|
2014-02-16 17:36:52 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (intval(DI::config()->get('config', 'register_policy')) === \Friendica\Module\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();
|
2020-01-07 00:45:49 +01:00
|
|
|
$ev = DI::cache()->get($cachekey);
|
2017-01-13 14:04:37 +01:00
|
|
|
if (is_null($ev)) {
|
2021-10-03 21:43:49 +02:00
|
|
|
$ev = DBA::selectToArray('event', ['type', 'start', 'adjust'],
|
|
|
|
["`uid` = ? AND `start` < ? AND `finish` > ? AND NOT `ignore`",
|
|
|
|
local_user(), DateTimeFormat::utc('now + 7 days'), DateTimeFormat::utcNow()]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($ev)) {
|
2020-01-18 15:41:19 +01:00
|
|
|
DI::cache()->set($cachekey, $ev, Duration::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) {
|
2021-10-03 19:21:17 +02:00
|
|
|
$str_now = DateTimeFormat::localNow('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 ++;
|
|
|
|
}
|
2021-10-03 19:21:17 +02:00
|
|
|
if (DateTimeFormat::local($x['start'], '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;
|
2021-07-22 17:35:30 +02:00
|
|
|
$data['net'] = ($network_count < 1000) ? $network_count : '999+';
|
|
|
|
$data['home'] = ($home_count < 1000) ? $home_count : '999+';
|
2016-11-21 22:02:36 +01:00
|
|
|
$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
|
|
|
|
2020-11-17 00:17:24 +01:00
|
|
|
if (DBA::isResult($notifications)) {
|
|
|
|
foreach ($notifications as $notif) {
|
2016-11-17 05:26:43 +01:00
|
|
|
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,
|
2019-12-30 23:00:08 +01:00
|
|
|
'href' => DI::baseUrl() . '/notifications/intros/' . $intro['id'],
|
2020-11-17 00:17:24 +01:00
|
|
|
'name' => BBCode::convert($intro['name']),
|
2016-11-17 05:26:43 +01:00
|
|
|
'url' => $intro['url'],
|
|
|
|
'photo' => $intro['photo'],
|
|
|
|
'date' => $intro['datetime'],
|
|
|
|
'seen' => false,
|
2020-01-18 20:52:34 +01:00
|
|
|
'message' => DI::l10n()->t('{0} wants to be your friend'),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2020-11-17 00:17:24 +01:00
|
|
|
$notifications[] = $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)) {
|
2020-11-09 15:33:59 +01:00
|
|
|
if (count($regs) <= 1 || DI::pConfig()->get(local_user(), 'system', 'detailed_notif')) {
|
|
|
|
foreach ($regs as $reg) {
|
|
|
|
$notif = [
|
|
|
|
'id' => 0,
|
|
|
|
'href' => DI::baseUrl() . '/admin/users/pending',
|
|
|
|
'name' => $reg['name'],
|
|
|
|
'url' => $reg['url'],
|
|
|
|
'photo' => $reg['micro'],
|
|
|
|
'date' => $reg['created'],
|
|
|
|
'seen' => false,
|
|
|
|
'message' => DI::l10n()->t('{0} requested registration'),
|
|
|
|
];
|
2020-11-22 05:09:27 +01:00
|
|
|
$notifications[] = $notif;
|
2020-11-09 15:33:59 +01:00
|
|
|
}
|
|
|
|
} else {
|
2018-01-15 14:05:12 +01:00
|
|
|
$notif = [
|
2018-07-10 14:27:56 +02:00
|
|
|
'id' => 0,
|
2020-11-08 18:02:58 +01:00
|
|
|
'href' => DI::baseUrl() . '/admin/users/pending',
|
2020-11-09 15:33:59 +01:00
|
|
|
'name' => $regs[0]['name'],
|
|
|
|
'url' => $regs[0]['url'],
|
|
|
|
'photo' => $regs[0]['micro'],
|
|
|
|
'date' => $regs[0]['created'],
|
2016-11-17 05:26:43 +01:00
|
|
|
'seen' => false,
|
2020-11-09 15:33:59 +01:00
|
|
|
'message' => DI::l10n()->t('{0} and %d others requested registration', count($regs) - 1),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2020-11-17 00:17:24 +01:00
|
|
|
$notifications[] = $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;
|
|
|
|
};
|
2020-11-17 00:17:24 +01:00
|
|
|
usort($notifications, $sort_function);
|
|
|
|
|
|
|
|
array_walk($notifications, function (&$notification) {
|
2021-06-29 22:26:58 +02:00
|
|
|
$notification['photo'] = Contact::getAvatarUrlForUrl($notification['url'], local_user(), Proxy::SIZE_MICRO);
|
2020-11-17 00:17:24 +01:00
|
|
|
$notification['timestamp'] = DateTimeFormat::local($notification['date']);
|
2021-06-29 22:26:58 +02:00
|
|
|
$notification['date'] = Temporal::getRelativeDate($notification['date']);
|
2020-11-17 00:17:24 +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
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($_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
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($_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;
|
2020-01-25 17:25:11 +01:00
|
|
|
$data['notification'] = $sysnotify_count + $intro_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
|
|
|
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2010-07-20 07:52:31 +02:00
|
|
|
}
|
|
|
|
|
2016-10-28 12:28:16 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Retrieves the notifications array for the given user ID
|
2016-10-28 12:28:16 +02:00
|
|
|
*
|
2016-10-29 04:14:51 +02:00
|
|
|
* @param int $uid User id
|
|
|
|
* @return array Associative array of notifications
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
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
|
|
|
|
|
|
|
do {
|
2017-11-09 17:05:18 +01:00
|
|
|
$r = q(
|
2021-02-22 20:47:08 +01:00
|
|
|
"SELECT `notify`.*, `post`.`visible`, `post`.`deleted`
|
|
|
|
FROM `notify` LEFT JOIN `post` ON `post`.`uri-id` = `notify`.`uri-id`
|
2015-04-22 08:39:27 +02:00
|
|
|
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),
|
2021-01-23 10:53:44 +01:00
|
|
|
intval(Notification\Type::INTRO),
|
|
|
|
intval(Notification\Type::MAIL),
|
2015-04-23 08:37:31 +02:00
|
|
|
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"]));
|
2021-09-18 07:08:29 +02:00
|
|
|
$notification["message"] = \Friendica\Navigation\Notifications\Entity\Notify::formatMessage($notification["name"], BBCode::toPlaintext($notification["msg"]));
|
2016-10-28 12:28:16 +02:00
|
|
|
|
2021-10-03 21:43:49 +02:00
|
|
|
// @todo Replace this with a call of the Notify model class
|
|
|
|
DBA::update('notify', ['name_cache' => $notification["name"], 'msg_cache' => $notification["message"]], ['id' => $notification["id"]]);
|
2016-10-28 12:28:16 +02:00
|
|
|
}
|
2015-04-23 08:37:31 +02:00
|
|
|
|
2020-01-28 23:21:24 +01:00
|
|
|
$notification["href"] = DI::baseUrl() . "/notification/" . $notification["id"];
|
2015-11-08 18:02:04 +01:00
|
|
|
|
2018-01-01 21:51:02 +01:00
|
|
|
if ($notification["visible"]
|
|
|
|
&& !$notification["deleted"]
|
2021-08-24 22:16:33 +02:00
|
|
|
&& empty($result['p:' . $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?
|
2021-08-23 17:07:14 +02:00
|
|
|
if (($notification['verb'] != Activity::POST) || DI::pConfig()->get(local_user(), 'system', 'detailed_notif')) {
|
|
|
|
$result[] = $notification;
|
2017-11-04 13:01:08 +01:00
|
|
|
} else {
|
2021-08-23 17:07:14 +02:00
|
|
|
$result['p:' . $notification['parent']] = $notification;
|
2017-11-04 13:01:08 +01:00
|
|
|
}
|
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
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Backward-compatible XML formatting for ping.php output
|
2016-11-17 05:26:43 +01:00
|
|
|
* @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
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param array $groups_unseen List of unseen group items
|
|
|
|
* @param array $forums_unseen List of unseen forum items
|
2018-09-02 19:48:07 +02:00
|
|
|
*
|
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
|
|
|
}
|