thelounge
Version:
The self-hosted Web IRC client
34 lines (26 loc) • 687 B
JavaScript
;
var _ = require("lodash");
var Msg = require("../../models/msg");
var Chan = require("../../models/chan");
exports.commands = ["close", "leave", "part"];
exports.allowDisconnected = true;
exports.input = function(network, chan, cmd, args) {
if (chan.type === Chan.Type.LOBBY) {
chan.pushMessage(this, new Msg({
type: Msg.Type.ERROR,
text: "You can not part from networks, use /quit instead."
}));
return;
}
network.channels = _.without(network.channels, chan);
this.emit("part", {
chan: chan.id
});
if (chan.type === Chan.Type.CHANNEL) {
this.save();
if (network.irc) {
network.irc.part(chan.name, args.join(" "));
}
}
return true;
};