Browse Source

Merge branch 'mahdi' of https://gitea.hooradev.ir/mahdihty/liwo into mohammad

pull/3/head
Mohammad Akbari 4 years ago
parent
commit
7b1d9f32b4
Signed by: akbarjimi GPG Key ID: 55726AEFECE5E683
  1. 28
      app/Events/TaskCreate.php
  2. 28
      app/Events/TaskUpdate.php
  3. 104
      app/Listeners/TaskCreateNotif.php
  4. 155
      app/Listeners/TaskUpdateNotif.php
  5. 10
      app/Providers/EventServiceProvider.php
  6. 72
      app/Utilities/HelperClass/NotificationHelper.php
  7. 43
      resources/lang/fa/notification.php

28
app/Events/TaskCreate.php

@ -0,0 +1,28 @@
<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class TaskCreate
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $message;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($message)
{
$this->message = $message;
}
}

28
app/Events/TaskUpdate.php

@ -0,0 +1,28 @@
<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class TaskUpdate
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $message;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($message)
{
$this->message = $message;
}
}

104
app/Listeners/TaskCreateNotif.php

@ -0,0 +1,104 @@
<?php
namespace App\Listeners;
use App\Events\TaskCreate;
use App\Models\Task;
use App\Models\User;
use App\Notifications\DBNotification;
use App\Notifications\FcmNotification;
use App\Notifications\MailNotification;
use Illuminate\Support\Facades\Notification;
class TaskCreateNotif
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param TaskCreate $event
* @return void
*/
public function handle(TaskCreate $event)
{
$payload = $event->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));
}
}

155
app/Listeners/TaskUpdateNotif.php

@ -0,0 +1,155 @@
<?php
namespace App\Listeners;
use App\Events\TaskUpdate;
use App\Models\Task;
use App\Models\User;
use App\Notifications\DBNotification;
use App\Notifications\FcmNotification;
use App\Notifications\MailNotification;
use Illuminate\Support\Facades\Notification;
class TaskUpdateNotif
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* 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);
$notif = $this->makeNotif($payload, 'assignee', ['task' => $task->title]);
$this->sendNotifications($user, $notif);
}
public function approverNotifHandler($payload) {
$user = User::findOrFail($payload->data->diff->approver_id);
$task = Task::findOrFail($payload->data->original->id);
$notif = $this->makeNotif($payload, 'approver', ['task' => $task->title]);
$this->sendNotifications($user, $notif);
}
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();
$notif = $this->makeNotif($payload, 'completed', ['task' => $task->title]);
$this->sendNotifications($users, $notif);
}
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();
$notif = $this->makeNotif($payload, 'ready', ['task' => $task->title]);
$this->sendNotifications($users, $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) {
// switch ($level) {
// case "emergency":
//// Notification::send($users, new SmsNotification($notif));
// case "critical":
// Notification::send($users, new MailNotification($notif));
// case "high":
// Notification::send($users, new DBNotification($notif));
// case "medium":
// Notification::send($users, new FcmNotification($notif));
// case "low":
//// Notification::send($users, new SocketNotification($notif));
// default:
//// Notification::send($users, new SocketNotification($notif));
// }
Notification::send($users, new MailNotification($notif));
Notification::send($users, new DBNotification($notif));
Notification::send($users, new FcmNotification($notif));
}
}

10
app/Providers/EventServiceProvider.php

@ -6,10 +6,14 @@ use App\Events\ProjectUserCreate;
use App\Events\TagCreate;
use App\Events\ModelSaved;
use App\Events\BusinessUpdate;
use App\Events\TaskCreate;
use App\Events\TaskUpdate;
use App\Listeners\NotifHandler;
use App\Listeners\ProjectUserCreateNotif;
use App\Listeners\TagCreateNotif;
use App\Events\BusinessUserCreate;
use App\Listeners\TaskCreateNotif;
use App\Listeners\TaskUpdateNotif;
use Illuminate\Auth\Events\Registered;
use App\Listeners\ActivityRegistration;
use App\Listeners\BusinessUpdateListener;
@ -44,6 +48,12 @@ class EventServiceProvider extends ServiceProvider
BusinessUpdate::class => [
BusinessUpdateListener::class,
],
TaskCreate::class => [
TaskCreateNotif::class,
],
TaskUpdate::class => [
TaskUpdateNotif::class,
],
];
/**

72
app/Utilities/HelperClass/NotificationHelper.php

@ -0,0 +1,72 @@
<?php
namespace App\Utilities\HelperClass;
use App\Notifications\DBNotification;
use App\Notifications\FcmNotification;
use App\Notifications\MailNotification;
use Illuminate\Support\Facades\Notification;
class NotificationHelper
{
/**
* 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) {
// switch ($level) {
// case "emergency":
//// Notification::send($users, new SmsNotification($notif));
// case "critical":
// Notification::send($users, new MailNotification($notif));
// case "high":
// Notification::send($users, new DBNotification($notif));
// case "medium":
// Notification::send($users, new FcmNotification($notif));
// case "low":
//// Notification::send($users, new SocketNotification($notif));
// default:
//// Notification::send($users, new SocketNotification($notif));
// }
Notification::send($users, new MailNotification($notif));
Notification::send($users, new DBNotification($notif));
Notification::send($users, new FcmNotification($notif));
}
}

43
resources/lang/fa/notification.php

@ -35,6 +35,49 @@ 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 شدید.'
],
'ready' => [
'greeting' => 'سلام کاربر گرامی!',
'subject' => 'افزودن تسک جدید',
'title' => 'افزودن تسک جدید',
'body' => 'تسک :task در حالت انتظار برای تست قرار دارد.'
],
'completed' => [
'greeting' => 'سلام کاربر گرامی!',
'subject' => 'افزودن تسک جدید',
'title' => 'افزودن تسک جدید',
'body' => 'تسک :task به اتمام رسید.'
]
]
],
'business' => [
'update' => 'کاربر :user به کسب و کار :business اضافه شد.',
'wallet_almost_empty' => 'کیف پول تقریبا خالی است.',

Loading…
Cancel
Save