thelounge/client/js/helpers/parseIrcUri.ts

59 lines
1.1 KiB
TypeScript
Raw Normal View History

export default (stringUri: string) => {
const data = {
name: "",
host: "",
port: "",
join: "",
tls: false,
};
2019-11-23 23:45:04 +01:00
try {
// https://tools.ietf.org/html/draft-butcher-irc-url-04
const uri = new URL(stringUri);
// Replace protocol with a "special protocol" (that's what it's called in WHATWG spec)
// So that the uri can be properly parsed
if (uri.protocol === "irc:") {
uri.protocol = "http:";
if (!uri.port) {
uri.port = "6667";
2019-11-23 23:45:04 +01:00
}
} else if (uri.protocol === "ircs:") {
uri.protocol = "https:";
if (!uri.port) {
uri.port = "6697";
2019-11-23 23:45:04 +01:00
}
data.tls = true;
} else {
return;
}
if (!uri.hostname) {
return {};
}
data.host = data.name = uri.hostname;
data.port = uri.port;
let channel = "";
if (uri.pathname.length > 1) {
channel = uri.pathname.substr(1); // Remove slash
2019-11-23 23:45:04 +01:00
}
if (uri.hash.length > 1) {
channel += uri.hash;
2019-11-23 23:45:04 +01:00
}
// We don't split channels or append # here because the connect window takes care of that
2019-11-23 23:45:04 +01:00
data.join = channel;
} catch (e) {
// do nothing on invalid uri
}
return data;
};