2019-05-18 18:59:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Notifications;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\System;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2019-05-18 18:59:41 +02:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
2020-01-24 18:32:38 +01:00
|
|
|
* Interacting with the /notification command
|
2019-05-18 18:59:41 +02:00
|
|
|
*/
|
2020-01-24 18:32:38 +01:00
|
|
|
class Notification extends BaseModule
|
2019-05-18 18:59:41 +02:00
|
|
|
{
|
2019-11-05 22:48:54 +01:00
|
|
|
public static function init(array $parameters = [])
|
2019-05-18 18:59:41 +02:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-01-28 22:41:38 +01:00
|
|
|
public static function post(array $parameters = [])
|
|
|
|
{
|
|
|
|
$request_id = $parameters['id'] ?? false;
|
|
|
|
|
2020-01-28 23:21:24 +01:00
|
|
|
if ($request_id) {
|
2020-01-28 22:41:38 +01: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');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-05 22:48:54 +01: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
|
2020-01-24 18:32:38 +01:00
|
|
|
if (DI::args()->get(1) === 'mark' && DI::args()->get(2) === 'all') {
|
2020-01-25 02:01:49 +01:00
|
|
|
try {
|
2020-01-26 20:30:24 +01:00
|
|
|
$success = DI::notify()->setAllSeen();
|
2020-01-25 02:01:49 +01:00
|
|
|
}catch (\Exception $e) {
|
2020-01-28 23:36:28 +01:00
|
|
|
DI::logger()->warning('set all seen failed.', ['exception' => $e]);
|
2020-01-25 02:01:49 +01:00
|
|
|
$success = false;
|
|
|
|
}
|
2019-05-18 18:59:41 +02:00
|
|
|
|
2020-01-28 23:36:28 +01:00
|
|
|
System::jsonExit(['result' => (($success) ? 'success' : 'fail')]);
|
2019-05-18 18:59:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-24 18:32:38 +01:00
|
|
|
* 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
|
|
|
|
*/
|
2019-11-05 22:48:54 +01:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-18 18:59:41 +02:00
|
|
|
{
|
2020-01-28 23:21:24 +01:00
|
|
|
$request_id = $parameters['id'] ?? false;
|
|
|
|
|
|
|
|
if ($request_id) {
|
2020-01-25 02:01:49 +01:00
|
|
|
try {
|
2020-01-28 23:21:24 +01:00
|
|
|
$notification = DI::notify()->getByID($request_id);
|
2020-01-25 02:01:49 +01:00
|
|
|
$notification->setSeen();
|
|
|
|
|
|
|
|
if (!empty($notification->link)) {
|
|
|
|
System::externalRedirect($notification->link);
|
2019-05-18 20:34:11 +02:00
|
|
|
}
|
2020-01-25 02:01:49 +01:00
|
|
|
|
|
|
|
} catch (HTTPException\NotFoundException $e) {
|
|
|
|
info(DI::l10n()->t('Invalid notification.'));
|
2019-05-18 20:34:11 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect();
|
2019-05-18 20:34:11 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('notifications/system');
|
2019-05-18 18:59:41 +02:00
|
|
|
}
|
|
|
|
}
|
2020-01-28 23:21:24 +01:00
|
|
|
|