1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/Http/ValidationRules/Ninja/CanAddUserRule.php

80 lines
2.3 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @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)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
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;
use Illuminate\Contracts\Validation\Rule;
/**
* Class CanAddUserRule.
*/
class CanAddUserRule implements Rule
{
2021-10-20 05:35:28 +02:00
public function __construct()
{
}
/**
* @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();
/* 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()) {
return true;
}
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
$count = CompanyUser::query()
2024-01-31 08:23:54 +01:00
->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('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;
}
/**
* @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]);
}
}