twiedenbein-thelounge
Version:
The self-hosted Web IRC client
47 lines (46 loc) • 1.72 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const msg_1 = __importDefault(require("../../models/msg"));
const config_1 = __importDefault(require("../../config"));
const msg_2 = require("../../../shared/types/msg");
const chan_1 = require("../../../shared/types/chan");
const commands = ["close", "leave", "part"];
const allowDisconnected = true;
const input = function (network, chan, cmd, args) {
let target = chan;
if (args.length > 0) {
const newTarget = network.getChannel(args[0]);
if (typeof newTarget !== "undefined") {
// If first argument is a channel user is in, part that channel
target = newTarget;
args.shift();
}
}
if (target.type === chan_1.ChanType.LOBBY) {
chan.pushMessage(this, new msg_1.default({
type: msg_2.MessageType.ERROR,
text: "You can not part from networks, use /quit instead.",
}));
return;
}
// If target is not a channel or we are not connected, instantly remove the channel
// Otherwise send part to the server and wait for response
if (target.type !== chan_1.ChanType.CHANNEL ||
target.state === chan_1.ChanState.PARTED ||
!network.irc.connected) {
this.part(network, target);
}
else {
const partMessage = args.join(" ") || network.leaveMessage || config_1.default.values.leaveMessage;
network.irc.part(target.name, partMessage);
}
return true;
};
exports.default = {
commands,
input,
allowDisconnected,
};