64 lines
1.5 KiB
PHP
64 lines
1.5 KiB
PHP
<?php
|
||
|
||
namespace App\Models;
|
||
|
||
use App\Support\PlayerAuthSource;
|
||
use Illuminate\Database\Eloquent\Model;
|
||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||
|
||
/**
|
||
* 主站玩家在本地映射账号(表 players),与 SSO JWT 中 site_code + site_player_id 对应。
|
||
*/
|
||
final class Player extends Model
|
||
{
|
||
protected $fillable = [
|
||
'site_code',
|
||
'agent_node_id',
|
||
'site_player_id',
|
||
'auth_source',
|
||
'funding_mode',
|
||
'username',
|
||
'password_hash',
|
||
'nickname',
|
||
'default_currency',
|
||
'status',
|
||
'risk_tags',
|
||
'last_login_at',
|
||
'login_failed_count',
|
||
'login_locked_until',
|
||
'native_token_version',
|
||
];
|
||
|
||
protected $hidden = [
|
||
'password_hash',
|
||
];
|
||
|
||
protected function casts(): array
|
||
{
|
||
return [
|
||
'agent_node_id' => 'integer',
|
||
'last_login_at' => 'datetime',
|
||
'login_failed_count' => 'integer',
|
||
'login_locked_until' => 'datetime',
|
||
'native_token_version' => 'integer',
|
||
'risk_tags' => 'array',
|
||
];
|
||
}
|
||
|
||
public function isLotteryNative(): bool
|
||
{
|
||
return (string) $this->auth_source === PlayerAuthSource::LOTTERY_NATIVE;
|
||
}
|
||
|
||
public function wallets(): HasMany
|
||
{
|
||
return $this->hasMany(PlayerWallet::class);
|
||
}
|
||
|
||
public function agentNode(): BelongsTo
|
||
{
|
||
return $this->belongsTo(AgentNode::class, 'agent_node_id');
|
||
}
|
||
}
|