- 사용자 수정/생성 화면에 직급(position_key), 직책(job_title_key) 선택 필드 추가 - HR 사원관리의 position-add-modal 재사용 ([+] 버튼으로 새 직급/직책 추가) - UserService에서 tenant_user_profiles 테이블에 저장 (updateOrInsert) - UpdateUserRequest, StoreUserRequest에 validation 규칙 추가
113 lines
3.3 KiB
PHP
113 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Models\Tenants\Tenant;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class StoreUserRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 현재 선택된 테넌트가 본사(HQ)인지 확인
|
|
*/
|
|
protected function isHQTenant(): bool
|
|
{
|
|
$tenantId = session('selected_tenant_id');
|
|
if (! $tenantId) {
|
|
return false;
|
|
}
|
|
|
|
$tenant = Tenant::find($tenantId);
|
|
|
|
return $tenant?->tenant_type === 'HQ';
|
|
}
|
|
|
|
/**
|
|
* Prepare the data for validation.
|
|
* 일반관리자가 슈퍼관리자를 생성하려는 경우 is_super_admin 필드 제거
|
|
*/
|
|
protected function prepareForValidation(): void
|
|
{
|
|
// 슈퍼관리자가 아닌 경우 is_super_admin 필드를 false로 강제 설정
|
|
if (! auth()->user()?->is_super_admin) {
|
|
$this->merge([
|
|
'is_super_admin' => false,
|
|
]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
$rules = [
|
|
'user_id' => 'nullable|string|max:50|unique:users,user_id',
|
|
'name' => 'required|string|max:100',
|
|
'email' => 'required|email|max:255|unique:users,email',
|
|
'phone' => 'nullable|string|max:20',
|
|
'role' => 'nullable|string|max:50',
|
|
'is_active' => 'nullable|boolean',
|
|
'is_super_admin' => 'nullable|boolean',
|
|
'role_ids' => 'nullable|array',
|
|
'role_ids.*' => 'integer|exists:roles,id',
|
|
'department_ids' => 'nullable|array',
|
|
'department_ids.*' => 'integer|exists:departments,id',
|
|
'position_key' => 'nullable|string|max:64',
|
|
'job_title_key' => 'nullable|string|max:64',
|
|
];
|
|
|
|
// 비본사 테넌트: 비밀번호 직접 입력 필수
|
|
if (! $this->isHQTenant()) {
|
|
$rules['password'] = 'required|string|min:8|max:100|confirmed';
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
|
|
/**
|
|
* Get custom attributes for validator errors.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
public function attributes(): array
|
|
{
|
|
return [
|
|
'user_id' => '사용자 ID',
|
|
'name' => '이름',
|
|
'email' => '이메일',
|
|
'phone' => '연락처',
|
|
'password' => '비밀번호',
|
|
'password_confirmation' => '비밀번호 확인',
|
|
'role' => '역할',
|
|
'is_active' => '활성 상태',
|
|
'is_super_admin' => '슈퍼 관리자',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get custom messages for validator errors.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'email.unique' => '이미 사용 중인 이메일입니다.',
|
|
'user_id.unique' => '이미 사용 중인 사용자 ID입니다.',
|
|
'password.confirmed' => '비밀번호가 일치하지 않습니다.',
|
|
'password.min' => '비밀번호는 최소 8자 이상이어야 합니다.',
|
|
];
|
|
}
|
|
}
|