mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add Inbox util
This commit is contained in:
parent
5559bcdb8f
commit
753b6d4721
1 changed files with 88 additions and 0 deletions
88
app/Util/ActivityPub/Inbox.php
Normal file
88
app/Util/ActivityPub/Inbox.php
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
|
||||
namespace App\Util\ActivityPub;
|
||||
|
||||
use App\Jobs\AvatarPipeline\CreateAvatar;
|
||||
use App\{Follower, Like, Profile, Like, Status, User};
|
||||
|
||||
class Inbox {
|
||||
|
||||
protected $request;
|
||||
protected $profile;
|
||||
protected $payload;
|
||||
|
||||
public function __construct($request, Profile $profile, $payload)
|
||||
{
|
||||
$this->request = $request;
|
||||
$this->profile = $profile;
|
||||
$this->payload = $payload;
|
||||
}
|
||||
|
||||
public function handle()
|
||||
{
|
||||
$this->authenticatePayload();
|
||||
}
|
||||
|
||||
public function authenticatePayload()
|
||||
{
|
||||
// todo
|
||||
|
||||
$this->handleVerb();
|
||||
}
|
||||
|
||||
public function handleVerb()
|
||||
{
|
||||
$verb = $this->payload['type'];
|
||||
|
||||
switch ($verb) {
|
||||
case 'Create':
|
||||
$this->handleCreateActivity();
|
||||
break;
|
||||
|
||||
case 'Follow':
|
||||
$this->handleFollowActivity();
|
||||
break;
|
||||
|
||||
default:
|
||||
// TODO: decide how to handle invalid verbs.
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public function handleCreateActivity()
|
||||
{
|
||||
// todo
|
||||
}
|
||||
|
||||
public function handleFollowActivity()
|
||||
{
|
||||
$actor = $this->payload['object'];
|
||||
$target = $this->profile;
|
||||
|
||||
}
|
||||
|
||||
public function actorFirstOrCreate($actorUrl)
|
||||
{
|
||||
if(Profile::whereRemoteUrl($actorUrl)->count() !== 0) {
|
||||
return Profile::whereRemoteUrl($actorUrl)->firstOrFail();
|
||||
}
|
||||
|
||||
$res = (new DiscoverActor($url))->discover();
|
||||
|
||||
$domain = parse_url($res['url'], PHP_URL_HOST);
|
||||
$username = $res['preferredUsername'];
|
||||
$remoteUsername = "@{$username}@{$domain}";
|
||||
|
||||
$profile = new Profile;
|
||||
$profile->user_id = null;
|
||||
$profile->domain = $domain;
|
||||
$profile->username = $remoteUsername;
|
||||
$profile->name = $res['name'];
|
||||
$profile->bio = str_limit($res['summary'], 125);
|
||||
$profile->sharedInbox = $res['endpoints']['sharedInbox'];
|
||||
$profile->remote_url = $res['url'];
|
||||
$profile->save();
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue