thelounge/server/plugins/irc-events/modelist.ts

83 lines
1.8 KiB
TypeScript
Raw Normal View History

import {IrcEventHandler} from "../../client";
import {SpecialChanType, ChanType} from "../../models/chan";
2017-04-22 14:51:21 +02:00
import Msg, {MessageType} from "../../models/msg";
2017-04-22 14:51:21 +02:00
export default <IrcEventHandler>function (irc, network) {
2017-04-22 14:51:21 +02:00
const client = this;
2019-04-14 13:44:44 +02:00
irc.on("banlist", (list) => {
const data = list.bans.map((ban) => ({
hostmask: ban.banned,
banned_by: ban.banned_by,
banned_at: ban.banned_at * 1000,
}));
handleList(SpecialChanType.BANLIST, "Ban list", list.channel, data);
2019-04-14 13:44:44 +02:00
});
irc.on("inviteList", (list) => {
const data = list.invites.map((invite) => ({
hostmask: invite.invited,
invited_by: invite.invited_by,
invited_at: invite.invited_at * 1000,
}));
handleList(SpecialChanType.INVITELIST, "Invite list", list.channel, data);
2019-04-14 13:44:44 +02:00
});
function handleList(
type: SpecialChanType,
name: string,
channel: string,
data: {
hostmask: string;
invited_by?: string;
inivted_at?: number;
}[]
) {
2019-04-14 13:44:44 +02:00
if (data.length === 0) {
2017-04-22 14:51:21 +02:00
const msg = new Msg({
time: new Date(),
type: MessageType.ERROR,
2019-04-14 13:44:44 +02:00
text: `${name} is empty`,
2017-04-22 14:51:21 +02:00
});
let chan = network.getChannel(channel);
2019-04-14 13:44:44 +02:00
// Send error to lobby if we receive empty list for a channel we're not in
if (typeof chan === "undefined") {
msg.showInActive = true;
chan = network.getLobby();
}
chan.pushMessage(client, msg, true);
2017-04-22 14:51:21 +02:00
return;
}
2019-04-14 13:44:44 +02:00
const chanName = `${name} for ${channel}`;
2017-04-22 14:51:21 +02:00
let chan = network.getChannel(chanName);
2017-04-22 14:51:21 +02:00
if (typeof chan === "undefined") {
chan = client.createChannel({
type: ChanType.SPECIAL,
2019-04-14 13:44:44 +02:00
special: type,
name: chanName,
2018-07-10 11:16:24 +02:00
data: data,
2017-04-22 14:51:21 +02:00
});
client.emit("join", {
network: network.uuid,
chan: chan.getFilteredClone(true),
index: network.addChannel(chan),
2017-04-22 14:51:21 +02:00
});
2018-07-10 11:16:24 +02:00
} else {
chan.data = data;
2017-04-22 14:51:21 +02:00
2018-07-10 11:16:24 +02:00
client.emit("msg:special", {
chan: chan.id,
data: data,
});
}
2019-04-14 13:44:44 +02:00
}
2017-04-22 14:51:21 +02:00
};