32 lines
750 B
PHP
32 lines
750 B
PHP
<?php
|
|
|
|
namespace App\Actions;
|
|
|
|
use App\Models\Inbox;
|
|
use App\Models\User;
|
|
use DB;
|
|
|
|
final readonly class CreateOrGetInboxAction
|
|
{
|
|
/**
|
|
* @throws \Throwable
|
|
*/
|
|
public function execute(User $recipient, User $sender): Inbox
|
|
{
|
|
$existingInbox = Inbox::whereHas('users', fn ($q) => $q->where('users.id', $sender->id))
|
|
->whereHas('users', fn ($q) => $q->where('users.id', $recipient->id))
|
|
->first();
|
|
|
|
if ($existingInbox) {
|
|
return $existingInbox;
|
|
}
|
|
|
|
return DB::transaction(function () use ($sender, $recipient) {
|
|
$inbox = Inbox::create();
|
|
$inbox->users()->attach([$sender->id, $recipient->id]);
|
|
|
|
return $inbox;
|
|
}, 2);
|
|
}
|
|
}
|