forked from friendica/friendica-addons
Post up to 4 images
This commit is contained in:
parent
ea6e79448d
commit
a7ea815642
|
@ -240,7 +240,7 @@ function bluesky_add_embed(int $uid, array $msg, array $record): array
|
||||||
$photo = Photo::selectFirst(['resource-id'], ['id' => $image['id']]);
|
$photo = Photo::selectFirst(['resource-id'], ['id' => $image['id']]);
|
||||||
$photo = Photo::selectFirst([], ["`resource-id` = ? AND `scale` > ?", $photo['resource-id'], 0], ['order' => ['scale']]);
|
$photo = Photo::selectFirst([], ["`resource-id` = ? AND `scale` > ?", $photo['resource-id'], 0], ['order' => ['scale']]);
|
||||||
$blob = bluesky_upload_blob($uid, $photo);
|
$blob = bluesky_upload_blob($uid, $photo);
|
||||||
if (!empty($blob)) {
|
if (!empty($blob) && count($images) < 4) {
|
||||||
$images[] = ['alt' => $image['description'], 'image' => $blob];
|
$images[] = ['alt' => $image['description'], 'image' => $blob];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -285,7 +285,15 @@ function bluesky_get_timeline(int $uid)
|
||||||
if (empty($data)) {
|
if (empty($data)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// TODO Add Functionality to read the timeline
|
|
||||||
|
if (empty($data->feed)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($data->feed as $entry) {
|
||||||
|
// TODO Add Functionality to read the timeline
|
||||||
|
print_r($entry);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function bluesky_get_did(int $uid): string
|
function bluesky_get_did(int $uid): string
|
||||||
|
|
Loading…
Reference in a new issue