58 lines
No EOL
2.1 KiB
JavaScript
Executable file
58 lines
No EOL
2.1 KiB
JavaScript
Executable file
const osu = require("osu-packet"),
|
|
botCommandHandler = require("../BotCommandHandler.js"),
|
|
consoleHelper = require("../../consoleHelper.js"),
|
|
Streams = require("../Streams.js");
|
|
|
|
module.exports = function(CurrentUser, CurrentPacket) {
|
|
let isSendingChannelLocked = false;
|
|
for (let i = 0; i < global.channels.length; i++) {
|
|
if (!CurrentPacket.target.includes("#")) break;
|
|
if (global.channels[i].channelName == CurrentPacket.target) {
|
|
isSendingChannelLocked = global.channels[i].locked;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (isSendingChannelLocked) {
|
|
if (CurrentPacket.message.includes("!")) {
|
|
botCommandHandler(CurrentUser, CurrentPacket.message, CurrentPacket.target);
|
|
} else {
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
osuPacketWriter.SendMessage({
|
|
sendingClient: global.botUser.username,
|
|
message: "The channel you are currently trying to send to is locked, please check back later!",
|
|
target: CurrentPacket.target,
|
|
senderId: global.botUser.id
|
|
});
|
|
CurrentUser.addActionToQueue(osuPacketWriter.toBuffer);
|
|
}
|
|
return;
|
|
}
|
|
|
|
consoleHelper.printChat(`${CurrentUser.username} in ${CurrentPacket.target} sent: ${CurrentPacket.message}`);
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
osuPacketWriter.SendMessage({
|
|
sendingClient: CurrentUser.username,
|
|
message: CurrentPacket.message,
|
|
target: CurrentPacket.target,
|
|
senderId: CurrentUser.id
|
|
});
|
|
|
|
if (CurrentPacket.target == "#multiplayer") {
|
|
Streams.sendToStream(CurrentUser.currentMatch.matchChatStreamName, osuPacketWriter.toBuffer, CurrentUser.uuid);
|
|
botCommandHandler(CurrentUser, CurrentPacket.message, CurrentUser.currentMatch.matchChatStreamName, true);
|
|
return;
|
|
}
|
|
|
|
// Check the stream that we're sending to even exists
|
|
if (!Streams.exists(CurrentPacket.target)) return;
|
|
|
|
// Write chat message to stream asociated with chat channel
|
|
Streams.sendToStream(CurrentPacket.target, osuPacketWriter.toBuffer, CurrentUser.uuid);
|
|
if (CurrentPacket.target == "#osu")
|
|
global.addChatMessage(`${CurrentUser.username}: ${CurrentPacket.message.replaceAll("<", "<").replaceAll(">", ">")}`);
|
|
|
|
botCommandHandler(CurrentUser, CurrentPacket.message, CurrentPacket.target);
|
|
return;
|
|
} |