friendica/src/Module/Starred.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2019-05-18 21:38:02 +02:00
<?php
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
}
}