thelounge/src/plugins/inputs/quit.js

26 lines
533 B
JavaScript
Raw Normal View History

"use strict";
2018-01-11 12:33:36 +01:00
const _ = require("lodash");
const ClientCertificate = require("../clientCertificate");
2014-09-13 23:29:45 +02:00
2016-04-14 10:56:02 +02:00
exports.commands = ["quit"];
exports.allowDisconnected = true;
2015-10-01 00:39:57 +02:00
exports.input = function (network, chan, cmd, args) {
2018-01-11 12:33:36 +01:00
const client = this;
2015-10-01 00:39:57 +02:00
2014-09-13 23:29:45 +02:00
client.networks = _.without(client.networks, network);
network.destroy();
2014-10-12 01:59:01 +02:00
client.save();
2014-09-13 23:29:45 +02:00
client.emit("quit", {
network: network.uuid,
2014-09-13 23:29:45 +02:00
});
2015-10-01 00:39:57 +02:00
const quitMessage = args[0] ? args.join(" ") : null;
network.quit(quitMessage);
2016-03-06 10:24:56 +01:00
ClientCertificate.remove(network.uuid);
2016-03-06 10:24:56 +01:00
return true;
2014-09-13 23:29:45 +02:00
};