1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/ValidationRules/User/AttachableUser.php

81 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\ValidationRules\User;
use App\Models\CompanyUser;
use App\Models\User;
use Illuminate\Contracts\Validation\Rule;
/**
* Class AttachableUser.
*/
class AttachableUser implements Rule
{
2021-05-26 03:32:01 +02:00
public $message;
public function __construct()
{
}
/**
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return $this->checkUserIsAttachable($value);
}
/**
* @return string
*/
public function message()
{
2021-05-26 03:32:01 +02:00
return $this->message;
}
/**
* @param $user_id
* @return bool
*/
private function checkUserIsAttachable($email) : bool
{
if (empty($email)) {
return false;
}
$user = User::where('email', $email)->first();
if(!$user)
return true;
2021-05-28 10:37:08 +02:00
$user_already_attached = CompanyUser::query()
->where('user_id', $user->id)
->where('account_id',$user->account_id)
->where('company_id', auth()->user()->company()->id)
->exists();
2021-05-26 03:32:01 +02:00
//If the user is already attached or isn't link to this account - return false
if($user_already_attached) {
$this->message = ctrans('texts.user_duplicate_error');
return false;
2021-05-26 03:32:01 +02:00
}
2021-05-26 03:32:01 +02:00
if($user->account_id != auth()->user()->account_id){
$this->message = ctrans('texts.user_cross_linked_error');
return false;
}
return true;
}
}