forked from mirror/pixelfed
Add AccountMigration ActivityPub support
This commit is contained in:
parent
eab16e7fd8
commit
9378c65396
1 changed files with 20 additions and 1 deletions
|
@ -4,17 +4,26 @@ namespace App\Transformer\ActivityPub;
|
||||||
|
|
||||||
use App\Profile;
|
use App\Profile;
|
||||||
use League\Fractal;
|
use League\Fractal;
|
||||||
|
use App\Services\AccountService;
|
||||||
|
|
||||||
class ProfileTransformer extends Fractal\TransformerAbstract
|
class ProfileTransformer extends Fractal\TransformerAbstract
|
||||||
{
|
{
|
||||||
public function transform(Profile $profile)
|
public function transform(Profile $profile)
|
||||||
{
|
{
|
||||||
return [
|
$res = [
|
||||||
'@context' => [
|
'@context' => [
|
||||||
'https://w3id.org/security/v1',
|
'https://w3id.org/security/v1',
|
||||||
'https://www.w3.org/ns/activitystreams',
|
'https://www.w3.org/ns/activitystreams',
|
||||||
[
|
[
|
||||||
'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
|
'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
|
||||||
|
'alsoKnownAs' => [
|
||||||
|
'@id' => 'as:alsoKnownAs',
|
||||||
|
'@type' => '@id'
|
||||||
|
],
|
||||||
|
'movedTo' => [
|
||||||
|
'@id' => 'as:movedTo',
|
||||||
|
'@type' => '@id'
|
||||||
|
]
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'id' => $profile->permalink(),
|
'id' => $profile->permalink(),
|
||||||
|
@ -42,5 +51,15 @@ class ProfileTransformer extends Fractal\TransformerAbstract
|
||||||
'sharedInbox' => config('app.url') . '/f/inbox'
|
'sharedInbox' => config('app.url') . '/f/inbox'
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if($profile->aliases->count()) {
|
||||||
|
$res['alsoKnownAs'] = $profile->aliases->map(fn($alias) => $alias->uri);
|
||||||
|
}
|
||||||
|
|
||||||
|
if($profile->moved_to_profile_id) {
|
||||||
|
$res['movedTo'] = AccountService::get($profile->moved_to_profile_id)['url'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue