mirror of
https://github.com/thepeacockproject/Peacock
synced 2024-11-22 22:12:45 +01:00
00ebefa009
* fix confusing comments * new behavior to fetch contracts from official * Reorder and organize flags with tags * Fix contract filter being undefined * Put mission manifest in memory instead of disk * return undefined when not finding a contract
168 lines
4.4 KiB
TypeScript
168 lines
4.4 KiB
TypeScript
/*
|
|
* The Peacock Project - a HITMAN server replacement.
|
|
* Copyright (C) 2021-2023 The Peacock Project Team
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { AxiosError, AxiosResponse } from "axios"
|
|
import { log, LogLevel } from "./loggingInterop"
|
|
import { userAuths } from "./officialServerAuth"
|
|
import {
|
|
EPIC_NAMESPACE_2021,
|
|
FRANKENSTEIN_SNIPER_ENTITLEMENTS,
|
|
getEpicEntitlements,
|
|
H2_STEAM_ENTITLEMENTS,
|
|
STEAM_NAMESPACE_2016,
|
|
} from "./platformEntitlements"
|
|
import { GameVersion } from "./types/types"
|
|
import { getRemoteService } from "./utils"
|
|
|
|
/**
|
|
* The base class for an entitlement strategy.
|
|
*
|
|
* @internal
|
|
*/
|
|
abstract class EntitlementStrategy {
|
|
abstract get(
|
|
accessToken: string,
|
|
userId: string,
|
|
): string[] | Promise<string[]>
|
|
}
|
|
|
|
/**
|
|
* Provider for HITMAN 3 on Epic Games Store.
|
|
*
|
|
* @internal
|
|
*/
|
|
export class EpicH3Strategy extends EntitlementStrategy {
|
|
override async get(accessToken: string, userId: string) {
|
|
return await getEpicEntitlements(
|
|
EPIC_NAMESPACE_2021,
|
|
userId,
|
|
accessToken,
|
|
)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Provider for any game using the official servers.
|
|
*
|
|
* @internal
|
|
*/
|
|
export class IOIStrategy extends EntitlementStrategy {
|
|
private readonly _remoteService: string
|
|
|
|
constructor(gameVersion: GameVersion, private readonly issuerId: string) {
|
|
super()
|
|
this.issuerId = issuerId
|
|
this._remoteService = getRemoteService(gameVersion)
|
|
}
|
|
|
|
override async get(userId: string) {
|
|
if (!userAuths.has(userId)) {
|
|
log(LogLevel.ERROR, `No user data found for ${userId}.`)
|
|
return []
|
|
}
|
|
|
|
const user = userAuths.get(userId)
|
|
|
|
let resp: AxiosResponse<string[]> = undefined
|
|
|
|
try {
|
|
resp = await user?._useService<string[]>(
|
|
`https://${this._remoteService}.hitman.io/authentication/api/userchannel/ProfileService/GetPlatformEntitlements`,
|
|
false,
|
|
{
|
|
issuerId: this.issuerId,
|
|
},
|
|
)
|
|
} catch (error) {
|
|
if (error instanceof AxiosError) {
|
|
log(
|
|
LogLevel.ERROR,
|
|
`Failed to get entitlements from Steam: got ${error.response.status} ${error.response.statusText}.`,
|
|
)
|
|
} else {
|
|
log(
|
|
LogLevel.ERROR,
|
|
`Failed to get entitlements from Steam: ${JSON.stringify(
|
|
error,
|
|
)}.`,
|
|
)
|
|
}
|
|
}
|
|
|
|
return resp?.data || []
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Provider for HITMAN 2016 on Epic Games.
|
|
*
|
|
* @internal
|
|
*/
|
|
export class EpicH1Strategy extends EntitlementStrategy {
|
|
override get() {
|
|
return [
|
|
"0a73eaedcac84bd28b567dbec764c5cb", // Hitman 1 standard edition
|
|
"81aecb49a60b47478e61e1cbd68d63c5", // Hitman 1 GOTY upgrade
|
|
]
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Provider for HITMAN: Sniper Challenge (Hawk) on Steam.
|
|
*
|
|
* @internal
|
|
*/
|
|
export class SteamScpcStrategy extends EntitlementStrategy {
|
|
override get() {
|
|
return FRANKENSTEIN_SNIPER_ENTITLEMENTS
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Provider for HITMAN 2016 on Steam.
|
|
*
|
|
* @internal
|
|
*/
|
|
export class SteamH1Strategy extends EntitlementStrategy {
|
|
override get() {
|
|
return [
|
|
STEAM_NAMESPACE_2016,
|
|
"439870",
|
|
"439890",
|
|
"440930",
|
|
"440940",
|
|
"440960",
|
|
"440961",
|
|
"440962",
|
|
"505180",
|
|
"588780",
|
|
]
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Provider for HITMAN 2 on Steam.
|
|
*
|
|
* @internal
|
|
*/
|
|
export class SteamH2Strategy extends EntitlementStrategy {
|
|
override get() {
|
|
return H2_STEAM_ENTITLEMENTS
|
|
}
|
|
}
|