2019-10-21 19:18:59 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00: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-10-21 19:18:59 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module\Item;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Session;
|
2019-10-23 14:24:19 +00:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2021-01-22 21:03:36 +00:00
|
|
|
use Friendica\Model\Post;
|
2019-10-21 19:18:59 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module for ignoring threads or user items
|
|
|
|
*/
|
2019-10-24 07:09:47 +00:00
|
|
|
class Ignore extends BaseModule
|
2019-10-21 19:18:59 +00:00
|
|
|
{
|
2021-11-14 22:13:47 +00:00
|
|
|
public function rawContent()
|
2019-10-21 19:18:59 +00:00
|
|
|
{
|
2019-12-15 22:28:01 +00:00
|
|
|
$l10n = DI::l10n();
|
2019-10-21 19:18:59 +00:00
|
|
|
|
|
|
|
if (!Session::isAuthenticated()) {
|
|
|
|
throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
|
|
|
|
}
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
if (empty($this->parameters['id'])) {
|
2019-10-21 19:18:59 +00:00
|
|
|
throw new HTTPException\BadRequestException();
|
|
|
|
}
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
$itemId = intval($this->parameters['id']);
|
2021-01-30 21:23:46 +00:00
|
|
|
|
|
|
|
$dba = DI::dba();
|
|
|
|
|
2021-01-31 23:37:34 +00:00
|
|
|
$thread = Post::selectFirst(['uri-id', 'uid'], ['id' => $itemId, 'gravity' => GRAVITY_PARENT]);
|
2019-10-21 19:18:59 +00:00
|
|
|
if (!$dba->isResult($thread)) {
|
2021-01-30 21:23:46 +00:00
|
|
|
throw new HTTPException\NotFoundException();
|
2019-10-21 19:18:59 +00:00
|
|
|
}
|
|
|
|
|
2021-01-31 23:37:34 +00:00
|
|
|
$ignored = !Post\ThreadUser::getIgnored($thread['uri-id'], local_user());
|
2019-10-21 19:18:59 +00:00
|
|
|
|
2021-01-31 23:37:34 +00:00
|
|
|
if (in_array($thread['uid'], [0, local_user()])) {
|
|
|
|
Post\ThreadUser::setIgnored($thread['uri-id'], local_user(), $ignored);
|
|
|
|
} else {
|
|
|
|
throw new HTTPException\BadRequestException();
|
2019-10-21 19:18:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// See if we've been passed a return path to redirect to
|
|
|
|
$return_path = $_REQUEST['return'] ?? '';
|
|
|
|
if (!empty($return_path)) {
|
|
|
|
$rand = '_=' . time();
|
|
|
|
if (strpos($return_path, '?')) {
|
|
|
|
$rand = "&$rand";
|
|
|
|
} else {
|
|
|
|
$rand = "?$rand";
|
|
|
|
}
|
|
|
|
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path . $rand);
|
2019-10-21 19:18:59 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 21:23:46 +00:00
|
|
|
$return = [
|
|
|
|
'status' => 'ok',
|
|
|
|
'item_id' => $itemId,
|
|
|
|
'verb' => 'ignore',
|
|
|
|
'state' => $ignored,
|
|
|
|
];
|
|
|
|
|
|
|
|
System::jsonExit($return);
|
2019-10-21 19:18:59 +00:00
|
|
|
}
|
|
|
|
}
|