SquadJS/squad-server/rcon.js

69 lines
1.7 KiB
JavaScript
Raw Normal View History

2020-12-10 12:51:32 -06:00
import Rcon from 'core/rcon';
2020-10-25 19:11:47 -05:00
export default class SquadRcon extends Rcon {
2020-12-10 12:51:32 -06:00
processChatPacket(decodedPacket) {
const match = decodedPacket.body.match(
/\[(ChatAll|ChatTeam|ChatSquad|ChatAdmin)] \[SteamID:([0-9]{17})] (.+?) : (.*)/
);
this.emit('CHAT_MESSAGE', {
raw: decodedPacket.body,
chat: match[1],
steamID: match[2],
name: match[3],
message: match[4],
time: new Date()
});
}
2021-02-03 11:33:01 -06:00
async getCurrentMap() {
const response = await this.execute('ShowCurrentMap');
const match = response.match(/^Current level is (.*), layer is (.*)/);
return { level: match[1], layer: match[2] };
2020-10-25 19:11:47 -05:00
}
2021-02-03 11:33:01 -06:00
async getNextMap() {
2020-10-25 19:11:47 -05:00
const response = await this.execute('ShowNextMap');
2021-02-03 11:33:01 -06:00
const match = response.match(/^Next level is (.*), layer is (.*)/);
return {
level: match[1] !== '' ? match[1] : null,
layer: match[2] !== 'To be voted' ? match[2] : null
};
2020-10-25 19:11:47 -05:00
}
async getListPlayers() {
const response = await this.execute('ListPlayers');
const players = [];
for (const line of response.split('\n')) {
const match = line.match(
/ID: ([0-9]+) \| SteamID: ([0-9]{17}) \| Name: (.+) \| Team ID: ([0-9]+) \| Squad ID: ([0-9]+|N\/A)/
);
if (!match) continue;
players.push({
playerID: match[1],
steamID: match[2],
name: match[3],
teamID: match[4],
squadID: match[5] !== 'N/A' ? match[5] : null
});
}
return players;
}
2021-02-03 11:33:01 -06:00
async broadcast(message) {
await this.execute(`AdminBroadcast ${message}`);
}
2020-10-25 19:11:47 -05:00
async warn(steamID, message) {
await this.execute(`AdminWarn "${steamID}" ${message}`);
}
async switchTeam(steamID) {
await this.execute(`AdminForceTeamChange "${steamID}"`);
}
2020-10-25 19:12:20 -05:00
}