Update Inbox handler, remove logger

This commit is contained in:
Daniel Supernault 2020-05-21 16:45:51 -06:00
parent 18f32e7bcf
commit fee25d44e0
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 26 additions and 18 deletions

View File

@ -42,12 +42,12 @@ class Inbox
{
$this->handleVerb();
if(!Activity::where('data->id', $this->payload['id'])->exists()){
(new Activity())->create([
'to_id' => $this->profile->id,
'data' => json_encode($this->payload)
]);
}
// if(!Activity::where('data->id', $this->payload['id'])->exists()) {
// (new Activity())->create([
// 'to_id' => $this->profile->id,
// 'data' => json_encode($this->payload)
// ]);
// }
return;
@ -62,6 +62,7 @@ class Inbox
break;
case 'Follow':
if(FollowValidator::validate($this->payload) == false) { return; }
$this->handleFollowActivity();
break;
@ -80,6 +81,7 @@ class Inbox
break;
case 'Like':
if(LikeValidator::validate($this->payload) == false) { return; }
$this->handleLikeActivity();
break;
@ -171,26 +173,32 @@ class Inbox
public function handleFollowActivity()
{
$actor = $this->actorFirstOrCreate($this->payload['actor']);
if(!$actor || $actor->domain == null) {
$target = $this->profile;
if(!$actor || $actor->domain == null || $target->domain !== null) {
return;
}
if(
Follower::whereProfileId($actor->id)
->whereFollowingId($target->id)
->exists() ||
FollowRequest::whereFollowerId($actor->id)
->whereFollowingId($target->id)
->exists();
) {
return;
}
$target = $this->profile;
if($target->is_private == true) {
// make follow request
FollowRequest::firstOrCreate([
'follower_id' => $actor->id,
'following_id' => $target->id
]);
// todo: send notification
} else {
// store new follower
$follower = Follower::firstOrCreate([
'profile_id' => $actor->id,
'following_id' => $target->id,
'local_profile' => empty($actor->domain)
]);
if($follower->wasRecentlyCreated == true && $target->domain == null) {
// send notification
$follower = new Follower;
$follower->profile_id => $actor->id;
$follower->following_id => $target->id;
$follower->local_profile => empty($actor->domain);
if($target->domain == null) {
Notification::firstOrCreate([
'profile_id' => $target->id,
'actor_id' => $actor->id,