friendica/src/Module/Starred.php

66 lines
1.9 KiB
PHP
Raw Normal View History

2019-05-18 21:38:02 +02:00
<?php
2020-02-09 15:45:36 +01: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-05-18 21:38:02 +02:00
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\DI;
2019-05-18 21:38:02 +02:00
use Friendica\Model\Item;
/**
* Toggle starred items
*/
class Starred extends BaseModule
{
public static function rawContent(array $parameters = [])
2019-05-18 21:38:02 +02:00
{
if (!local_user()) {
2019-11-05 23:28:12 +01:00
throw new \Friendica\Network\HTTPException\ForbiddenException();
2019-05-18 21:38:02 +02:00
}
2019-11-05 20:16:26 +01:00
if (empty($parameters['item'])) {
2019-11-05 23:28:12 +01:00
throw new \Friendica\Network\HTTPException\BadRequestException();
2019-05-18 21:38:02 +02:00
}
2019-11-05 23:13:33 +01:00
$itemId = intval($parameters['item']);
2019-05-18 21:38:02 +02:00
$item = Item::selectFirstForUser(local_user(), ['starred'], ['uid' => local_user(), 'id' => $itemId]);
if (empty($item)) {
2019-11-05 23:13:33 +01:00
throw new \Friendica\Network\HTTPException\NotFoundException();
2019-05-18 21:38:02 +02:00
}
2019-11-05 21:22:54 +01:00
$starred = !(bool)$item['starred'];
2019-05-18 21:38:02 +02:00
Item::update(['starred' => $starred], ['id' => $itemId]);
// See if we've been passed a return path to redirect to
$returnPath = $_REQUEST['return'] ?? '';
2019-11-05 20:16:26 +01:00
if (!empty($returnPath)) {
$rand = '_=' . time() . (strpos($returnPath, '?') ? '&' : '?') . 'rand';
DI::baseUrl()->redirect($returnPath . $rand);
2019-05-18 21:38:02 +02:00
}
// the json doesn't really matter, it will either be 0 or 1
2019-11-05 21:22:54 +01:00
echo json_encode((int)$starred);
exit();
2019-05-18 21:38:02 +02:00
}
}