117c5fa3fd
* Added client type checking * Fixed client-side typescript issues
59 lines
1.1 KiB
TypeScript
59 lines
1.1 KiB
TypeScript
export default (stringUri: string) => {
|
|
const data = {
|
|
name: "",
|
|
host: "",
|
|
port: "",
|
|
join: "",
|
|
tls: false,
|
|
};
|
|
|
|
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";
|
|
}
|
|
} else if (uri.protocol === "ircs:") {
|
|
uri.protocol = "https:";
|
|
|
|
if (!uri.port) {
|
|
uri.port = "6697";
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
if (uri.hash.length > 1) {
|
|
channel += uri.hash;
|
|
}
|
|
|
|
// We don't split channels or append # here because the connect window takes care of that
|
|
data.join = channel;
|
|
} catch (e) {
|
|
// do nothing on invalid uri
|
|
}
|
|
|
|
return data;
|
|
};
|