mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
Update Friendica Photo API endpoint fix to pass null for scale when not applied
This commit is contained in:
parent
46607598f3
commit
4e5794c99d
2 changed files with 3 additions and 3 deletions
|
@ -57,14 +57,14 @@ class Photo extends BaseFactory
|
||||||
* @param string $type
|
* @param string $type
|
||||||
* @return Array
|
* @return Array
|
||||||
*/
|
*/
|
||||||
public function createFromId(string $photo_id, int $scale, int $uid, string $type = 'json', bool $with_posts = true): array
|
public function createFromId(string $photo_id, int $scale = null, int $uid, string $type = 'json', bool $with_posts = true): array
|
||||||
{
|
{
|
||||||
$fields = ['resource-id', 'created', 'edited', 'title', 'desc', 'album', 'filename','type',
|
$fields = ['resource-id', 'created', 'edited', 'title', 'desc', 'album', 'filename','type',
|
||||||
'height', 'width', 'datasize', 'profile', 'allow_cid', 'deny_cid', 'allow_gid', 'deny_gid',
|
'height', 'width', 'datasize', 'profile', 'allow_cid', 'deny_cid', 'allow_gid', 'deny_gid',
|
||||||
'backend-class', 'backend-ref', 'id', 'scale'];
|
'backend-class', 'backend-ref', 'id', 'scale'];
|
||||||
|
|
||||||
$condition = ['uid' => $uid, 'resource-id' => $photo_id];
|
$condition = ['uid' => $uid, 'resource-id' => $photo_id];
|
||||||
if ($scale >= 0) {
|
if (intval($scale)) {
|
||||||
$fields = array_merge(['data'], $fields);
|
$fields = array_merge(['data'], $fields);
|
||||||
|
|
||||||
$condition['scale'] = $scale;
|
$condition['scale'] = $scale;
|
||||||
|
|
|
@ -54,7 +54,7 @@ class Photo extends BaseApi
|
||||||
throw new HTTPException\BadRequestException('No photo id.');
|
throw new HTTPException\BadRequestException('No photo id.');
|
||||||
}
|
}
|
||||||
|
|
||||||
$scale = (!empty($request['scale']) ? intval($request['scale']) : -1);
|
$scale = (!empty($request['scale']) ? intval($request['scale']) : null);
|
||||||
$photo_id = $request['photo_id'];
|
$photo_id = $request['photo_id'];
|
||||||
|
|
||||||
// prepare json/xml output with data from database for the requested photo
|
// prepare json/xml output with data from database for the requested photo
|
||||||
|
|
Loading…
Reference in a new issue