mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
fix(fediverse): check that actor's images mimetype is present or guess it otherwise
fixes #348
This commit is contained in:
parent
233ece4b3a
commit
06c4f15477
@ -10,6 +10,7 @@ declare(strict_types=1);
|
||||
|
||||
use CodeIgniter\HTTP\Exceptions\HTTPException;
|
||||
use CodeIgniter\HTTP\URI;
|
||||
use Config\Mimes;
|
||||
use Embera\Embera;
|
||||
use Modules\Fediverse\Activities\AcceptActivity;
|
||||
use Modules\Fediverse\ActivityRequest;
|
||||
@ -273,12 +274,26 @@ if (! function_exists('create_actor_from_uri')) {
|
||||
$newActor->summary = property_exists($actorPayload, 'summary') ? $actorPayload->summary : null;
|
||||
if (property_exists($actorPayload, 'icon')) {
|
||||
$newActor->avatar_image_url = $actorPayload->icon->url;
|
||||
$newActor->avatar_image_mimetype = $actorPayload->icon->mediaType;
|
||||
|
||||
if (property_exists($actorPayload->icon, 'mediaType')) {
|
||||
$newActor->avatar_image_mimetype = $actorPayload->icon->mediaType;
|
||||
} else {
|
||||
$iconExtension = pathinfo((string) $actorPayload->icon->url, PATHINFO_EXTENSION);
|
||||
|
||||
$newActor->avatar_image_mimetype = (string) Mimes::guessTypeFromExtension($iconExtension);
|
||||
}
|
||||
}
|
||||
|
||||
if (property_exists($actorPayload, 'image')) {
|
||||
$newActor->cover_image_url = $actorPayload->image->url;
|
||||
$newActor->cover_image_mimetype = $actorPayload->image->mediaType;
|
||||
|
||||
if (property_exists($actorPayload->image, 'mediaType')) {
|
||||
$newActor->cover_image_mimetype = $actorPayload->image->mediaType;
|
||||
} else {
|
||||
$coverExtension = pathinfo((string) $actorPayload->image->url, PATHINFO_EXTENSION);
|
||||
|
||||
$newActor->cover_image_mimetype = (string) Mimes::guessTypeFromExtension($coverExtension);
|
||||
}
|
||||
}
|
||||
|
||||
$newActor->inbox_url = $actorPayload->inbox;
|
||||
|
Loading…
x
Reference in New Issue
Block a user