diff --git a/app/Events/TaskCreate.php b/app/Events/TaskCreate.php new file mode 100644 index 0000000..e51dff2 --- /dev/null +++ b/app/Events/TaskCreate.php @@ -0,0 +1,28 @@ +message = $message; + } +} diff --git a/app/Listeners/TaskCreateNotif.php b/app/Listeners/TaskCreateNotif.php new file mode 100644 index 0000000..3bba2d8 --- /dev/null +++ b/app/Listeners/TaskCreateNotif.php @@ -0,0 +1,104 @@ +message; + + if ($payload->data->original->assignee_id !== null) { + $this->assigneeNotifHandler($payload); + } + if ($payload->data->original->approver_id !== null) { + $this->approverNotifHandler($payload); + } + } + + public function assigneeNotifHandler($payload) { + $user = User::findOrFail($payload->data->original->assignee_id); + $task = Task::findOrFail($payload->data->original->id); + + $notif = $this->makeNotif($payload, 'assignee', ['task' => $task->title]); + + $this->sendNotifications($user, $notif); + } + + public function approverNotifHandler($payload) { + $user = User::findOrFail($payload->data->original->approver_id); + $task = Task::findOrFail($payload->data->original->id); + + $notif = $this->makeNotif($payload, 'approver', ['task' => $task->title]); + + $this->sendNotifications($user, $notif); + } + + /** + * Make notification object + * + * @param $payload + * @param null $route + * @param array $options + * @return array + */ + public function makeNotif($payload, $route = null, $options = []) { + $route = $route == null ? "" : $route.'.'; + return [ + 'greeting' => $this->getMessageLine($payload, $route.'greeting'), + 'subject' => $this->getMessageLine($payload, $route.'subject'), + 'title' => $this->getMessageLine($payload, $route.'title'), + 'body' => $this->getMessageLine($payload, $route.'body', $options) + ]; + } + + /** + * Fetch message from notifications lang file + * + * @param $payload + * @param $key + * @param null $options + * @return array|\Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\Translation\Translator|string|null + * + */ + public function getMessageLine($payload, $key, $options = []) + { + return __('notification.'.$payload->data->table_name.'.'.enum('cruds.inverse.'.$payload->data->crud_id.'.singular_name').'.'.$key, $options); + } + + /** + * Call notifications + * + * @param $users + * @param $notif + */ + public function sendNotifications($users, $notif) { + Notification::send($users, new MailNotification($notif)); + Notification::send($users, new DBNotification($notif)); + Notification::send($users, new FcmNotification($notif)); + } +} diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php index de6d034..ea8a6b4 100644 --- a/app/Providers/EventServiceProvider.php +++ b/app/Providers/EventServiceProvider.php @@ -6,10 +6,12 @@ use App\Events\ProjectUserCreate; use App\Events\TagCreate; use App\Events\ModelSaved; use App\Events\BusinessUpdate; +use App\Events\TaskCreate; use App\Listeners\NotifHandler; use App\Listeners\ProjectUserCreateNotif; use App\Listeners\TagCreateNotif; use App\Events\BusinessUserCreate; +use App\Listeners\TaskCreateNotif; use Illuminate\Auth\Events\Registered; use App\Listeners\ActivityRegistration; use App\Listeners\BusinessUpdateListener; @@ -44,6 +46,9 @@ class EventServiceProvider extends ServiceProvider BusinessUpdate::class => [ BusinessUpdateListener::class, ], + TaskCreate::class => [ + TaskCreateNotif::class, + ], ]; /** diff --git a/resources/lang/fa/notification.php b/resources/lang/fa/notification.php index 1ef6303..12f9d99 100644 --- a/resources/lang/fa/notification.php +++ b/resources/lang/fa/notification.php @@ -35,6 +35,43 @@ return [ ] ], + 'tasks' => [ + 'create' => [ + 'assignee' => [ + 'greeting' => 'سلام کاربر گرامی!', + 'subject' => 'افزودن تسک جدید', + 'title' => 'افزودن تسک جدید', + 'body' => 'تسک :task به شما واگذار شد.' + ], + 'approver' => [ + 'greeting' => 'سلام کاربر گرامی!', + 'subject' => 'افزودن تسک جدید', + 'title' => 'افزودن تسک جدید', + 'body' => 'شما تایید کننده تسک :task شدید.' + ] + ], + 'update' => [ + 'assignee' => [ + 'greeting' => 'سلام کاربر گرامی!', + 'subject' => 'افزودن تسک جدید', + 'title' => 'افزودن تسک جدید', + 'body' => 'تسک :task به شما واگذار شد.' + ], + 'approver' => [ + 'greeting' => 'سلام کاربر گرامی!', + 'subject' => 'افزودن تسک جدید', + 'title' => 'افزودن تسک جدید', + 'body' => 'شما تایید کننده تسک :task شدید.' + ], + 'watcher' => [ + 'greeting' => 'سلام کاربر گرامی!', + 'subject' => 'افزودن تسک جدید', + 'title' => 'افزودن تسک جدید', + 'body' => 'شما تایید کننده تسک :task شدید.' + ] + ] + ], + 'business' => [ 'update' => 'کاربر :user به کسب و کار :business اضافه شد.', 'update_wallet' => 'پول رو میدی یا پولت کنم',