2019-10-21 21:18:59 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2024-01-02 20:57:26 +00:00
|
|
|
* @copyright Copyright (C) 2010-2024, 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-10-21 21:18:59 +02:00
|
|
|
|
|
|
|
namespace Friendica\Module\Item;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-10-23 16:24:19 +02:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2022-09-12 23:12:11 +02:00
|
|
|
use Friendica\Model\Item;
|
2021-01-22 16:03:36 -05:00
|
|
|
use Friendica\Model\Post;
|
2019-10-21 21:18:59 +02:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module for ignoring threads or user items
|
|
|
|
*/
|
2019-10-24 09:09:47 +02:00
|
|
|
class Ignore extends BaseModule
|
2019-10-21 21:18:59 +02:00
|
|
|
{
|
2021-11-20 15:38:03 +01:00
|
|
|
protected function rawContent(array $request = [])
|
2019-10-21 21:18:59 +02:00
|
|
|
{
|
2019-12-15 23:28:01 +01:00
|
|
|
$l10n = DI::l10n();
|
2019-10-21 21:18:59 +02:00
|
|
|
|
2022-10-20 22:59:12 +02:00
|
|
|
if (!DI::userSession()->isAuthenticated()) {
|
2019-10-21 21:18:59 +02:00
|
|
|
throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
|
|
|
|
}
|
|
|
|
|
2021-11-14 23:19:25 +01:00
|
|
|
if (empty($this->parameters['id'])) {
|
2019-10-21 21:18:59 +02:00
|
|
|
throw new HTTPException\BadRequestException();
|
|
|
|
}
|
|
|
|
|
2021-11-14 23:19:25 +01:00
|
|
|
$itemId = intval($this->parameters['id']);
|
2021-01-30 16:23:46 -05:00
|
|
|
|
|
|
|
$dba = DI::dba();
|
|
|
|
|
2022-09-12 23:12:11 +02:00
|
|
|
$thread = Post::selectFirst(['uri-id', 'uid'], ['id' => $itemId, 'gravity' => Item::GRAVITY_PARENT]);
|
2019-10-21 21:18:59 +02:00
|
|
|
if (!$dba->isResult($thread)) {
|
2021-01-30 16:23:46 -05:00
|
|
|
throw new HTTPException\NotFoundException();
|
2019-10-21 21:18:59 +02:00
|
|
|
}
|
|
|
|
|
2022-10-20 22:59:12 +02:00
|
|
|
$ignored = !Post\ThreadUser::getIgnored($thread['uri-id'], DI::userSession()->getLocalUserId());
|
2019-10-21 21:18:59 +02:00
|
|
|
|
2022-10-20 22:59:12 +02:00
|
|
|
if (in_array($thread['uid'], [0, DI::userSession()->getLocalUserId()])) {
|
|
|
|
Post\ThreadUser::setIgnored($thread['uri-id'], DI::userSession()->getLocalUserId(), $ignored);
|
2021-01-31 23:37:34 +00:00
|
|
|
} else {
|
|
|
|
throw new HTTPException\BadRequestException();
|
2019-10-21 21:18:59 +02: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-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path . $rand);
|
2019-10-21 21:18:59 +02:00
|
|
|
}
|
|
|
|
|
2021-01-30 16:23:46 -05:00
|
|
|
$return = [
|
|
|
|
'status' => 'ok',
|
|
|
|
'item_id' => $itemId,
|
|
|
|
'verb' => 'ignore',
|
|
|
|
'state' => $ignored,
|
|
|
|
];
|
|
|
|
|
2023-09-21 12:16:17 -04:00
|
|
|
$this->jsonExit($return);
|
2019-10-21 21:18:59 +02:00
|
|
|
}
|
|
|
|
}
|