2012-02-20 22:50:05 -05:00
|
|
|
<?php
|
2018-01-22 09:16:25 -05:00
|
|
|
/**
|
|
|
|
* @file mod/notify.php
|
|
|
|
*/
|
2018-02-03 12:25:58 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-02-14 21:33:55 -05:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-01-22 09:16:25 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-02-03 12:25:58 -05:00
|
|
|
use Friendica\Core\NotificationsManager;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2017-08-26 02:04:21 -04:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-28 06:18:08 -05:00
|
|
|
use Friendica\Model\Item;
|
2018-02-03 12:25:58 -05:00
|
|
|
use Friendica\Module\Login;
|
|
|
|
use Friendica\Util\Temporal;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-01-22 09:16:25 -05:00
|
|
|
function notify_init(App $a)
|
|
|
|
{
|
2016-12-20 05:27:40 -05:00
|
|
|
if (! local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-20 05:27:40 -05:00
|
|
|
|
2016-02-07 08:27:13 -05:00
|
|
|
$nm = new NotificationsManager();
|
2016-12-20 05:27:40 -05:00
|
|
|
|
|
|
|
if ($a->argc > 2 && $a->argv[1] === 'view' && intval($a->argv[2])) {
|
2016-02-07 08:27:13 -05:00
|
|
|
$note = $nm->getByID($a->argv[2]);
|
|
|
|
if ($note) {
|
|
|
|
$nm->setSeen($note);
|
2017-01-09 07:14:25 -05:00
|
|
|
|
2014-07-26 09:01:01 -04:00
|
|
|
// The friendica client has problems with the GUID. this is some workaround
|
2018-10-09 13:58:58 -04:00
|
|
|
if ($a->isFriendicaApp()) {
|
2014-07-26 09:01:01 -04:00
|
|
|
require_once("include/items.php");
|
2016-02-07 08:27:13 -05:00
|
|
|
$urldata = parse_url($note['link']);
|
2014-07-26 09:01:01 -04:00
|
|
|
$guid = basename($urldata["path"]);
|
2018-01-28 06:18:08 -05:00
|
|
|
$itemdata = Item::getIdAndNickByGuid($guid, local_user());
|
2016-12-20 05:27:40 -05:00
|
|
|
if ($itemdata["id"] != 0) {
|
2017-08-26 03:32:10 -04:00
|
|
|
$note['link'] = System::baseUrl().'/display/'.$itemdata["nick"].'/'.$itemdata["id"];
|
2016-12-20 05:27:40 -05:00
|
|
|
}
|
2014-07-26 09:01:01 -04:00
|
|
|
}
|
|
|
|
|
2018-10-19 14:11:27 -04:00
|
|
|
System::externalRedirect($note['link']);
|
2012-02-20 22:50:05 -05:00
|
|
|
}
|
|
|
|
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect();
|
2012-02-20 22:50:05 -05:00
|
|
|
}
|
2012-02-21 19:59:57 -05:00
|
|
|
|
2018-01-22 09:16:25 -05:00
|
|
|
if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
|
2016-02-07 08:27:13 -05:00
|
|
|
$r = $nm->setAllSeen();
|
2018-01-15 08:05:12 -05:00
|
|
|
$j = json_encode(['result' => ($r) ? 'success' : 'fail']);
|
2012-02-21 19:59:57 -05:00
|
|
|
echo $j;
|
|
|
|
killme();
|
|
|
|
}
|
2012-02-20 22:50:05 -05:00
|
|
|
}
|
|
|
|
|
2018-01-22 09:16:25 -05:00
|
|
|
function notify_content(App $a)
|
|
|
|
{
|
2016-12-20 05:27:40 -05:00
|
|
|
if (! local_user()) {
|
2017-12-17 11:40:59 -05:00
|
|
|
return Login::form();
|
2016-12-20 05:27:40 -05:00
|
|
|
}
|
2014-02-16 11:36:52 -05:00
|
|
|
|
2016-02-07 08:27:13 -05:00
|
|
|
$nm = new NotificationsManager();
|
2017-01-09 07:14:25 -05:00
|
|
|
|
2016-02-07 08:27:13 -05:00
|
|
|
$notif_tpl = get_markup_template('notifications.tpl');
|
2012-02-23 20:37:03 -05:00
|
|
|
|
2016-02-07 08:27:13 -05:00
|
|
|
$not_tpl = get_markup_template('notify.tpl');
|
2014-02-16 11:36:52 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$r = $nm->getAll(['seen'=>0]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r) > 0) {
|
2016-02-07 08:27:13 -05:00
|
|
|
foreach ($r as $it) {
|
2018-10-31 10:35:50 -04:00
|
|
|
$notif_content .= Renderer::replaceMacros($not_tpl, [
|
2017-08-26 03:32:10 -04:00
|
|
|
'$item_link' => System::baseUrl(true).'/notify/view/'. $it['id'],
|
2016-02-07 08:27:13 -05:00
|
|
|
'$item_image' => $it['photo'],
|
2018-02-14 21:33:55 -05:00
|
|
|
'$item_text' => strip_tags(BBCode::convert($it['msg'])),
|
2018-02-03 12:25:58 -05:00
|
|
|
'$item_when' => Temporal::getRelativeDate($it['date'])
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2012-02-23 20:37:03 -05:00
|
|
|
}
|
2016-02-07 08:27:13 -05:00
|
|
|
} else {
|
2018-01-22 09:16:25 -05:00
|
|
|
$notif_content .= L10n::t('No more system notifications.');
|
2016-02-07 08:27:13 -05:00
|
|
|
}
|
2014-02-16 11:36:52 -05:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$o = Renderer::replaceMacros($notif_tpl, [
|
2018-01-22 09:16:25 -05:00
|
|
|
'$notif_header' => L10n::t('System Notifications'),
|
2016-02-07 08:27:13 -05:00
|
|
|
'$tabs' => false, // $tabs,
|
|
|
|
'$notif_content' => $notif_content,
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2012-02-23 20:37:03 -05:00
|
|
|
|
|
|
|
return $o;
|
2012-12-22 14:57:29 -05:00
|
|
|
}
|