2019-05-18 12:59:41 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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 12:59:41 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module\Notifications;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\System;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2020-03-01 07:44:02 -05:00
|
|
|
use Friendica\Module\Security\Login;
|
2019-05-18 12:59:41 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
2020-01-24 12:32:38 -05:00
|
|
|
* Interacting with the /notification command
|
2019-05-18 12:59:41 -04:00
|
|
|
*/
|
2020-01-24 12:32:38 -05:00
|
|
|
class Notification extends BaseModule
|
2019-05-18 12:59:41 -04:00
|
|
|
{
|
2020-03-01 07:44:02 -05:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
* @throws HTTPException\NotFoundException
|
|
|
|
* @throws HTTPException\UnauthorizedException
|
|
|
|
* @throws \ImagickException
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function post(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
|
|
|
|
2020-01-28 16:41:38 -05:00
|
|
|
$request_id = $parameters['id'] ?? false;
|
|
|
|
|
2020-01-28 17:21:24 -05:00
|
|
|
if ($request_id) {
|
2020-01-28 16:41:38 -05: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');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-01 07:44:02 -05:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @throws HTTPException\UnauthorizedException
|
|
|
|
*/
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-18 14:07:56 -04:00
|
|
|
{
|
2020-03-01 07:44:02 -05:00
|
|
|
if (!local_user()) {
|
|
|
|
throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
|
|
|
|
}
|
|
|
|
|
2020-01-24 12:32:38 -05:00
|
|
|
if (DI::args()->get(1) === 'mark' && DI::args()->get(2) === 'all') {
|
2020-01-24 20:01:49 -05:00
|
|
|
try {
|
2020-01-31 15:34:12 -05:00
|
|
|
$success = DI::notify()->setSeen();
|
|
|
|
} catch (\Exception $e) {
|
2020-01-28 17:36:28 -05:00
|
|
|
DI::logger()->warning('set all seen failed.', ['exception' => $e]);
|
2020-01-24 20:01:49 -05:00
|
|
|
$success = false;
|
|
|
|
}
|
2019-05-18 12:59:41 -04:00
|
|
|
|
2020-01-28 17:36:28 -05:00
|
|
|
System::jsonExit(['result' => (($success) ? 'success' : 'fail')]);
|
2019-05-18 12:59:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-03-01 07:44:02 -05:00
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
2020-01-24 12:32:38 -05:00
|
|
|
* Redirect to the notifications main page or to the url for the chosen notifications
|
2019-05-18 12:59:41 -04:00
|
|
|
*
|
2020-03-01 07:44:02 -05:00
|
|
|
* @throws HTTPException\NotFoundException In case the notification is either not existing or is not for this user
|
2019-05-18 12:59:41 -04:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
2020-03-01 07:44:02 -05:00
|
|
|
* @throws \Exception
|
2019-05-18 12:59:41 -04:00
|
|
|
*/
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-18 12:59:41 -04:00
|
|
|
{
|
2020-03-01 07:44:02 -05:00
|
|
|
if (!local_user()) {
|
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
|
|
|
return Login::form();
|
|
|
|
}
|
|
|
|
|
2020-01-28 17:21:24 -05:00
|
|
|
$request_id = $parameters['id'] ?? false;
|
|
|
|
|
|
|
|
if ($request_id) {
|
2020-03-01 07:44:02 -05:00
|
|
|
$notify = DI::notify()->getByID($request_id);
|
|
|
|
DI::notify()->setSeen(true, $notify);
|
2020-01-24 20:01:49 -05:00
|
|
|
|
2020-03-01 07:44:02 -05:00
|
|
|
if (!empty($notify->link)) {
|
|
|
|
System::externalRedirect($notify->link);
|
2019-05-18 14:34:11 -04:00
|
|
|
}
|
|
|
|
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect();
|
2019-05-18 14:34:11 -04:00
|
|
|
}
|
|
|
|
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('notifications/system');
|
2020-03-01 07:44:02 -05:00
|
|
|
|
|
|
|
throw new HTTPException\InternalServerErrorException('Invalid situation.');
|
2019-05-18 12:59:41 -04:00
|
|
|
}
|
|
|
|
}
|