1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 21:52:35 +01:00
invoiceninja/app/Http/ValidationRules/Ninja/CanAddUserRule.php

66 lines
1.7 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. 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
$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-02-13 05:25:18 +01:00
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]);
}
}