8397e4690b
needs merged with: https://dev.sp-tarkov.com/SPT-AKI/Modules/pulls/95 Get a bool from the server to indicate server mods being present and send to the client Co-authored-by: Cj <161484149+CJ-SPT@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/258 Co-authored-by: Cj <cj@noreply.dev.sp-tarkov.com> Co-committed-by: Cj <cj@noreply.dev.sp-tarkov.com>
58 lines
2.8 KiB
TypeScript
58 lines
2.8 KiB
TypeScript
import { ClientLogController } from "@spt-aki/controllers/ClientLogController";
|
|
import { ModLoadOrder } from "@spt-aki/loaders/ModLoadOrder";
|
|
import { INullResponseData } from "@spt-aki/models/eft/httpResponse/INullResponseData";
|
|
import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes";
|
|
import { ICoreConfig, IRelease } from "@spt-aki/models/spt/config/ICoreConfig";
|
|
import { IClientLogRequest } from "@spt-aki/models/spt/logging/IClientLogRequest";
|
|
import { ConfigServer } from "@spt-aki/servers/ConfigServer";
|
|
import { LocalisationService } from "@spt-aki/services/LocalisationService";
|
|
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,
|
|
@inject("ClientLogController") protected clientLogController: ClientLogController,
|
|
@inject("ConfigServer") protected configServer: ConfigServer,
|
|
@inject("LocalisationService") protected localisationService: LocalisationService,
|
|
@inject("ModLoadOrder") protected modLoadOrder: ModLoadOrder,
|
|
)
|
|
{}
|
|
|
|
/**
|
|
* Handle /singleplayer/log
|
|
*/
|
|
public clientLog(url: string, info: IClientLogRequest, sessionID: string): INullResponseData
|
|
{
|
|
this.clientLogController.clientLog(info);
|
|
return this.httpResponse.nullResponse();
|
|
}
|
|
|
|
/**
|
|
* Handle /singleplayer/release
|
|
*/
|
|
public releaseNotes(): string
|
|
{
|
|
const data: IRelease = this.configServer.getConfig<ICoreConfig>(ConfigTypes.CORE).release;
|
|
|
|
data.betaDisclaimerText = this.localisationService.getText("release-beta-disclaimer");
|
|
data.betaDisclaimerAcceptText = this.localisationService.getText("release-beta-disclaimer-accept");
|
|
data.serverModsLoadedText = this.localisationService.getText("release-server-mods-loaded");
|
|
data.serverModsLoadedDebugText = this.localisationService.getText("release-server-mods-debug-message");
|
|
data.clientModsLoadedText = this.localisationService.getText("release-plugins-loaded");
|
|
data.clientModsLoadedDebugText = this.localisationService.getText("release-plugins-loaded-debug-message");
|
|
data.illegalPluginsLoadedText = this.localisationService.getText("release-illegal-plugins-loaded");
|
|
data.illegalPluginsExceptionText = this.localisationService.getText("release-illegal-plugins-exception");
|
|
data.releaseSummaryText = this.localisationService.getText("release-summary");
|
|
|
|
data.isBeta = globalThis.G_WATERMARK_ENABLED;
|
|
data.isModdable = globalThis.G_MODS_ENABLED;
|
|
data.isModded = this.modLoadOrder.getLoadOrder().length > 0 ? true : false;
|
|
|
|
return this.httpResponse.noBody(data);
|
|
}
|
|
}
|