feat: Ref 호환 접속 제한과 벌점 초기화 구현

실행 중인 프로필에서만 접속 벌점을 누적하고 제한 임계값과 대상 경로를 Ref 순서에 맞춘다. 자기 턴 명령 성공 시 순간 점수를 같은 flush에서 초기화하며 월간 누적 감쇠는 유지한다. 제한 중 메인 자동 갱신과 실시간 구독을 중지하고 수동 갱신 성공 시 복구한다.
This commit is contained in:
2026-08-15 18:49:41 +00:00
parent a99f8166eb
commit 48d94e5ff2
29 changed files with 982 additions and 232 deletions
@@ -0,0 +1,56 @@
import { createHmac } from 'node:crypto';
import { GATEWAY_PROFILE_STATUSES, type GatewayProfileStatus } from '@sammo-ts/common';
const INTERNAL_TOKEN_CONTEXT = 'sammo:profile-status-source:v1';
const profileStatuses = new Set<string>(GATEWAY_PROFILE_STATUSES);
export interface ProfileStatusSource {
get(profileName: string): Promise<GatewayProfileStatus | null>;
}
const deriveInternalToken = (secret: string): string =>
createHmac('sha256', secret).update(INTERNAL_TOKEN_CONTEXT).digest('hex');
const parseProfileStatus = (value: unknown, profileName: string): GatewayProfileStatus => {
if (!value || typeof value !== 'object' || Array.isArray(value)) {
throw new Error('invalid gateway profile status projection');
}
const record = value as Record<string, unknown>;
if (
Object.keys(record).sort().join(',') !== 'profileName,status' ||
record.profileName !== profileName ||
typeof record.status !== 'string' ||
!profileStatuses.has(record.status)
) {
throw new Error('invalid gateway profile status projection');
}
return record.status as GatewayProfileStatus;
};
export class GatewayHttpProfileStatusSource implements ProfileStatusSource {
private readonly baseUrl: string;
constructor(
baseUrl: string,
private readonly secret: string,
private readonly timeoutMs = 2_000
) {
this.baseUrl = baseUrl.replace(/\/$/u, '');
}
async get(profileName: string): Promise<GatewayProfileStatus | null> {
const response = await fetch(`${this.baseUrl}/internal/profile-status/${encodeURIComponent(profileName)}`, {
headers: {
'x-sammo-internal-token': deriveInternalToken(this.secret),
},
signal: AbortSignal.timeout(this.timeoutMs),
});
if (response.status === 404) {
return null;
}
if (!response.ok) {
throw new Error(`Gateway profile status request failed with HTTP ${response.status}.`);
}
return parseProfileStatus(await response.json(), profileName);
}
}