You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.8 KiB
95 lines
2.8 KiB
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Events\TaskUpdate;
|
|
use App\Models\Task;
|
|
use App\Models\User;
|
|
use App\Utilities\HelperClass\NotificationHelper;
|
|
|
|
class TaskUpdateNotif
|
|
{
|
|
/**
|
|
* @var NotificationHelper
|
|
*/
|
|
public $helper;
|
|
|
|
/**
|
|
* Create the event listener.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(NotificationHelper $helper)
|
|
{
|
|
$this->helper = $helper;
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*
|
|
* @param TaskUpdate $event
|
|
* @return void
|
|
*/
|
|
public function handle(TaskUpdate $event)
|
|
{
|
|
$payload = $event->message;
|
|
if (isset($payload->data->diff->assignee_id)) {
|
|
$this->assigneeNotifHandler($payload);
|
|
}
|
|
if (isset($payload->data->diff->approver_id)) {
|
|
$this->approverNotifHandler($payload);
|
|
}
|
|
if (isset($payload->data->diff->completed_at)) {
|
|
$this->completedNotifHandler($payload);
|
|
}
|
|
if (isset($payload->data->diff->ready_to_test)) {
|
|
$this->readyNotifHandler($payload);
|
|
}
|
|
}
|
|
|
|
public function assigneeNotifHandler($payload) {
|
|
$user = User::findOrFail($payload->data->diff->assignee_id);
|
|
$task = Task::findOrFail($payload->data->original->id);
|
|
|
|
$this->helper->makeNotif($payload, 'assignee', ['task' => $task->title])
|
|
->sendNotifications($user, 'critical');
|
|
}
|
|
|
|
public function approverNotifHandler($payload) {
|
|
$user = User::findOrFail($payload->data->diff->approver_id);
|
|
$task = Task::findOrFail($payload->data->original->id);
|
|
|
|
$this->helper->makeNotif($payload, 'approver', ['task' => $task->title])
|
|
->sendNotifications($user, 'critical');
|
|
}
|
|
|
|
public function completedNotifHandler($payload){
|
|
$task = Task::findOrFail($payload->data->original->id);
|
|
$user_ids = array_filter([
|
|
$task->approver_id,
|
|
$task->assignee_id,
|
|
$task->creator_id
|
|
]);
|
|
$user_ids = array_unique(array_merge($user_ids, $task->watchers));
|
|
|
|
$users = User::whereIn('id', $user_ids)->where('id', '!=', auth()->id())->get();
|
|
|
|
$this->helper->makeNotif($payload, 'completed', ['task' => $task->title])
|
|
->sendNotifications($users, 'critical');
|
|
}
|
|
|
|
public function readyNotifHandler($payload)
|
|
{
|
|
$task = Task::findOrFail($payload->data->original->id);
|
|
$user_ids = array_unique(array_filter([
|
|
$task->approver_id,
|
|
$task->assignee_id,
|
|
$task->creator_id
|
|
]));
|
|
|
|
$users = User::whereIn('id', $user_ids)->where('id', '!=', auth()->id())->get();
|
|
|
|
$this->helper->makeNotif($payload, 'ready', ['task' => $task->title])
|
|
->sendNotifications($users, 'critical');
|
|
}
|
|
}
|