thelounge/src/plugins/inputs/part.js

30 lines
585 B
JavaScript
Raw Normal View History

2014-09-13 23:29:45 +02:00
var _ = require("lodash");
2016-03-20 17:34:36 +01:00
var Msg = require("../../models/msg");
2014-09-13 23:29:45 +02:00
exports.commands = ["close", "leave", "part"];
2016-03-06 10:24:56 +01:00
exports.input = function(network, chan, cmd, args) {
2016-03-20 17:34:36 +01:00
if (chan.type === "lobby") {
this.emit("msg", {
chan: chan.id,
msg: new Msg({
type: Msg.Type.ERROR,
text: "You can not part from networks, use /quit instead."
})
});
return;
}
if (chan.type === "channel") {
2014-09-13 23:29:45 +02:00
var irc = network.irc;
irc.part(chan.name, args.join(" "));
2014-09-13 23:29:45 +02:00
}
2016-03-06 10:24:56 +01:00
network.channels = _.without(network.channels, chan);
this.emit("part", {
chan: chan.id
});
2016-03-06 10:24:56 +01:00
return true;
2014-09-13 23:29:45 +02:00
};