thelounge/src/plugins/irc-events/whois.js
2016-04-19 13:20:18 +03:00

36 lines
689 B
JavaScript

var Chan = require("../../models/chan");
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("whois", function(data) {
var chan = network.getChannel(data.nick);
if (typeof chan === "undefined") {
chan = new Chan({
type: Chan.Type.QUERY,
name: data.nick
});
network.channels.push(chan);
client.emit("join", {
network: network.id,
chan: chan
});
}
var msg;
if (data.error) {
msg = new Msg({
type: Msg.Type.ERROR,
text: "No such nick: " + data.nick
});
} else {
msg = new Msg({
type: Msg.Type.WHOIS,
whois: data
});
}
chan.pushMessage(client, msg);
});
};