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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. 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)
|
|
|
|
{
|
2024-01-31 08:23:54 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
2022-01-11 09:08:08 +01:00
|
|
|
/* If the user is active then we can add them to the company */
|
2024-01-31 08:23:54 +01:00
|
|
|
if (User::where('email', request()->input('email'))->where('account_id', $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
|
|
|
|
2024-01-31 08:23:54 +01:00
|
|
|
/*
|
|
|
|
Check that we have sufficient quota to allow this to happen
|
|
|
|
|
|
|
|
@ 31-01-2024 - changed query to use email instead of user_id
|
|
|
|
|
2022-01-11 09:08:08 +01:00
|
|
|
$count = CompanyUser::query()
|
2024-01-31 08:23:54 +01:00
|
|
|
->where('company_user.account_id', $user->account_id)
|
2022-01-11 09:08:08 +01:00
|
|
|
->join('users', 'users.id', '=', 'company_user.user_id')
|
|
|
|
->whereNull('users.deleted_at')
|
|
|
|
->whereNull('company_user.deleted_at')
|
|
|
|
->distinct()
|
|
|
|
->count('company_user.user_id');
|
2024-01-31 08:23:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
$count = CompanyUser::query()
|
|
|
|
->where("company_user.account_id", $user->account_id)
|
|
|
|
->join("users", "users.id", "=", "company_user.user_id")
|
|
|
|
->whereNull("users.deleted_at")
|
|
|
|
->whereNull("company_user.deleted_at")
|
|
|
|
->distinct()
|
|
|
|
->count("users.email");
|
2021-11-06 00:28:48 +01:00
|
|
|
|
2024-01-31 08:23:54 +01:00
|
|
|
return $count < $user->company()->account->num_users;
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2024-01-31 08:23:54 +01:00
|
|
|
|
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return ctrans('texts.limit_users', ['limit' => $user->company()->account->num_users]);
|
|
|
|
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
|
|
|
}
|