friendica/src/Module/Notifications/Notification.php

91 lines
2.0 KiB
PHP
Raw Normal View History

2019-05-18 16:59:41 +00:00
<?php
namespace Friendica\Module\Notifications;
use Friendica\BaseModule;
use Friendica\Core\System;
use Friendica\DI;
2019-05-18 16:59:41 +00:00
use Friendica\Network\HTTPException;
/**
* Interacting with the /notification command
2019-05-18 16:59:41 +00:00
*/
class Notification extends BaseModule
2019-05-18 16:59:41 +00:00
{
public static function init(array $parameters = [])
2019-05-18 16:59:41 +00:00
{
if (!local_user()) {
throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
2019-05-18 16:59:41 +00:00
}
2019-05-18 18:07:56 +00:00
}
2020-01-28 21:41:38 +00:00
public static function post(array $parameters = [])
{
$request_id = $parameters['id'] ?? false;
2020-01-28 22:21:24 +00:00
if ($request_id) {
2020-01-28 21:41:38 +00:00
$intro = DI::intro()->selectFirst(['id' => $request_id, 'uid' => local_user()]);
switch ($_POST['submit']) {
case DI::l10n()->t('Discard'):
$intro->discard();
break;
case DI::l10n()->t('Ignore'):
$intro->ignore();
break;
}
DI::baseUrl()->redirect('notifications/intros');
}
}
public static function rawContent(array $parameters = [])
2019-05-18 18:07:56 +00:00
{
2019-05-18 16:59:41 +00:00
// @TODO: Replace with parameter from router
if (DI::args()->get(1) === 'mark' && DI::args()->get(2) === 'all') {
try {
$success = DI::notify()->setAllSeen();
}catch (\Exception $e) {
$success = false;
}
2019-05-18 16:59:41 +00: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 16:59:41 +00:00
*
* @return string|void
* @throws HTTPException\InternalServerErrorException
*/
public static function content(array $parameters = [])
2019-05-18 16:59:41 +00:00
{
2020-01-28 22:21:24 +00:00
$request_id = $parameters['id'] ?? false;
if ($request_id) {
try {
2020-01-28 22:21:24 +00:00
$notification = DI::notify()->getByID($request_id);
$notification->setSeen();
if (!empty($notification->link)) {
System::externalRedirect($notification->link);
2019-05-18 18:34:11 +00:00
}
} catch (HTTPException\NotFoundException $e) {
info(DI::l10n()->t('Invalid notification.'));
2019-05-18 18:34:11 +00:00
}
DI::baseUrl()->redirect();
2019-05-18 18:34:11 +00:00
}
2019-05-18 16:59:41 +00:00
// @TODO: Replace with parameter from router
DI::baseUrl()->redirect('notifications/system');
2019-05-18 16:59:41 +00:00
}
}
2020-01-28 22:21:24 +00:00