27 lines
562 B
JavaScript
27 lines
562 B
JavaScript
"use strict";
|
|
|
|
const Msg = require("../../models/msg");
|
|
|
|
module.exports = function(irc, network) {
|
|
const client = this;
|
|
|
|
irc.on("invite", function(data) {
|
|
let chan = network.getChannel(data.channel);
|
|
|
|
if (typeof chan === "undefined") {
|
|
chan = network.channels[0];
|
|
}
|
|
|
|
const msg = new Msg({
|
|
type: Msg.Type.INVITE,
|
|
time: data.time,
|
|
from: chan.getUser(data.nick),
|
|
invited: chan.getUser(data.invited),
|
|
channel: data.channel,
|
|
highlight: true,
|
|
invitedYou: data.invited === irc.user.nick,
|
|
});
|
|
chan.pushMessage(client, msg);
|
|
});
|
|
};
|