mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-10 21:26:56 +01:00
98 lines
2.9 KiB
JavaScript
98 lines
2.9 KiB
JavaScript
const Core = require('./core');
|
|
|
|
class Epic extends Core {
|
|
constructor () {
|
|
super()
|
|
|
|
/**
|
|
* To get information about game servers using Epic's EOS, you need some credentials to authenticate using OAuth2.
|
|
*
|
|
* https://dev.epicgames.com/docs/web-api-ref/authentication
|
|
*
|
|
* These credentials can be provided by the game developers or extracted from the game's files.
|
|
*/
|
|
this.clientId = null
|
|
this.clientSecret = null
|
|
this.deploymentId = null
|
|
this.epicApi = 'https://api.epicgames.dev'
|
|
this.accessToken = null
|
|
|
|
// Don't use the tcp ping probing
|
|
this.usedTcp = true
|
|
}
|
|
|
|
async run (state) {
|
|
await this.getAccessToken()
|
|
await this.queryInfo(state)
|
|
await this.cleanup(state)
|
|
}
|
|
|
|
async getAccessToken () {
|
|
this.logger.debug('Requesting acess token ...')
|
|
|
|
const url = `${this.epicApi}/auth/v1/oauth/token`
|
|
const body = `grant_type=client_credentials&deployment_id=${this.deploymentId}`
|
|
const headers = {
|
|
Authorization: `Basic ${Buffer.from(`${this.clientId}:${this.clientSecret}`).toString('base64')}`,
|
|
'Content-Type': 'application/x-www-form-urlencoded'
|
|
}
|
|
|
|
this.logger.debug(`POST: ${url}`)
|
|
const response = await this.request({ url, body, headers, method: 'POST', responseType: 'json' })
|
|
|
|
this.accessToken = response.access_token
|
|
}
|
|
|
|
async queryInfo (state) {
|
|
const url = `${this.epicApi}/matchmaking/v1/${this.deploymentId}/filter`
|
|
const body = {
|
|
criteria: [
|
|
{
|
|
key: 'attributes.ADDRESS_s',
|
|
op: 'EQUAL',
|
|
value: this.options.address
|
|
}
|
|
]
|
|
}
|
|
const headers = {
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
Authorization: `Bearer ${this.accessToken}`
|
|
}
|
|
|
|
this.logger.debug(`POST: ${url}`)
|
|
const response = await this.request({ url, json: body, headers, method: 'POST', responseType: 'json' })
|
|
|
|
// Epic returns a list of sessions, we need to find the one with the desired port.
|
|
const hasDesiredPort = (session) => session.attributes.ADDRESSBOUND_s === `0.0.0.0:${this.options.port}` ||
|
|
session.attributes.ADDRESSBOUND_s === `${this.options.address}:${this.options.port}`
|
|
|
|
const desiredServer = response.sessions.find(hasDesiredPort)
|
|
|
|
if (!desiredServer) {
|
|
throw new Error('Server not found')
|
|
}
|
|
|
|
state.name = desiredServer.attributes.CUSTOMSERVERNAME_s
|
|
state.map = desiredServer.attributes.MAPNAME_s
|
|
state.password = desiredServer.attributes.SERVERPASSWORD_b
|
|
state.maxplayers = desiredServer.settings.maxPublicPlayers
|
|
|
|
for (const player of desiredServer.publicPlayers) {
|
|
state.players.push({
|
|
name: player.name,
|
|
raw: player
|
|
})
|
|
}
|
|
|
|
state.raw = desiredServer
|
|
state.raw.numplayers = desiredServer.totalPlayers
|
|
}
|
|
|
|
async cleanup (state) {
|
|
this.accessToken = null
|
|
}
|
|
}
|
|
|
|
module.exports = Epic;
|