hardlounge/src/plugins/inputs/part.js

28 lines
596 B
JavaScript
Raw Normal View History

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