mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
9e957baeb5
Signed-off-by: snipe <snipe@snipe.net>
30 lines
975 B
PHP
30 lines
975 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use Closure;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
|
|
class UserCannotSwitchCompaniesIfItemsAssigned implements ValidationRule
|
|
{
|
|
/**
|
|
* Run the validation rule.
|
|
*
|
|
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
|
|
*/
|
|
public function validate(string $attribute, mixed $value, Closure $fail): void
|
|
{
|
|
$user = User::find(request()->route('user')->id);
|
|
|
|
if (($value) && ($user->allAssignedCount() > 0) && (Setting::getSettings()->full_multiple_companies_support=='1')) {
|
|
|
|
// Check for assets with a different company_id than the selected company_id
|
|
$user_assets = $user->assets()->where('assets.company_id', '!=', $value)->count();
|
|
if ($user_assets > 0) {
|
|
$fail(trans('admin/users/message.error.multi_company_items_assigned'));
|
|
}
|
|
}
|
|
}
|
|
}
|