friendica/src/Module/Notifications/Notification.php

63 lines
1.6 KiB
PHP
Raw Normal View History

2019-05-18 18:59:41 +02:00
<?php
namespace Friendica\Module\Notifications;
use Friendica\BaseModule;
use Friendica\Core\System;
use Friendica\DI;
2019-05-18 18:59:41 +02:00
use Friendica\Network\HTTPException;
/**
* Interacting with the /notification command
2019-05-18 18:59:41 +02:00
*/
class Notification extends BaseModule
2019-05-18 18:59:41 +02:00
{
public static function init(array $parameters = [])
2019-05-18 18:59:41 +02:00
{
if (!local_user()) {
throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
2019-05-18 18:59:41 +02:00
}
2019-05-18 20:07:56 +02:00
}
public static function rawContent(array $parameters = [])
2019-05-18 20:07:56 +02:00
{
2019-05-18 18:59:41 +02:00
// @TODO: Replace with parameter from router
if (DI::args()->get(1) === 'mark' && DI::args()->get(2) === 'all') {
$success = DI::notification()->setAllSeen();
2019-05-18 18:59:41 +02:00
header('Content-type: application/json; charset=utf-8');
echo json_encode([
'result' => ($success) ? 'success' : 'fail',
]);
exit();
}
}
/**
* Redirect to the notifications main page or to the url for the chosen notifications
2019-05-18 18:59:41 +02:00
*
* @return string|void
* @throws HTTPException\InternalServerErrorException
*/
public static function content(array $parameters = [])
2019-05-18 18:59:41 +02:00
{
2019-05-18 20:34:11 +02:00
// @TODO: Replace with parameter from router
if (DI::args()->getArgc() > 2 && DI::args()->get(1) === 'view' && intval(DI::args()->get(2))) {
$notificationManager = DI::notification();
2019-05-18 20:34:11 +02:00
// @TODO: Replace with parameter from router
$note = $notificationManager->getByID(DI::args()->get(2));
2019-05-18 20:34:11 +02:00
if (!empty($note)) {
$notificationManager->setSeen($note);
2019-05-18 20:34:11 +02:00
if (!empty($note['link'])) {
System::externalRedirect($note['link']);
}
}
DI::baseUrl()->redirect();
2019-05-18 20:34:11 +02:00
}
2019-05-18 18:59:41 +02:00
// @TODO: Replace with parameter from router
DI::baseUrl()->redirect('notifications/system');
2019-05-18 18:59:41 +02:00
}
}