mirror of https://github.com/pixelfed/pixelfed.git
55 lines
1.3 KiB
PHP
55 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Jobs\GroupPipeline;
|
||
|
|
||
|
use Illuminate\Bus\Queueable;
|
||
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||
|
use Illuminate\Queue\InteractsWithQueue;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
use App\Models\GroupInvitation;
|
||
|
use App\Notification;
|
||
|
use App\Profile;
|
||
|
|
||
|
class GroupMemberInvite implements ShouldQueue
|
||
|
{
|
||
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||
|
|
||
|
protected $invite;
|
||
|
|
||
|
/**
|
||
|
* Create a new job instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct(GroupInvitation $invite)
|
||
|
{
|
||
|
$this->invite = $invite;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Execute the job.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
$invite = $this->invite;
|
||
|
$actor = Profile::find($invite->from_profile_id);
|
||
|
$target = Profile::find($invite->to_profile_id);
|
||
|
|
||
|
if(!$actor || !$target) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$notification = new Notification;
|
||
|
$notification->profile_id = $target->id;
|
||
|
$notification->actor_id = $actor->id;
|
||
|
$notification->action = 'group:invite';
|
||
|
$notification->item_id = $invite->group_id;
|
||
|
$notification->item_type = 'App\Models\Group';
|
||
|
$notification->save();
|
||
|
}
|
||
|
}
|