2019-05-18 12:59:41 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Notifications;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\System;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-18 12:59:41 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interacting with the /notify command
|
|
|
|
*/
|
|
|
|
class Notify extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function init(array $parameters = [])
|
2019-05-18 12:59:41 -04:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
|
2019-05-18 12:59:41 -04:00
|
|
|
}
|
2019-05-18 14:07:56 -04:00
|
|
|
}
|
|
|
|
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-18 14:07:56 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-05-18 12:59:41 -04:00
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
|
2019-12-15 17:28:01 -05:00
|
|
|
$success = DI::notify()->setAllSeen();
|
2019-05-18 12:59:41 -04:00
|
|
|
|
|
|
|
header('Content-type: application/json; charset=utf-8');
|
|
|
|
echo json_encode([
|
|
|
|
'result' => ($success) ? 'success' : 'fail',
|
|
|
|
]);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-05-18 14:34:11 -04:00
|
|
|
* Redirect to the notifications main page or to the url for the chosen notify
|
2019-05-18 12:59:41 -04:00
|
|
|
*
|
|
|
|
* @return string|void
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-18 12:59:41 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-05-18 12:59:41 -04:00
|
|
|
|
2019-05-18 14:34:11 -04:00
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if ($a->argc > 2 && $a->argv[1] === 'view' && intval($a->argv[2])) {
|
2019-12-15 17:28:01 -05:00
|
|
|
$notificationsManager = DI::notify();
|
2019-05-18 14:34:11 -04: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']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect();
|
2019-05-18 14:34:11 -04:00
|
|
|
}
|
|
|
|
|
2019-05-18 12:59:41 -04:00
|
|
|
// @TODO: Replace with parameter from router
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('notifications/system');
|
2019-05-18 12:59:41 -04:00
|
|
|
}
|
|
|
|
}
|