feat: 增强代理和玩家管理功能
- 在多个控制器中更新权限检查逻辑,确保管理员能够更灵活地管理代理和玩家。 - 在 AdminPlayerStoreController 中引入对玩家创建能力的验证,确保只有具备相应权限的管理员能够创建玩家。 - 更新请求验证逻辑,新增 credit_limit、rebate_rate 和 extra_rebate_rate 字段,以支持更细粒度的玩家管理。 - 在 AgentNodeProfileController 中添加对父代理能力授予的验证,确保子代理的权限在父代理范围内。 - 引入 AgentProfileFieldRules 以简化代理资料更新请求的规则定义,提升代码复用性。
This commit is contained in:
@@ -2,41 +2,29 @@
|
||||
|
||||
namespace App\Services\Agent;
|
||||
|
||||
use App\Models\AdminRole;
|
||||
use App\Models\AdminSite;
|
||||
use App\Models\AdminUser;
|
||||
use App\Models\AgentNode;
|
||||
use App\Services\Integration\IntegrationSiteService;
|
||||
use App\Support\AdminUserStatus;
|
||||
use App\Support\AgentPlatformRole;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Validation\ValidationException;
|
||||
|
||||
final class AgentSiteProvisioningService
|
||||
{
|
||||
/** @var list<string> */
|
||||
private const LINE_ROOT_ROLE_SLUGS = [
|
||||
'prd.agent.view',
|
||||
'prd.agent.manage',
|
||||
'prd.users.manage',
|
||||
'prd.users.view_finance',
|
||||
'prd.users.view_cs',
|
||||
'prd.tickets.view',
|
||||
'prd.report.view',
|
||||
'prd.wallet_reconcile.view',
|
||||
'prd.wallet_reconcile.view_cs',
|
||||
];
|
||||
|
||||
public function __construct(
|
||||
private readonly IntegrationSiteService $integrationSiteService,
|
||||
private readonly AgentProfileService $agentProfileService,
|
||||
) {}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $payload site fields + name, username, password, email?, status?
|
||||
* @return array{site: AdminSite, agent_node: AgentNode, secrets: array{sso_jwt_secret: string, wallet_api_key: string}}
|
||||
* 在已存在的接入站点上创建一级代理(根节点)及后台登录账号。
|
||||
*
|
||||
* @param array<string, mixed> $payload site_code, code, name, username, password, email?, status?, profile fields
|
||||
* @return array{site: AdminSite, agent_node: AgentNode}
|
||||
*/
|
||||
public function createRootAgent(AdminUser $actor, array $payload): array
|
||||
{
|
||||
$siteCode = strtolower(trim((string) ($payload['site_code'] ?? '')));
|
||||
$code = strtolower(trim((string) ($payload['code'] ?? '')));
|
||||
$name = trim((string) ($payload['name'] ?? ''));
|
||||
$username = trim((string) ($payload['username'] ?? ''));
|
||||
@@ -44,8 +32,9 @@ final class AgentSiteProvisioningService
|
||||
$email = isset($payload['email']) ? trim((string) $payload['email']) : null;
|
||||
$status = (int) ($payload['status'] ?? 1);
|
||||
|
||||
if ($code === '' || $name === '' || $username === '' || $password === '') {
|
||||
if ($siteCode === '' || $code === '' || $name === '' || $username === '' || $password === '') {
|
||||
throw ValidationException::withMessages([
|
||||
'site_code' => $siteCode === '' ? ['required'] : [],
|
||||
'code' => $code === '' ? ['required'] : [],
|
||||
'name' => $name === '' ? ['required'] : [],
|
||||
'username' => $username === '' ? ['required'] : [],
|
||||
@@ -53,6 +42,11 @@ final class AgentSiteProvisioningService
|
||||
]);
|
||||
}
|
||||
|
||||
$site = AdminSite::query()->where('code', $siteCode)->first();
|
||||
if ($site === null) {
|
||||
throw ValidationException::withMessages(['site_code' => ['exists']]);
|
||||
}
|
||||
|
||||
if (AgentNode::query()->where('code', $code)->exists()) {
|
||||
throw ValidationException::withMessages(['code' => ['unique']]);
|
||||
}
|
||||
@@ -61,28 +55,18 @@ final class AgentSiteProvisioningService
|
||||
throw ValidationException::withMessages(['username' => ['unique']]);
|
||||
}
|
||||
|
||||
$siteData = array_merge($payload, [
|
||||
'code' => $code,
|
||||
'name' => $name,
|
||||
'status' => $status === 0 ? 0 : 1,
|
||||
]);
|
||||
$existingRoot = AgentNode::query()
|
||||
->where('admin_site_id', $site->id)
|
||||
->where('depth', 0)
|
||||
->first();
|
||||
|
||||
return DB::transaction(function () use ($actor, $siteData, $code, $name, $username, $password, $email, $status): array {
|
||||
$created = $this->integrationSiteService->create($siteData);
|
||||
$site = $created['site'];
|
||||
$secrets = $created['secrets'];
|
||||
|
||||
$existingRoot = AgentNode::query()
|
||||
->where('admin_site_id', $site->id)
|
||||
->where('depth', 0)
|
||||
->first();
|
||||
|
||||
if ($existingRoot !== null) {
|
||||
throw ValidationException::withMessages([
|
||||
'code' => ['site_root_exists'],
|
||||
]);
|
||||
}
|
||||
if ($existingRoot !== null) {
|
||||
throw ValidationException::withMessages([
|
||||
'site_code' => ['site_root_exists'],
|
||||
]);
|
||||
}
|
||||
|
||||
return DB::transaction(function () use ($actor, $site, $code, $name, $username, $password, $email, $status, $payload): array {
|
||||
$node = AgentNode::query()->create([
|
||||
'admin_site_id' => $site->id,
|
||||
'parent_id' => null,
|
||||
@@ -97,19 +81,7 @@ final class AgentSiteProvisioningService
|
||||
$node->path = '/'.$node->id.'/';
|
||||
$node->save();
|
||||
|
||||
$role = AdminRole::query()->create([
|
||||
'slug' => 'agent_owner_'.$node->id,
|
||||
'code' => 'agent_owner_'.$node->id,
|
||||
'name' => '代理账号',
|
||||
'description' => '线路根代理默认角色',
|
||||
'status' => $status === 0 ? 0 : 1,
|
||||
'is_system' => false,
|
||||
'sort_order' => 0,
|
||||
'scope_type' => AdminRole::SCOPE_AGENT,
|
||||
'owner_agent_id' => $node->id,
|
||||
'delegated_from_role_id' => null,
|
||||
]);
|
||||
$role->syncLegacyPermissionSlugs(self::LINE_ROOT_ROLE_SLUGS);
|
||||
AgentPlatformRole::resolve();
|
||||
|
||||
$user = AdminUser::query()->create([
|
||||
'username' => $username,
|
||||
@@ -125,14 +97,15 @@ final class AgentSiteProvisioningService
|
||||
'is_primary' => true,
|
||||
'granted_at' => now(),
|
||||
]);
|
||||
$user->syncAgentRoleIds((int) $node->id, [(int) $role->id]);
|
||||
AgentPlatformRole::assignPrimaryOperator($user, $node);
|
||||
|
||||
$defaults = config('agent_line_defaults', []);
|
||||
$this->agentProfileService->upsertForNode($node, [
|
||||
'total_share_rate' => (float) ($payload['total_share_rate'] ?? 100),
|
||||
'credit_limit' => (int) ($payload['credit_limit'] ?? 0),
|
||||
'rebate_limit' => (float) ($payload['rebate_limit'] ?? 0),
|
||||
'default_player_rebate' => (float) ($payload['default_player_rebate'] ?? 0),
|
||||
'settlement_cycle' => (string) ($payload['settlement_cycle'] ?? 'weekly'),
|
||||
'total_share_rate' => (float) ($payload['total_share_rate'] ?? $defaults['total_share_rate'] ?? 100),
|
||||
'credit_limit' => (int) ($payload['credit_limit'] ?? $defaults['credit_limit'] ?? 0),
|
||||
'rebate_limit' => (float) ($payload['rebate_limit'] ?? $defaults['rebate_limit'] ?? 0),
|
||||
'default_player_rebate' => (float) ($payload['default_player_rebate'] ?? $defaults['default_player_rebate'] ?? 0),
|
||||
'settlement_cycle' => (string) ($payload['settlement_cycle'] ?? $defaults['settlement_cycle'] ?? 'weekly'),
|
||||
'can_grant_extra_rebate' => (bool) ($payload['can_grant_extra_rebate'] ?? true),
|
||||
'can_create_child_agent' => (bool) ($payload['can_create_child_agent'] ?? true),
|
||||
'can_create_player' => (bool) ($payload['can_create_player'] ?? true),
|
||||
@@ -141,7 +114,6 @@ final class AgentSiteProvisioningService
|
||||
return [
|
||||
'site' => $site->fresh(),
|
||||
'agent_node' => $node->fresh(['adminSite']),
|
||||
'secrets' => $secrets,
|
||||
];
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user