2020-03-11 12:05:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Utils\Traits\Notifications;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class UserNotifies
|
|
|
|
* @package App\Utils\Traits
|
|
|
|
*/
|
|
|
|
trait UserNotifies
|
|
|
|
{
|
|
|
|
public function findUserNotificationTypes($invitation, $company_user, $entity_name, $required_permissions) :array
|
|
|
|
{
|
2020-04-04 12:32:42 +02:00
|
|
|
if ($this->migrationRunning($company_user)) {
|
2020-04-01 10:54:22 +02:00
|
|
|
return [];
|
2020-04-04 12:32:42 +02:00
|
|
|
}
|
2020-04-01 10:54:22 +02:00
|
|
|
|
2020-03-11 12:05:05 +01:00
|
|
|
$notifiable_methods = [];
|
|
|
|
$notifications = $company_user->notifications;
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if ($invitation->{$entity_name}->user_id == $company_user->_user_id || $invitation->{$entity_name}->assigned_user_id == $company_user->user_id) {
|
2020-03-11 12:05:05 +01:00
|
|
|
array_push($required_permissions, "all_user_notifications");
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-11 12:05:05 +01:00
|
|
|
|
2020-05-20 08:59:29 +02:00
|
|
|
if (count(array_intersect($required_permissions, $notifications->email)) >=1 || count(array_intersect($required_permissions, "all_user_notifications")) >=1 || count(array_intersect($required_permissions, "all_notifications")) >=1) {
|
2020-03-11 12:05:05 +01:00
|
|
|
array_push($notifiable_methods, 'mail');
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-11 12:05:05 +01:00
|
|
|
|
|
|
|
// if(count(array_intersect($required_permissions, $notifications->slack)) >=1)
|
|
|
|
// array_push($notifiable_methods, 'slack');
|
2020-04-01 10:54:22 +02:00
|
|
|
|
2020-03-11 12:05:05 +01:00
|
|
|
return $notifiable_methods;
|
|
|
|
}
|
2020-04-01 10:54:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
public function findUserEntityNotificationType($entity, $company_user, $required_permissions) :array
|
|
|
|
{
|
2020-04-04 12:32:42 +02:00
|
|
|
if ($this->migrationRunning($company_user)) {
|
2020-04-01 10:54:22 +02:00
|
|
|
return [];
|
2020-04-04 12:32:42 +02:00
|
|
|
}
|
2020-04-01 10:54:22 +02:00
|
|
|
|
|
|
|
$notifiable_methods = [];
|
|
|
|
$notifications = $company_user->notifications;
|
|
|
|
|
2020-06-05 02:24:02 +02:00
|
|
|
if(!$notifications)
|
|
|
|
return [];
|
|
|
|
|
2020-04-01 10:54:22 +02:00
|
|
|
if ($entity->user_id == $company_user->_user_id || $entity->assigned_user_id == $company_user->user_id) {
|
|
|
|
array_push($required_permissions, "all_user_notifications");
|
|
|
|
}
|
|
|
|
|
2020-06-16 12:53:21 +02:00
|
|
|
if (count(array_intersect($required_permissions, $notifications->email)) >=1 || count(array_intersect($required_permissions, ['all_user_notifications'])) >=1 || count(array_intersect($required_permissions, ['all_notifications'])) >=1) {
|
2020-04-01 10:54:22 +02:00
|
|
|
array_push($notifiable_methods, 'mail');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $notifiable_methods;
|
|
|
|
}
|
|
|
|
|
2020-05-26 12:22:50 +02:00
|
|
|
public function findCompanyUserNotificationType($company_user, $required_permissions) :array
|
|
|
|
{
|
|
|
|
if ($this->migrationRunning($company_user)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$notifiable_methods = [];
|
|
|
|
$notifications = $company_user->notifications;
|
|
|
|
|
2020-06-16 12:53:21 +02:00
|
|
|
if (count(array_intersect($required_permissions, $notifications->email)) >=1 || count(array_intersect($required_permissions, ['all_user_notifications'])) >=1 || count(array_intersect($required_permissions, ['all_notifications'])) >=1) {
|
2020-05-26 12:22:50 +02:00
|
|
|
array_push($notifiable_methods, 'mail');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $notifiable_methods;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-01 10:54:22 +02:00
|
|
|
private function migrationRunning($company_user)
|
|
|
|
{
|
|
|
|
return $company_user->is_migrating;
|
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|