2019-01-10 13:03:07 +01:00
|
|
|
const Core = require('./core');
|
2014-10-29 08:02:03 +01:00
|
|
|
|
2019-01-07 01:52:03 +01:00
|
|
|
class Teamspeak3 extends Core {
|
2019-01-10 13:03:07 +01:00
|
|
|
async run(state) {
|
2019-01-12 12:45:09 +01:00
|
|
|
const queryPort = this.options.teamspeakQueryPort || 10011;
|
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
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');
|
2017-08-09 12:32:09 +02:00
|
|
|
}
|
2015-01-17 12:57:38 +01:00
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2014-10-29 08:02:03 +01:00
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
{
|
|
|
|
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);
|
2017-08-09 12:32:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-17 12:57:38 +01:00
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
{
|
|
|
|
const data = await this.sendCommand(socket, 'channellist -topic');
|
|
|
|
state.raw.channels = data;
|
|
|
|
}
|
2019-01-12 12:45:09 +01:00
|
|
|
}, queryPort);
|
2019-01-10 13:03:07 +01:00
|
|
|
}
|
2015-01-17 12:57:38 +01:00
|
|
|
|
2019-01-10 13:03:07 +01:00
|
|
|
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();
|
2017-08-09 12:32:09 +02:00
|
|
|
});
|
2019-01-10 13:03:07 +01:00
|
|
|
|
|
|
|
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.substr(0,equals);
|
|
|
|
const value = equals === -1 ? '' : field.substr(equals+1)
|
|
|
|
.replace(/\\s/g,' ').replace(/\\\//g,'/');
|
|
|
|
unit[key] = value;
|
|
|
|
}
|
|
|
|
out.push(unit);
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
2017-08-09 12:32:09 +02:00
|
|
|
}
|
2017-08-09 11:05:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Teamspeak3;
|