mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 08:48:32 +01:00
b2de68f551
* Update eco protocol to include player names and fixed problems when using eco webinterface behind a proxy * changelog + readability * Typo * Typo
21 lines
674 B
JavaScript
21 lines
674 B
JavaScript
import Core from './core.js'
|
|
|
|
export default class eco extends Core {
|
|
async run (state) {
|
|
if (!this.options.port) this.options.port = 3001
|
|
|
|
const request = await this.request({
|
|
url: `http://${this.options.host}:${this.options.port}/frontpage`,
|
|
responseType: 'json'
|
|
})
|
|
const serverInfo = request.Info
|
|
|
|
state.name = serverInfo.Description
|
|
state.numplayers = serverInfo.OnlinePlayers
|
|
state.maxplayers = serverInfo.TotalPlayers
|
|
state.password = serverInfo.HasPassword
|
|
state.gamePort = serverInfo.GamePort
|
|
state.players = serverInfo.OnlinePlayersNames?.map(name => ({ name, raw: {} })) || []
|
|
state.raw = serverInfo
|
|
}
|
|
}
|