2019-11-09 03:17:18 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00: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-11-09 03:17:18 +00:00
|
|
|
|
2021-01-30 23:42:23 +00:00
|
|
|
namespace Friendica\Module\Item;
|
2019-11-09 03:17:18 +00:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2021-01-30 23:42:23 +00:00
|
|
|
use Friendica\Core\Session;
|
|
|
|
use Friendica\Core\System;
|
2021-01-31 23:37:34 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2021-01-31 23:37:34 +00:00
|
|
|
use Friendica\Model\Post;
|
2021-01-30 23:42:23 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
2019-11-09 03:17:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle pinned items
|
|
|
|
*/
|
2021-01-30 23:42:23 +00:00
|
|
|
class Pin extends BaseModule
|
2019-11-09 03:17:18 +00:00
|
|
|
{
|
|
|
|
public static function rawContent(array $parameters = [])
|
|
|
|
{
|
2021-01-30 23:42:23 +00:00
|
|
|
$l10n = DI::l10n();
|
|
|
|
|
|
|
|
if (!Session::isAuthenticated()) {
|
|
|
|
throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
|
2019-11-09 03:17:18 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 23:42:23 +00:00
|
|
|
if (empty($parameters['id'])) {
|
|
|
|
throw new HTTPException\BadRequestException();
|
2019-11-09 03:17:18 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 23:42:23 +00:00
|
|
|
$itemId = intval($parameters['id']);
|
2019-11-09 03:17:18 +00:00
|
|
|
|
2021-01-31 23:37:34 +00: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 03:17:18 +00:00
|
|
|
|
2021-01-31 23:37:34 +00:00
|
|
|
Post\ThreadUser::setPinned($item['uri-id'], local_user(), $pinned);
|
2019-11-09 03:17:18 +00:00
|
|
|
|
|
|
|
// See if we've been passed a return path to redirect to
|
2021-01-30 23:42:23 +00: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 03:17:18 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 23:42:23 +00:00
|
|
|
$return = [
|
|
|
|
'status' => 'ok',
|
|
|
|
'item_id' => $itemId,
|
|
|
|
'verb' => 'pin',
|
|
|
|
'state' => (int)$pinned,
|
|
|
|
];
|
|
|
|
|
|
|
|
System::jsonExit($return);
|
2019-11-09 03:17:18 +00:00
|
|
|
}
|
|
|
|
}
|