thelounge/src/plugins/irc-events/cap.js

79 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-02-19 11:18:47 +01:00
"use strict";
const Msg = require("../../models/msg");
2020-02-19 12:20:22 +01:00
const STSPolicies = require("../sts");
2020-02-19 11:18:47 +01:00
module.exports = function (irc, network) {
2020-02-19 11:18:47 +01:00
const client = this;
irc.on("cap ls", (data) => {
handleSTS(data, true);
2020-02-19 11:18:47 +01:00
});
irc.on("cap new", (data) => {
handleSTS(data, false);
2020-02-19 11:18:47 +01:00
});
function handleSTS(data, shouldReconnect) {
2020-02-19 11:18:47 +01:00
if (!Object.prototype.hasOwnProperty.call(data.capabilities, "sts")) {
return;
}
const isSecure = irc.connection.transport.socket.encrypted;
const values = {};
data.capabilities.sts.split(",").map((value) => {
value = value.split("=", 2);
values[value[0]] = value[1];
});
if (isSecure) {
2020-02-19 12:20:22 +01:00
const duration = parseInt(values.duration, 10);
if (isNaN(duration)) {
return;
}
STSPolicies.update(network.host, network.port, duration);
2020-02-19 11:18:47 +01:00
} else {
const port = parseInt(values.port, 10);
if (isNaN(port)) {
return;
}
network.channels[0].pushMessage(
client,
new Msg({
2020-02-19 12:20:22 +01:00
text: `Server sent a strict transport security policy, reconnecting to ${network.host}:${port}`,
2020-02-19 11:18:47 +01:00
}),
true
);
// Forcefully end the connection if STS is seen in CAP LS
// We will update the port and tls setting if we see CAP NEW,
// but will not force a reconnection
if (shouldReconnect) {
irc.connection.end();
}
2020-02-19 11:18:47 +01:00
// Update the port
network.port = port;
irc.options.port = port;
// Enable TLS
network.tls = true;
network.rejectUnauthorized = true;
irc.options.tls = true;
irc.options.rejectUnauthorized = true;
if (shouldReconnect) {
// Start a new connection
irc.connect();
}
2020-02-19 11:18:47 +01:00
client.save();
}
}
};