mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
|
<?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\Http\ValidationRules\User;
|
||
|
|
||
|
use App\Libraries\MultiDB;
|
||
|
use App\Models\User;
|
||
|
use Illuminate\Contracts\Validation\Rule;
|
||
|
|
||
|
/**
|
||
|
* Class RelatedUserRule.
|
||
|
*/
|
||
|
class RelatedUserRule implements Rule
|
||
|
{
|
||
|
public $input;
|
||
|
|
||
|
public function __construct($input)
|
||
|
{
|
||
|
$this->input = $input;
|
||
|
}
|
||
|
/**
|
||
|
* @param string $attribute
|
||
|
* @param mixed $value
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function passes($attribute, $value)
|
||
|
{
|
||
|
return $this->checkUserIsRelated($value);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function message()
|
||
|
{
|
||
|
return 'User not associated with this account';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $email
|
||
|
* @return bool
|
||
|
*/
|
||
|
private function checkUserIsRelated($user_id) : bool
|
||
|
{
|
||
|
return User::query()
|
||
|
->where('id', $user_id)
|
||
|
->where('account_id', auth()->user()->company()->account_id)
|
||
|
->exists();
|
||
|
}
|
||
|
}
|