2020-04-21 07:16:45 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-21 07:16:45 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-21 07:16:45 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-21 07:16:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules\Ninja;
|
|
|
|
|
2021-11-05 05:29:16 +01:00
|
|
|
use App\Models\CompanyUser;
|
2021-11-06 00:40:38 +01:00
|
|
|
use App\Models\User;
|
2020-04-21 07:16:45 +02:00
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class CanAddUserRule.
|
2020-04-21 07:16:45 +02:00
|
|
|
*/
|
|
|
|
class CanAddUserRule implements Rule
|
|
|
|
{
|
2021-10-20 05:35:28 +02:00
|
|
|
public function __construct()
|
2020-04-21 07:16:45 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
2021-11-05 05:29:16 +01:00
|
|
|
|
2022-01-11 09:08:08 +01:00
|
|
|
/* If the user is active then we can add them to the company */
|
2022-06-21 11:57:17 +02:00
|
|
|
if (User::where('email', request()->input('email'))->where('account_id', auth()->user()->account_id)->where('is_deleted', 0)->exists()) {
|
2022-01-11 09:08:08 +01:00
|
|
|
return true;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-01-11 09:08:08 +01:00
|
|
|
|
|
|
|
/* Check that we have sufficient quota to allow this to happen */
|
|
|
|
$count = CompanyUser::query()
|
|
|
|
->where('company_user.account_id', auth()->user()->account_id)
|
|
|
|
->join('users', 'users.id', '=', 'company_user.user_id')
|
|
|
|
->whereNull('users.deleted_at')
|
|
|
|
->whereNull('company_user.deleted_at')
|
|
|
|
->distinct()
|
|
|
|
->count('company_user.user_id');
|
2021-11-06 00:28:48 +01:00
|
|
|
|
|
|
|
return $count < auth()->user()->company()->account->num_users;
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2021-10-20 05:35:28 +02:00
|
|
|
return ctrans('texts.limit_users', ['limit' => auth()->user()->company()->account->num_users]);
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
|
|
|
}
|