96e996e9c2
- lib/soap.ts: executeSoapCommand (port de ac_soap.py; POST SOAP + basic auth al worldserver, timeout 5s, null si inaccesible). AC_SOAP_* en .env.local. - lib/characters.ts: getGameCharacters / characterIsOfflineAndOwned (acore_characters). - lib/character-services.ts: soapCharacterAction genérico (valida propiedad+offline, cooldown 12h vía home_revive/unstuckhistory, SOAP, registra historial) -> reviveCharacter / unstuckCharacter. - components/CharacterActionForm.tsx (cliente reutilizable: select + botón). - Routes /api/character/revive|unstuck (guard de sesión) y páginas app/[locale]/revive|unstuck (SSR, guardas, i18n). Namespace Services. Verificado: API sin sesión 401, páginas redirigen a login, cliente SOAP devuelve null limpio sin worldserver. Patrón base para el resto de servicios de personaje. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
58 lines
2.0 KiB
TypeScript
58 lines
2.0 KiB
TypeScript
import type { RowDataPacket } from 'mysql2'
|
|
import { db, DB } from './db'
|
|
import { executeSoapCommand } from './soap'
|
|
import { characterIsOfflineAndOwned } from './characters'
|
|
|
|
export interface Result {
|
|
success: boolean
|
|
error?: string
|
|
}
|
|
|
|
interface SoapActionConfig {
|
|
command: (character: string) => string
|
|
historyTable: string // tabla django_wow con columnas (character_name, used_at)
|
|
cooldownHours: number
|
|
}
|
|
|
|
/** Acción de personaje por SOAP con cooldown (revive, unstuck...). */
|
|
async function soapCharacterAction(accountId: number, character: string, cfg: SoapActionConfig): Promise<Result> {
|
|
if (!character) return { success: false, error: 'noCharacter' }
|
|
if (!(await characterIsOfflineAndOwned(accountId, character))) {
|
|
return { success: false, error: 'notOfflineOrOwned' }
|
|
}
|
|
try {
|
|
const [rows] = await db(DB.default).query<RowDataPacket[]>(
|
|
`SELECT used_at FROM ${cfg.historyTable} WHERE character_name = ? ORDER BY used_at DESC LIMIT 1`,
|
|
[character],
|
|
)
|
|
if (rows[0] && Date.now() - new Date(rows[0].used_at).getTime() < cfg.cooldownHours * 3600_000) {
|
|
return { success: false, error: 'cooldown' }
|
|
}
|
|
} catch {
|
|
/* tabla de historial ausente: seguimos */
|
|
}
|
|
const resp = await executeSoapCommand(cfg.command(character))
|
|
if (resp === null) return { success: false, error: 'soapError' }
|
|
await db(DB.default).query(
|
|
`INSERT INTO ${cfg.historyTable} (character_name, used_at) VALUES (?, NOW())`,
|
|
[character],
|
|
)
|
|
return { success: true }
|
|
}
|
|
|
|
export function reviveCharacter(accountId: number, character: string): Promise<Result> {
|
|
return soapCharacterAction(accountId, character, {
|
|
command: (c) => `.revive ${c}`,
|
|
historyTable: 'home_revivehistory',
|
|
cooldownHours: 12,
|
|
})
|
|
}
|
|
|
|
export function unstuckCharacter(accountId: number, character: string): Promise<Result> {
|
|
return soapCharacterAction(accountId, character, {
|
|
command: (c) => `.unstuck ${c}`,
|
|
historyTable: 'home_unstuckhistory',
|
|
cooldownHours: 12,
|
|
})
|
|
}
|