2023-10-26 11:44:17 +02:00
|
|
|
import { ClientLogController } from "@spt-aki/controllers/ClientLogController";
|
|
|
|
import { INullResponseData } from "@spt-aki/models/eft/httpResponse/INullResponseData";
|
2024-03-07 19:16:55 +01:00
|
|
|
import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes";
|
|
|
|
import { ICoreConfig, IRelease } from "@spt-aki/models/spt/config/ICoreConfig";
|
2023-10-26 11:44:17 +02:00
|
|
|
import { IClientLogRequest } from "@spt-aki/models/spt/logging/IClientLogRequest";
|
2024-03-07 19:16:55 +01:00
|
|
|
import { ConfigServer } from "@spt-aki/servers/ConfigServer";
|
|
|
|
import { LocalisationService } from "@spt-aki/services/LocalisationService";
|
2023-10-26 11:44:17 +02:00
|
|
|
import { HttpResponseUtil } from "@spt-aki/utils/HttpResponseUtil";
|
|
|
|
import { inject, injectable } from "tsyringe";
|
|
|
|
|
|
|
|
/** Handle client logging related events */
|
|
|
|
@injectable()
|
|
|
|
export class ClientLogCallbacks
|
|
|
|
{
|
|
|
|
constructor(
|
|
|
|
@inject("HttpResponseUtil") protected httpResponse: HttpResponseUtil,
|
2023-11-16 02:35:05 +01:00
|
|
|
@inject("ClientLogController") protected clientLogController: ClientLogController,
|
2024-03-07 19:16:55 +01:00
|
|
|
@inject("ConfigServer") protected configServer: ConfigServer,
|
|
|
|
@inject("LocalisationService") protected localisationService: LocalisationService,
|
2023-11-16 02:35:05 +01:00
|
|
|
)
|
|
|
|
{}
|
2023-10-26 11:44:17 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle /singleplayer/log
|
|
|
|
*/
|
|
|
|
public clientLog(url: string, info: IClientLogRequest, sessionID: string): INullResponseData
|
|
|
|
{
|
|
|
|
this.clientLogController.clientLog(info);
|
|
|
|
return this.httpResponse.nullResponse();
|
|
|
|
}
|
2024-03-07 19:16:55 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle /singleplayer/release
|
|
|
|
*/
|
|
|
|
public releaseNotes(): string
|
|
|
|
{
|
|
|
|
const data: IRelease = this.configServer.getConfig<ICoreConfig>(ConfigTypes.CORE).release;
|
|
|
|
data.betaDisclaimer = this.localisationService.getText("beta-disclaimer");
|
|
|
|
data.releaseSummary = this.localisationService.getText("release-summary");
|
2024-03-11 09:45:05 +01:00
|
|
|
data.isBeta = globalThis.G_WATERMARK_ENABLED;
|
|
|
|
data.isModdable = globalThis.G_MODS_ENABLED;
|
|
|
|
|
2024-03-07 19:16:55 +01:00
|
|
|
return this.httpResponse.noBody(data);
|
|
|
|
}
|
2023-11-16 02:35:05 +01:00
|
|
|
}
|