mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-18 09:35:50 +00:00
chore: Convert all files to LF endings (#400)
* Convert to LF? * Modify gitattributes * Force LF * Git --renormalize * Update .gitattributes to enforce eol=lf * Redo CRLF -> LF on remaining files
This commit is contained in:
parent
a8bc7521f6
commit
cee42e7a88
65 changed files with 5697 additions and 5697 deletions
|
|
@ -1,69 +1,69 @@
|
|||
import Core from './core.js'
|
||||
|
||||
export default class teamspeak3 extends Core {
|
||||
async run (state) {
|
||||
const queryPort = this.options.teamspeakQueryPort || 10011
|
||||
|
||||
await this.withTcp(async socket => {
|
||||
{
|
||||
const data = await this.sendCommand(socket, 'use port=' + this.options.port, true)
|
||||
const split = data.split('\n\r')
|
||||
if (split[0] !== 'TS3') throw new Error('Invalid header')
|
||||
}
|
||||
|
||||
{
|
||||
const data = await this.sendCommand(socket, 'serverinfo')
|
||||
state.raw = data[0]
|
||||
if ('virtualserver_name' in state.raw) state.name = state.raw.virtualserver_name
|
||||
if ('virtualserver_maxclients' in state.raw) state.maxplayers = state.raw.virtualserver_maxclients
|
||||
if ('virtualserver_clientsonline' in state.raw) state.numplayers = state.raw.virtualserver_clientsonline
|
||||
}
|
||||
|
||||
{
|
||||
const list = await this.sendCommand(socket, 'clientlist')
|
||||
for (const client of list) {
|
||||
client.name = client.client_nickname
|
||||
delete client.client_nickname
|
||||
if (client.client_type === '0') {
|
||||
state.players.push(client)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
const data = await this.sendCommand(socket, 'channellist -topic')
|
||||
state.raw.channels = data
|
||||
}
|
||||
}, queryPort)
|
||||
}
|
||||
|
||||
async sendCommand (socket, cmd, raw) {
|
||||
const body = await this.tcpSend(socket, cmd + '\x0A', (buffer) => {
|
||||
if (buffer.length < 21) return
|
||||
if (buffer.slice(-21).toString() !== '\n\rerror id=0 msg=ok\n\r') return
|
||||
return buffer.slice(0, -21).toString()
|
||||
})
|
||||
|
||||
if (raw) {
|
||||
return body
|
||||
} else {
|
||||
const segments = body.split('|')
|
||||
const out = []
|
||||
for (const line of segments) {
|
||||
const split = line.split(' ')
|
||||
const unit = {}
|
||||
for (const field of split) {
|
||||
const equals = field.indexOf('=')
|
||||
const key = equals === -1 ? field : field.substring(0, equals)
|
||||
const value = equals === -1
|
||||
? ''
|
||||
: field.substring(equals + 1)
|
||||
.replace(/\\s/g, ' ').replace(/\\\//g, '/')
|
||||
unit[key] = value
|
||||
}
|
||||
out.push(unit)
|
||||
}
|
||||
return out
|
||||
}
|
||||
}
|
||||
}
|
||||
import Core from './core.js'
|
||||
|
||||
export default class teamspeak3 extends Core {
|
||||
async run (state) {
|
||||
const queryPort = this.options.teamspeakQueryPort || 10011
|
||||
|
||||
await this.withTcp(async socket => {
|
||||
{
|
||||
const data = await this.sendCommand(socket, 'use port=' + this.options.port, true)
|
||||
const split = data.split('\n\r')
|
||||
if (split[0] !== 'TS3') throw new Error('Invalid header')
|
||||
}
|
||||
|
||||
{
|
||||
const data = await this.sendCommand(socket, 'serverinfo')
|
||||
state.raw = data[0]
|
||||
if ('virtualserver_name' in state.raw) state.name = state.raw.virtualserver_name
|
||||
if ('virtualserver_maxclients' in state.raw) state.maxplayers = state.raw.virtualserver_maxclients
|
||||
if ('virtualserver_clientsonline' in state.raw) state.numplayers = state.raw.virtualserver_clientsonline
|
||||
}
|
||||
|
||||
{
|
||||
const list = await this.sendCommand(socket, 'clientlist')
|
||||
for (const client of list) {
|
||||
client.name = client.client_nickname
|
||||
delete client.client_nickname
|
||||
if (client.client_type === '0') {
|
||||
state.players.push(client)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
const data = await this.sendCommand(socket, 'channellist -topic')
|
||||
state.raw.channels = data
|
||||
}
|
||||
}, queryPort)
|
||||
}
|
||||
|
||||
async sendCommand (socket, cmd, raw) {
|
||||
const body = await this.tcpSend(socket, cmd + '\x0A', (buffer) => {
|
||||
if (buffer.length < 21) return
|
||||
if (buffer.slice(-21).toString() !== '\n\rerror id=0 msg=ok\n\r') return
|
||||
return buffer.slice(0, -21).toString()
|
||||
})
|
||||
|
||||
if (raw) {
|
||||
return body
|
||||
} else {
|
||||
const segments = body.split('|')
|
||||
const out = []
|
||||
for (const line of segments) {
|
||||
const split = line.split(' ')
|
||||
const unit = {}
|
||||
for (const field of split) {
|
||||
const equals = field.indexOf('=')
|
||||
const key = equals === -1 ? field : field.substring(0, equals)
|
||||
const value = equals === -1
|
||||
? ''
|
||||
: field.substring(equals + 1)
|
||||
.replace(/\\s/g, ' ').replace(/\\\//g, '/')
|
||||
unit[key] = value
|
||||
}
|
||||
out.push(unit)
|
||||
}
|
||||
return out
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue