2019-11-09 04:17:18 +01:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, 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-11-09 04:17:18 +01:00
|
|
|
|
2021-01-31 00:42:23 +01:00
|
|
|
namespace Friendica\Module\Item;
|
2019-11-09 04:17:18 +01:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2021-01-31 00:42:23 +01:00
|
|
|
use Friendica\Core\Session;
|
|
|
|
use Friendica\Core\System;
|
2021-02-01 00:37:34 +01:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2021-02-01 00:37:34 +01:00
|
|
|
use Friendica\Model\Post;
|
2021-01-31 00:42:23 +01:00
|
|
|
use Friendica\Network\HTTPException;
|
2019-11-09 04:17:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle pinned items
|
|
|
|
*/
|
2021-01-31 00:42:23 +01:00
|
|
|
class Pin extends BaseModule
|
2019-11-09 04:17:18 +01:00
|
|
|
{
|
2021-11-20 15:38:03 +01:00
|
|
|
protected function rawContent(array $request = [])
|
2019-11-09 04:17:18 +01:00
|
|
|
{
|
2021-01-31 00:42:23 +01:00
|
|
|
$l10n = DI::l10n();
|
|
|
|
|
|
|
|
if (!Session::isAuthenticated()) {
|
|
|
|
throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
|
2019-11-09 04:17:18 +01:00
|
|
|
}
|
|
|
|
|
2021-11-14 23:19:25 +01:00
|
|
|
if (empty($this->parameters['id'])) {
|
2021-01-31 00:42:23 +01:00
|
|
|
throw new HTTPException\BadRequestException();
|
2019-11-09 04:17:18 +01:00
|
|
|
}
|
|
|
|
|
2021-11-14 23:19:25 +01:00
|
|
|
$itemId = intval($this->parameters['id']);
|
2019-11-09 04:17:18 +01:00
|
|
|
|
2021-02-01 00:37:34 +01:00
|
|
|
$item = Post::selectFirst(['uri-id', 'uid'], ['id' => $itemId]);
|
|
|
|
if (!DBA::isResult($item)) {
|
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!in_array($item['uid'], [0, local_user()])) {
|
|
|
|
throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$pinned = !Post\ThreadUser::getPinned($item['uri-id'], local_user());
|
2019-11-09 04:17:18 +01:00
|
|
|
|
2021-02-01 00:37:34 +01:00
|
|
|
Post\ThreadUser::setPinned($item['uri-id'], local_user(), $pinned);
|
2019-11-09 04:17:18 +01:00
|
|
|
|
|
|
|
// See if we've been passed a return path to redirect to
|
2021-01-31 00:42:23 +01:00
|
|
|
$return_path = $_REQUEST['return'] ?? '';
|
|
|
|
if (!empty($return_path)) {
|
|
|
|
$rand = '_=' . time();
|
|
|
|
if (strpos($return_path, '?')) {
|
|
|
|
$rand = "&$rand";
|
|
|
|
} else {
|
|
|
|
$rand = "?$rand";
|
|
|
|
}
|
|
|
|
|
|
|
|
DI::baseUrl()->redirect($return_path . $rand);
|
2019-11-09 04:17:18 +01:00
|
|
|
}
|
|
|
|
|
2021-01-31 00:42:23 +01:00
|
|
|
$return = [
|
|
|
|
'status' => 'ok',
|
|
|
|
'item_id' => $itemId,
|
|
|
|
'verb' => 'pin',
|
|
|
|
'state' => (int)$pinned,
|
|
|
|
];
|
|
|
|
|
|
|
|
System::jsonExit($return);
|
2019-11-09 04:17:18 +01:00
|
|
|
}
|
|
|
|
}
|