- 在多个控制器中更新权限检查逻辑,确保管理员能够更灵活地管理代理和玩家。 - 在 AdminPlayerStoreController 中引入对玩家创建能力的验证,确保只有具备相应权限的管理员能够创建玩家。 - 更新请求验证逻辑,新增 credit_limit、rebate_rate 和 extra_rebate_rate 字段,以支持更细粒度的玩家管理。 - 在 AgentNodeProfileController 中添加对父代理能力授予的验证,确保子代理的权限在父代理范围内。 - 引入 AgentProfileFieldRules 以简化代理资料更新请求的规则定义,提升代码复用性。
69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Agent;
|
|
|
|
use App\Models\AgentNode;
|
|
use App\Models\AgentProfile;
|
|
use App\Support\AgentOverdueGuard;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
final class CreditAllocationValidator
|
|
{
|
|
public function __construct(
|
|
private readonly AgentCreditAllocatedSyncService $allocatedSync,
|
|
) {}
|
|
|
|
public function assertAllocationWithinParent(AgentNode $parent, int $additionalCredit): void
|
|
{
|
|
$this->allocatedSync->syncForAgent($parent);
|
|
|
|
$profile = AgentProfile::query()->where('agent_node_id', $parent->id)->first();
|
|
if ($profile === null) {
|
|
return;
|
|
}
|
|
|
|
$available = max(0, (int) $profile->credit_limit - (int) $profile->allocated_credit);
|
|
if ($additionalCredit > $available) {
|
|
throw ValidationException::withMessages([
|
|
'credit_limit' => ['exceeds_available'],
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function assertPlayerCreditWithinAgent(AgentNode $agent, int $playerCreditLimit): void
|
|
{
|
|
if ($playerCreditLimit < 0) {
|
|
throw ValidationException::withMessages([
|
|
'credit_limit' => ['invalid'],
|
|
]);
|
|
}
|
|
|
|
$this->assertPlayerCreditDeltaWithinAgent($agent, $playerCreditLimit);
|
|
}
|
|
|
|
public function assertPlayerCreditDeltaWithinAgent(AgentNode $agent, int $additionalCredit): void
|
|
{
|
|
if ($additionalCredit <= 0) {
|
|
return;
|
|
}
|
|
|
|
AgentOverdueGuard::assertAgentMayGrantCredit((int) $agent->id);
|
|
|
|
$this->allocatedSync->syncForAgent($agent);
|
|
|
|
$profile = AgentProfile::query()->where('agent_node_id', $agent->id)->first();
|
|
if ($profile === null) {
|
|
throw ValidationException::withMessages([
|
|
'credit_limit' => ['agent_profile_required'],
|
|
]);
|
|
}
|
|
|
|
$available = max(0, (int) $profile->credit_limit - (int) $profile->allocated_credit);
|
|
if ($additionalCredit > $available) {
|
|
throw ValidationException::withMessages([
|
|
'credit_limit' => ['exceeds_available'],
|
|
]);
|
|
}
|
|
}
|
|
}
|