2020-03-11 12:05:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-03-11 12:05:05 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-03-11 12:05:05 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Utils\Traits\Notifications;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class UserNotifies.
|
2021-02-14 22:32:59 +01:00
|
|
|
*
|
|
|
|
* I think the term $required_permissions is confusing here, what
|
|
|
|
* we are actually defining is the notifications available on the
|
|
|
|
* user itself.
|
2020-03-11 12:05:05 +01:00
|
|
|
*/
|
|
|
|
trait UserNotifies
|
|
|
|
{
|
|
|
|
public function findUserNotificationTypes($invitation, $company_user, $entity_name, $required_permissions) :array
|
|
|
|
{
|
2020-11-01 04:19:03 +01:00
|
|
|
if ($company_user->company->is_disabled) {
|
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;
|
|
|
|
|
2021-02-01 06:30:28 +01:00
|
|
|
//if a user owns this record or is assigned to it, they are attached the permission for notification.
|
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-09-06 11:38:10 +02:00
|
|
|
array_push($required_permissions, 'all_user_notifications');
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-11 12:05:05 +01:00
|
|
|
|
2021-03-24 10:14:30 +01:00
|
|
|
if (count(array_intersect($required_permissions, $notifications->email)) >= 1 || count(array_intersect(['all_user_notifications'], $notifications->email)) >= 1 || count(array_intersect(['all_notifications'],$notifications->email)) >= 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
|
|
|
|
2021-03-24 10:14:30 +01:00
|
|
|
nlog($notifiable_methods);
|
|
|
|
|
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-11-01 08:53:43 +01:00
|
|
|
if ($company_user->company->is_disabled) {
|
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-09-06 11:38:10 +02:00
|
|
|
if (! $notifications) {
|
2020-06-05 02:24:02 +02:00
|
|
|
return [];
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-06-05 02:24:02 +02:00
|
|
|
|
2020-04-01 10:54:22 +02:00
|
|
|
if ($entity->user_id == $company_user->_user_id || $entity->assigned_user_id == $company_user->user_id) {
|
2020-09-06 11:38:10 +02:00
|
|
|
array_push($required_permissions, 'all_user_notifications');
|
2020-04-01 10:54:22 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +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
|
|
|
|
{
|
2021-02-01 12:26:42 +01:00
|
|
|
|
2020-11-01 08:53:43 +01:00
|
|
|
if ($company_user->company->is_disabled) {
|
2020-05-26 12:22:50 +02:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$notifiable_methods = [];
|
|
|
|
$notifications = $company_user->notifications;
|
|
|
|
|
2021-02-14 22:32:59 +01:00
|
|
|
//conditional to define whether the company user has the required notification for the MAIL notification TYPE
|
2020-09-06 11:38:10 +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;
|
|
|
|
}
|
2021-02-14 22:32:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns a filtered collection of users with the
|
|
|
|
* required notification - NOTE this is only implemented for
|
|
|
|
* EMAIL notification types - we'll need to chain
|
|
|
|
* additional types at a later stage.
|
|
|
|
*/
|
|
|
|
public function filterUsersByPermissions($company_users, $entity, array $required_notification)
|
|
|
|
{
|
|
|
|
|
|
|
|
return $company_users->filter(function($company_user) use($required_notification, $entity){
|
|
|
|
|
2021-02-14 23:12:14 +01:00
|
|
|
return $this->checkNotificationExists($company_user, $entity, $required_notification);
|
2021-02-14 22:32:59 +01:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function checkNotificationExists($company_user, $entity, $required_notification)
|
|
|
|
{
|
|
|
|
/* Always make sure we push the `all_notificaitons` into the mix */
|
|
|
|
array_push($required_notification, 'all_notifications');
|
|
|
|
|
|
|
|
/* Selectively add the all_user if the user is associated with the entity */
|
|
|
|
if ($entity->user_id == $company_user->_user_id || $entity->assigned_user_id == $company_user->user_id)
|
|
|
|
array_push($required_notification, 'all_user_notifications');
|
|
|
|
|
|
|
|
|
|
|
|
return count(array_intersect($required_notification, $company_user->notifications->email)) >= 1;
|
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|