friendica/src/Module/Item/Pin.php

91 lines
2.4 KiB
PHP
Raw Normal View History

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
namespace Friendica\Module\Item;
2019-11-09 04:17:18 +01:00
use Friendica\BaseModule;
use Friendica\Core\Session;
use Friendica\Core\System;
2021-02-01 00:37:34 +01:00
use Friendica\Database\DBA;
use Friendica\DI;
2021-02-01 00:37:34 +01:00
use Friendica\Model\Post;
use Friendica\Network\HTTPException;
2019-11-09 04:17:18 +01:00
/**
* Toggle pinned items
*/
class Pin extends BaseModule
2019-11-09 04:17:18 +01:00
{
protected function rawContent(array $request = [])
2019-11-09 04:17:18 +01:00
{
$l10n = DI::l10n();
if (!Session::isAuthenticated()) {
throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
2019-11-09 04:17:18 +01:00
}
if (empty($this->parameters['id'])) {
throw new HTTPException\BadRequestException();
2019-11-09 04:17:18 +01:00
}
$itemId = intval($this->parameters['id']);
2019-11-09 04:17:18 +01:00
2022-08-15 15:23:01 +02:00
$item = Post::selectFirst(['uri-id', 'uid', 'featured', 'author-id'], ['id' => $itemId]);
2021-02-01 00:37:34 +01:00
if (!DBA::isResult($item)) {
throw new HTTPException\NotFoundException();
}
if (!in_array($item['uid'], [0, local_user()])) {
throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
}
2022-04-07 23:52:25 +02:00
$pinned = !$item['featured'];
2019-11-09 04:17:18 +01:00
2022-04-07 23:52:25 +02:00
if ($pinned) {
2022-08-15 15:23:01 +02:00
Post\Collection::add($item['uri-id'], Post\Collection::FEATURED, $item['author-id'], local_user());
2022-04-07 23:52:25 +02:00
} else {
Post\Collection::remove($item['uri-id'], Post\Collection::FEATURED, local_user());
2022-04-07 23:52:25 +02:00
}
2019-11-09 04:17:18 +01: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";
}
DI::baseUrl()->redirect($return_path . $rand);
2019-11-09 04:17:18 +01:00
}
$return = [
'status' => 'ok',
'item_id' => $itemId,
'verb' => 'pin',
'state' => (int)$pinned,
];
System::jsonExit($return);
2019-11-09 04:17:18 +01:00
}
}