- User 모델 $fillable에 is_active, created_by, updated_by 추가 - EmployeeService 이중 비밀번호 해싱 제거 (모델 hashed 캐스트 활용) - create_account 플래그 의존성 제거 (password 있으면 계정 생성) Fixes: employee-register E2E test failure Co-Authored-By: Claude <noreply@anthropic.com>
114 lines
2.8 KiB
PHP
114 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Members;
|
|
|
|
use App\Models\Commons\File;
|
|
use App\Models\Tenants\Tenant;
|
|
use App\Models\Tenants\TenantUserProfile;
|
|
use App\Traits\ModelTrait;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
use Spatie\Permission\Traits\HasRoles;
|
|
|
|
/**
|
|
* @mixin IdeHelperUser
|
|
*/
|
|
class User extends Authenticatable
|
|
{
|
|
use HasApiTokens, HasRoles, ModelTrait, Notifiable, SoftDeletes;
|
|
|
|
protected $guard_name = 'api'; // ★ 중요: 권한/역할 가드 통일
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'name',
|
|
'email',
|
|
'phone',
|
|
'password',
|
|
'options',
|
|
'profile_photo_path',
|
|
'is_active',
|
|
'created_by',
|
|
'updated_by',
|
|
];
|
|
|
|
protected $casts = [
|
|
'email_verified_at' => 'datetime',
|
|
'last_login_at' => 'datetime',
|
|
'options' => 'array',
|
|
'deleted_at' => 'datetime',
|
|
'password' => 'hashed', // ← 이걸 쓰면 자동 해싱
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password', 'remember_token',
|
|
'two_factor_secret', 'two_factor_recovery_codes', 'two_factor_confirmed_at',
|
|
'deleted_at',
|
|
];
|
|
|
|
protected $appends = [
|
|
'has_account',
|
|
];
|
|
|
|
/**
|
|
* 시스템 계정(비밀번호) 보유 여부
|
|
*/
|
|
public function getHasAccountAttribute(): bool
|
|
{
|
|
return ! empty($this->password);
|
|
}
|
|
|
|
public function userTenants()
|
|
{
|
|
return $this->hasMany(UserTenant::class);
|
|
}
|
|
|
|
public function userTenant()
|
|
{
|
|
return $this->hasOne(UserTenant::class)->where('is_default', 1);
|
|
}
|
|
|
|
public function userRoles()
|
|
{
|
|
return $this->hasMany(UserRole::class);
|
|
}
|
|
|
|
public function userTenantById($tenantId)
|
|
{
|
|
return $this->hasOne(UserTenant::class)->where('tenant_id', $tenantId);
|
|
}
|
|
|
|
public function files()
|
|
{
|
|
return $this->morphMany(File::class, 'fileable');
|
|
}
|
|
|
|
public function tenantsMembership(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Tenant::class, 'user_tenants', 'user_id', 'tenant_id')
|
|
->as('membership') // pivot 대신 membership으로 표기
|
|
->withPivot(['is_active', 'is_default', 'joined_at', 'left_at', 'deleted_at'])
|
|
->wherePivotNull('deleted_at'); // 소프트삭제 제외
|
|
}
|
|
|
|
/**
|
|
* 테넌트별 사용자 프로필 (전체)
|
|
*/
|
|
public function tenantProfiles()
|
|
{
|
|
return $this->hasMany(TenantUserProfile::class);
|
|
}
|
|
|
|
/**
|
|
* 현재 테넌트의 사용자 프로필
|
|
* 주의: 조회 시 tenant_id 조건 추가 필요
|
|
*/
|
|
public function tenantProfile()
|
|
{
|
|
return $this->hasOne(TenantUserProfile::class);
|
|
}
|
|
}
|