Added permission check
This commit is contained in:
parent
e199abc837
commit
c01ca1583c
2 changed files with 7 additions and 5 deletions
|
@ -23,7 +23,9 @@ namespace Friendica\Module\Api\Mastodon\Statuses;
|
||||||
|
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
|
use Friendica\Model\Post;
|
||||||
use Friendica\Module\BaseApi;
|
use Friendica\Module\BaseApi;
|
||||||
|
use Friendica\Network\HTTPException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see https://docs.joinmastodon.org/methods/statuses/
|
* @see https://docs.joinmastodon.org/methods/statuses/
|
||||||
|
@ -42,12 +44,12 @@ class Card extends BaseApi
|
||||||
DI::mstdnError()->UnprocessableEntity();
|
DI::mstdnError()->UnprocessableEntity();
|
||||||
}
|
}
|
||||||
|
|
||||||
$request = self::getRequest([
|
|
||||||
'limit' => 40, // Maximum number of results to return. Defaults to 40.
|
|
||||||
]);
|
|
||||||
|
|
||||||
$id = $parameters['id'];
|
$id = $parameters['id'];
|
||||||
|
|
||||||
|
if (!Post::exists(['uri-id' => $id, 'uid' => [0, $uid]])) {
|
||||||
|
throw new HTTPException\NotFoundException('Item with URI ID ' . $id . ' not found' . ($uid ? ' for user ' . $uid : '.'));
|
||||||
|
}
|
||||||
|
|
||||||
$card = DI::mstdnCard()->createFromUriId($id);
|
$card = DI::mstdnCard()->createFromUriId($id);
|
||||||
|
|
||||||
System::jsonExit($card->toArray());
|
System::jsonExit($card->toArray());
|
||||||
|
|
Loading…
Reference in a new issue