SquadJS/plugins/discord-chat-admin-request/index.js

92 lines
2.5 KiB
JavaScript
Raw Normal View History

2020-07-06 19:42:50 -05:00
import { COPYRIGHT_MESSAGE } from 'core/config';
import { RCON_CHAT_MESSAGE } from 'squad-server/events/rcon';
export default async function(server, discordClient, channelID, options = {}) {
if (!server) {
throw new Error('DiscordChatAdminRequest must be provided with a reference to the server.');
}
if (!discordClient) {
throw new Error('DiscordChatAdminRequest must be provided with a Discord.js client.');
}
if (!channelID) {
throw new Error('DiscordChatAdminRequest must be provided with a channel ID.');
}
options = {
color: 16761867,
ignoreChats: [],
adminPrefix: '!admin',
pingGroups: [],
pingDelay: 60 * 1000,
2020-07-06 19:42:50 -05:00
...options
};
let lastPing = null;
2020-07-06 19:42:50 -05:00
const channel = await discordClient.channels.fetch(channelID);
server.on(RCON_CHAT_MESSAGE, async info => {
if (options.ignoreChats.includes(info.chat)) return;
if (!info.message.startsWith(`${options.adminPrefix}`)) return;
2020-07-06 19:42:50 -05:00
const playerInfo = await server.getPlayerBySteamID(info.steamID);
const trimmedMessage = info.message.replace(options.adminPrefix, '').trim();
2020-07-06 19:42:50 -05:00
if (trimmedMessage.length === 0) {
await server.rcon.warn(
info.steamID,
`Please specify what you would like help with when requesting an admin.`
);
return;
}
const message = {
2020-07-06 19:42:50 -05:00
embed: {
title: `${playerInfo.name} has requested admin support!`,
color: options.color,
fields: [
{
name: 'Player',
value: playerInfo.name,
inline: true
},
{
name: 'SteamID',
value: `[${playerInfo.steamID}](https://steamcommunity.com/profiles/${info.steamID})`,
inline: true
},
{
name: 'Team & Squad',
value: `Team: ${playerInfo.teamID}, Squad: ${playerInfo.squadID || 'Unassigned'}`
},
{
name: 'Message',
value: trimmedMessage
}
],
timestamp: info.time.toISOString(),
footer: {
text: COPYRIGHT_MESSAGE
}
}
};
if (
options.pingGroups.length > 0 &&
(lastPing === null || Date.now() - options.pingDelay > lastPing)
) {
message.content = options.pingGroups.map(groupID => `<@&${groupID}>`).join(' ');
lastPing = Date.now();
}
channel.send(message);
await server.rcon.warn(
info.steamID,
`An admin has been notified, please wait for us to get back to you.`
);
2020-07-06 19:42:50 -05:00
});
}