friendica/src/Module/Notifications/Notify.php

72 lines
1.8 KiB
PHP
Raw Normal View History

2019-05-18 18:59:41 +02:00
<?php
namespace Friendica\Module\Notifications;
use Friendica\BaseModule;
use Friendica\BaseObject;
2019-05-18 20:07:56 +02:00
use Friendica\Core\L10n;
2019-05-18 18:59:41 +02:00
use Friendica\Core\System;
use Friendica\Model\Notify as ModelNotify;
2019-05-18 18:59:41 +02:00
use Friendica\Network\HTTPException;
/**
* Interacting with the /notify command
*/
class Notify extends BaseModule
{
2019-11-05 21:22:54 +01:00
public static function init($parameters)
2019-05-18 18:59:41 +02:00
{
if (!local_user()) {
throw new HTTPException\UnauthorizedException(L10n::t('Permission denied.'));
}
2019-05-18 20:07:56 +02:00
}
2019-11-05 20:16:26 +01:00
public static function rawContent($parameters)
2019-05-18 20:07:56 +02:00
{
$a = self::getApp();
2019-05-18 18:59:41 +02:00
// @TODO: Replace with parameter from router
if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
/** @var ModelNotify $notificationsManager */
$notificationsManager = self::getClass(ModelNotify::class);
2019-05-18 18:59:41 +02:00
$success = $notificationsManager->setAllSeen();
header('Content-type: application/json; charset=utf-8');
echo json_encode([
'result' => ($success) ? 'success' : 'fail',
]);
exit();
}
}
/**
2019-05-18 20:34:11 +02:00
* Redirect to the notifications main page or to the url for the chosen notify
2019-05-18 18:59:41 +02:00
*
* @return string|void
* @throws HTTPException\InternalServerErrorException
*/
2019-11-05 21:22:54 +01:00
public static function content($parameters)
2019-05-18 18:59:41 +02:00
{
$a = self::getApp();
2019-05-18 20:34:11 +02:00
// @TODO: Replace with parameter from router
if ($a->argc > 2 && $a->argv[1] === 'view' && intval($a->argv[2])) {
/** @var ModelNotify $notificationsManager */
$notificationsManager = BaseObject::getClass(ModelNotify::class);
2019-05-18 20:34:11 +02:00
// @TODO: Replace with parameter from router
$note = $notificationsManager->getByID($a->argv[2]);
if (!empty($note)) {
$notificationsManager->setSeen($note);
if (!empty($note['link'])) {
System::externalRedirect($note['link']);
}
}
$a->internalRedirect();
}
2019-05-18 18:59:41 +02:00
// @TODO: Replace with parameter from router
2019-05-18 20:07:56 +02:00
$a->internalRedirect('notifications/system');
2019-05-18 18:59:41 +02:00
}
}