friendica/src/Module/Notifications/Notification.php

142 lines
3.8 KiB
PHP
Raw Normal View History

2019-05-18 18:59:41 +02:00
<?php
2020-02-09 15:45:36 +01:00
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
2020-02-09 15:45:36 +01:00
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2019-05-18 18:59:41 +02:00
namespace Friendica\Module\Notifications;
use Friendica\BaseModule;
use Friendica\Core\System;
use Friendica\DI;
use Friendica\Model\Contact;
use Friendica\Module\Security\Login;
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
{
/**
* {@inheritDoc}
*
* @throws HTTPException\InternalServerErrorException
* @throws HTTPException\NotFoundException
* @throws HTTPException\UnauthorizedException
* @throws \ImagickException
* @throws \Exception
*/
protected function post(array $request = [])
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
$request_id = $this->parameters['id'] ?? false;
2020-01-28 22:41:38 +01:00
2020-01-28 23:21:24 +01:00
if ($request_id) {
$intro = DI::intro()->selectOneById($request_id, local_user());
2020-01-28 22:41:38 +01:00
switch ($_POST['submit']) {
case DI::l10n()->t('Discard'):
Contact\Introduction::discard($intro);
DI::intro()->delete($intro);
2020-01-28 22:41:38 +01:00
break;
case DI::l10n()->t('Ignore'):
2021-10-19 21:04:24 +02:00
$intro->ignore();
DI::intro()->save($intro);
2020-01-28 22:41:38 +01:00
break;
}
DI::baseUrl()->redirect('notifications/intros');
}
}
/**
* {@inheritDoc}
*
* @throws HTTPException\UnauthorizedException
*/
protected function rawContent(array $request = [])
2019-05-18 20:07:56 +02:00
{
if (!local_user()) {
throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
}
if (DI::args()->get(1) === 'mark' && DI::args()->get(2) === 'all') {
try {
2021-09-18 06:03:32 +02:00
DI::notification()->setAllSeenForUser(local_user());
$success = DI::notify()->setAllSeenForUser(local_user());
} catch (\Exception $e) {
2020-01-28 23:36:28 +01:00
DI::logger()->warning('set all seen failed.', ['exception' => $e]);
$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
}
}
/**
* {@inheritDoc}
*
* Redirect to the notifications main page or to the url for the chosen notifications
2019-05-18 18:59:41 +02:00
*
* @throws HTTPException\NotFoundException In case the notification is either not existing or is not for this user
2019-05-18 18:59:41 +02:00
* @throws HTTPException\InternalServerErrorException
* @throws \Exception
2019-05-18 18:59:41 +02:00
*/
protected function content(array $request = []): string
2019-05-18 18:59:41 +02:00
{
if (!local_user()) {
2020-03-01 15:38:23 +01:00
notice(DI::l10n()->t('You must be logged in to show this page.'));
return Login::form();
}
$request_id = $this->parameters['id'] ?? false;
2020-01-28 23:21:24 +01:00
if ($request_id) {
$Notify = DI::notify()->selectOneById($request_id);
if ($Notify->uid !== local_user()) {
throw new HTTPException\ForbiddenException();
}
if (DI::pConfig()->get(local_user(), 'system', 'detailed_notif')) {
$Notify->setSeen();
DI::notify()->save($Notify);
} else {
if ($Notify->uriId) {
2021-09-18 06:03:32 +02:00
DI::notification()->setAllSeenForUser($Notify->uid, ['target-uri-id' => $Notify->uriId]);
}
DI::notify()->setAllSeenForRelatedNotify($Notify);
}
if ((string)$Notify->link) {
System::externalRedirect($Notify->link);
2019-05-18 20:34:11 +02:00
}
DI::baseUrl()->redirect();
2019-05-18 20:34:11 +02:00
}
DI::baseUrl()->redirect('notifications/system');
return '';
2019-05-18 18:59:41 +02:00
}
}