2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import * as urlSearchParams from "./url_search_params.ts";
|
|
|
|
import * as domTypes from "./dom_types.ts";
|
2020-03-05 07:05:41 -05:00
|
|
|
import { getRandomValues } from "../get_random_values.ts";
|
|
|
|
import { customInspect } from "../console.ts";
|
2018-12-17 20:07:47 -05:00
|
|
|
|
|
|
|
interface URLParts {
|
|
|
|
protocol: string;
|
|
|
|
username: string;
|
|
|
|
password: string;
|
|
|
|
hostname: string;
|
|
|
|
port: string;
|
2019-01-20 21:31:13 -05:00
|
|
|
path: string;
|
2019-04-29 19:45:20 -04:00
|
|
|
query: string | null;
|
2018-12-17 20:07:47 -05:00
|
|
|
hash: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const patterns = {
|
2019-11-12 13:45:48 -05:00
|
|
|
protocol: "(?:([a-z]+):)",
|
2018-12-17 20:07:47 -05:00
|
|
|
authority: "(?://([^/?#]*))",
|
2019-01-20 21:31:13 -05:00
|
|
|
path: "([^?#]*)",
|
2018-12-17 20:07:47 -05:00
|
|
|
query: "(\\?[^#]*)",
|
|
|
|
hash: "(#.*)",
|
|
|
|
|
|
|
|
authentication: "(?:([^:]*)(?::([^@]*))?@)",
|
|
|
|
hostname: "([^:]+)",
|
|
|
|
port: "(?::(\\d+))"
|
|
|
|
};
|
|
|
|
|
|
|
|
const urlRegExp = new RegExp(
|
2019-11-13 13:42:34 -05:00
|
|
|
`^${patterns.protocol}?${patterns.authority}?${patterns.path}${patterns.query}?${patterns.hash}?`
|
2018-12-17 20:07:47 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
const authorityRegExp = new RegExp(
|
|
|
|
`^${patterns.authentication}?${patterns.hostname}${patterns.port}?$`
|
|
|
|
);
|
|
|
|
|
|
|
|
const searchParamsMethods: Array<keyof urlSearchParams.URLSearchParams> = [
|
|
|
|
"append",
|
|
|
|
"delete",
|
|
|
|
"set"
|
|
|
|
];
|
|
|
|
|
|
|
|
function parse(url: string): URLParts | undefined {
|
|
|
|
const urlMatch = urlRegExp.exec(url);
|
|
|
|
if (urlMatch) {
|
|
|
|
const [, , authority] = urlMatch;
|
|
|
|
const authorityMatch = authority
|
|
|
|
? authorityRegExp.exec(authority)
|
|
|
|
: [null, null, null, null, null];
|
|
|
|
if (authorityMatch) {
|
|
|
|
return {
|
|
|
|
protocol: urlMatch[1] || "",
|
|
|
|
username: authorityMatch[1] || "",
|
|
|
|
password: authorityMatch[2] || "",
|
|
|
|
hostname: authorityMatch[3] || "",
|
|
|
|
port: authorityMatch[4] || "",
|
2019-01-20 21:31:13 -05:00
|
|
|
path: urlMatch[3] || "",
|
2018-12-17 20:07:47 -05:00
|
|
|
query: urlMatch[4] || "",
|
|
|
|
hash: urlMatch[5] || ""
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2019-08-06 09:22:11 -04:00
|
|
|
// Based on https://github.com/kelektiv/node-uuid
|
|
|
|
// TODO(kevinkassimo): Use deno_std version once possible.
|
|
|
|
function generateUUID(): string {
|
2019-11-13 13:42:34 -05:00
|
|
|
return "00000000-0000-4000-8000-000000000000".replace(/[0]/g, (): string =>
|
|
|
|
// random integer from 0 to 15 as a hex digit.
|
|
|
|
(getRandomValues(new Uint8Array(1))[0] % 16).toString(16)
|
2019-08-06 09:22:11 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep it outside of URL to avoid any attempts of access.
|
|
|
|
export const blobURLMap = new Map<string, domTypes.Blob>();
|
|
|
|
|
2019-09-05 20:01:27 -04:00
|
|
|
function isAbsolutePath(path: string): boolean {
|
|
|
|
return path.startsWith("/");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolves `.`s and `..`s where possible.
|
|
|
|
// Preserves repeating and trailing `/`s by design.
|
|
|
|
function normalizePath(path: string): string {
|
|
|
|
const isAbsolute = isAbsolutePath(path);
|
|
|
|
path = path.replace(/^\//, "");
|
|
|
|
const pathSegments = path.split("/");
|
|
|
|
|
|
|
|
const newPathSegments: string[] = [];
|
|
|
|
for (let i = 0; i < pathSegments.length; i++) {
|
|
|
|
const previous = newPathSegments[newPathSegments.length - 1];
|
|
|
|
if (
|
|
|
|
pathSegments[i] == ".." &&
|
|
|
|
previous != ".." &&
|
|
|
|
(previous != undefined || isAbsolute)
|
|
|
|
) {
|
|
|
|
newPathSegments.pop();
|
|
|
|
} else if (pathSegments[i] != ".") {
|
|
|
|
newPathSegments.push(pathSegments[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let newPath = newPathSegments.join("/");
|
|
|
|
if (!isAbsolute) {
|
|
|
|
if (newPathSegments.length == 0) {
|
|
|
|
newPath = ".";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newPath = `/${newPath}`;
|
|
|
|
}
|
|
|
|
return newPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Standard URL basing logic, applied to paths.
|
|
|
|
function resolvePathFromBase(path: string, basePath: string): string {
|
|
|
|
const normalizedPath = normalizePath(path);
|
|
|
|
if (isAbsolutePath(normalizedPath)) {
|
|
|
|
return normalizedPath;
|
|
|
|
}
|
|
|
|
const normalizedBasePath = normalizePath(basePath);
|
|
|
|
if (!isAbsolutePath(normalizedBasePath)) {
|
|
|
|
throw new TypeError("Base path must be absolute.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special case.
|
|
|
|
if (path == "") {
|
|
|
|
return normalizedBasePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove everything after the last `/` in `normalizedBasePath`.
|
|
|
|
const prefix = normalizedBasePath.replace(/[^\/]*$/, "");
|
|
|
|
// If `normalizedPath` ends with `.` or `..`, add a trailing space.
|
|
|
|
const suffix = normalizedPath.replace(/(?<=(^|\/)(\.|\.\.))$/, "/");
|
|
|
|
|
|
|
|
return normalizePath(prefix + suffix);
|
|
|
|
}
|
|
|
|
|
2018-12-17 20:07:47 -05:00
|
|
|
export class URL {
|
|
|
|
private _parts: URLParts;
|
|
|
|
private _searchParams!: urlSearchParams.URLSearchParams;
|
|
|
|
|
2019-10-31 14:55:54 -04:00
|
|
|
[customInspect](): string {
|
|
|
|
const keys = [
|
|
|
|
"href",
|
|
|
|
"origin",
|
|
|
|
"protocol",
|
|
|
|
"username",
|
|
|
|
"password",
|
|
|
|
"host",
|
|
|
|
"hostname",
|
|
|
|
"port",
|
|
|
|
"pathname",
|
|
|
|
"hash",
|
|
|
|
"search"
|
|
|
|
];
|
|
|
|
const objectString = keys
|
2019-11-14 15:05:36 -05:00
|
|
|
.map((key: string) => `${key}: "${this[key as keyof this] || ""}"`)
|
2019-10-31 14:55:54 -04:00
|
|
|
.join(", ");
|
|
|
|
return `URL { ${objectString} }`;
|
|
|
|
}
|
|
|
|
|
2019-03-09 12:30:38 -05:00
|
|
|
private _updateSearchParams(): void {
|
2018-12-17 20:07:47 -05:00
|
|
|
const searchParams = new urlSearchParams.URLSearchParams(this.search);
|
|
|
|
|
|
|
|
for (const methodName of searchParamsMethods) {
|
2019-06-01 11:13:36 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
2018-12-17 20:07:47 -05:00
|
|
|
const method: (...args: any[]) => any = searchParams[methodName];
|
2019-06-01 11:13:36 -04:00
|
|
|
searchParams[methodName] = (...args: unknown[]): any => {
|
2018-12-17 20:07:47 -05:00
|
|
|
method.apply(searchParams, args);
|
|
|
|
this.search = searchParams.toString();
|
|
|
|
};
|
2019-06-01 11:13:36 -04:00
|
|
|
/* eslint-enable */
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|
|
|
|
this._searchParams = searchParams;
|
2019-06-10 23:55:38 -04:00
|
|
|
|
|
|
|
// convert to `any` that has avoided the private limit
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
(this._searchParams as any).url = this;
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
get hash(): string {
|
|
|
|
return this._parts.hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
set hash(value: string) {
|
|
|
|
value = unescape(String(value));
|
|
|
|
if (!value) {
|
|
|
|
this._parts.hash = "";
|
|
|
|
} else {
|
|
|
|
if (value.charAt(0) !== "#") {
|
|
|
|
value = `#${value}`;
|
|
|
|
}
|
|
|
|
// hashes can contain % and # unescaped
|
|
|
|
this._parts.hash = escape(value)
|
|
|
|
.replace(/%25/g, "%")
|
|
|
|
.replace(/%23/g, "#");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get host(): string {
|
|
|
|
return `${this.hostname}${this.port ? `:${this.port}` : ""}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
set host(value: string) {
|
|
|
|
value = String(value);
|
|
|
|
const url = new URL(`http://${value}`);
|
|
|
|
this._parts.hostname = url.hostname;
|
|
|
|
this._parts.port = url.port;
|
|
|
|
}
|
|
|
|
|
|
|
|
get hostname(): string {
|
|
|
|
return this._parts.hostname;
|
|
|
|
}
|
|
|
|
|
|
|
|
set hostname(value: string) {
|
|
|
|
value = String(value);
|
|
|
|
this._parts.hostname = encodeURIComponent(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
get href(): string {
|
|
|
|
const authentication =
|
|
|
|
this.username || this.password
|
|
|
|
? `${this.username}${this.password ? ":" + this.password : ""}@`
|
|
|
|
: "";
|
2019-11-12 13:45:48 -05:00
|
|
|
let slash = "";
|
|
|
|
if (this.host || this.protocol === "file:") {
|
|
|
|
slash = "//";
|
|
|
|
}
|
2019-11-13 13:42:34 -05:00
|
|
|
return `${this.protocol}${slash}${authentication}${this.host}${this.pathname}${this.search}${this.hash}`;
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
set href(value: string) {
|
|
|
|
value = String(value);
|
|
|
|
if (value !== this.href) {
|
|
|
|
const url = new URL(value);
|
|
|
|
this._parts = { ...url._parts };
|
|
|
|
this._updateSearchParams();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get origin(): string {
|
2019-11-12 13:45:48 -05:00
|
|
|
if (this.host) {
|
|
|
|
return `${this.protocol}//${this.host}`;
|
|
|
|
}
|
|
|
|
return "null";
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
get password(): string {
|
|
|
|
return this._parts.password;
|
|
|
|
}
|
|
|
|
|
|
|
|
set password(value: string) {
|
|
|
|
value = String(value);
|
|
|
|
this._parts.password = encodeURIComponent(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
get pathname(): string {
|
2019-01-20 21:31:13 -05:00
|
|
|
return this._parts.path ? this._parts.path : "/";
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
set pathname(value: string) {
|
|
|
|
value = unescape(String(value));
|
|
|
|
if (!value || value.charAt(0) !== "/") {
|
|
|
|
value = `/${value}`;
|
|
|
|
}
|
2019-01-20 21:31:13 -05:00
|
|
|
// paths can contain % unescaped
|
|
|
|
this._parts.path = escape(value).replace(/%25/g, "%");
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
get port(): string {
|
|
|
|
return this._parts.port;
|
|
|
|
}
|
|
|
|
|
|
|
|
set port(value: string) {
|
|
|
|
const port = parseInt(String(value), 10);
|
|
|
|
this._parts.port = isNaN(port)
|
|
|
|
? ""
|
|
|
|
: Math.max(0, port % 2 ** 16).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
get protocol(): string {
|
|
|
|
return `${this._parts.protocol}:`;
|
|
|
|
}
|
|
|
|
|
|
|
|
set protocol(value: string) {
|
|
|
|
value = String(value);
|
|
|
|
if (value) {
|
|
|
|
if (value.charAt(value.length - 1) === ":") {
|
|
|
|
value = value.slice(0, -1);
|
|
|
|
}
|
|
|
|
this._parts.protocol = encodeURIComponent(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get search(): string {
|
2019-04-29 19:45:20 -04:00
|
|
|
if (this._parts.query === null || this._parts.query === "") {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2018-12-17 20:07:47 -05:00
|
|
|
return this._parts.query;
|
|
|
|
}
|
|
|
|
|
|
|
|
set search(value: string) {
|
|
|
|
value = String(value);
|
2019-04-29 19:45:20 -04:00
|
|
|
let query: string | null;
|
|
|
|
|
|
|
|
if (value === "") {
|
|
|
|
query = null;
|
|
|
|
} else if (value.charAt(0) !== "?") {
|
|
|
|
query = `?${value}`;
|
|
|
|
} else {
|
|
|
|
query = value;
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|
2019-04-29 19:45:20 -04:00
|
|
|
|
|
|
|
this._parts.query = query;
|
2018-12-17 20:07:47 -05:00
|
|
|
this._updateSearchParams();
|
|
|
|
}
|
|
|
|
|
|
|
|
get username(): string {
|
|
|
|
return this._parts.username;
|
|
|
|
}
|
|
|
|
|
|
|
|
set username(value: string) {
|
|
|
|
value = String(value);
|
|
|
|
this._parts.username = encodeURIComponent(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
get searchParams(): urlSearchParams.URLSearchParams {
|
|
|
|
return this._searchParams;
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(url: string, base?: string | URL) {
|
|
|
|
let baseParts: URLParts | undefined;
|
|
|
|
if (base) {
|
|
|
|
baseParts = typeof base === "string" ? parse(base) : base._parts;
|
2019-09-05 20:01:27 -04:00
|
|
|
if (!baseParts || baseParts.protocol == "") {
|
2018-12-17 20:07:47 -05:00
|
|
|
throw new TypeError("Invalid base URL.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const urlParts = parse(url);
|
|
|
|
if (!urlParts) {
|
|
|
|
throw new TypeError("Invalid URL.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (urlParts.protocol) {
|
|
|
|
this._parts = urlParts;
|
|
|
|
} else if (baseParts) {
|
2019-01-20 21:31:13 -05:00
|
|
|
this._parts = {
|
|
|
|
protocol: baseParts.protocol,
|
|
|
|
username: baseParts.username,
|
|
|
|
password: baseParts.password,
|
|
|
|
hostname: baseParts.hostname,
|
|
|
|
port: baseParts.port,
|
2019-09-11 16:20:54 -04:00
|
|
|
path: resolvePathFromBase(urlParts.path, baseParts.path || "/"),
|
2019-09-05 20:01:27 -04:00
|
|
|
query: urlParts.query,
|
2019-01-20 21:31:13 -05:00
|
|
|
hash: urlParts.hash
|
|
|
|
};
|
2018-12-17 20:07:47 -05:00
|
|
|
} else {
|
|
|
|
throw new TypeError("URL requires a base URL.");
|
|
|
|
}
|
|
|
|
this._updateSearchParams();
|
|
|
|
}
|
|
|
|
|
|
|
|
toString(): string {
|
|
|
|
return this.href;
|
|
|
|
}
|
|
|
|
|
|
|
|
toJSON(): string {
|
|
|
|
return this.href;
|
|
|
|
}
|
2019-08-06 09:22:11 -04:00
|
|
|
|
|
|
|
// TODO(kevinkassimo): implement MediaSource version in the future.
|
|
|
|
static createObjectURL(b: domTypes.Blob): string {
|
2020-01-20 09:30:30 -05:00
|
|
|
const origin = globalThis.location.origin || "http://deno-opaque-origin";
|
2019-08-06 09:22:11 -04:00
|
|
|
const key = `blob:${origin}/${generateUUID()}`;
|
|
|
|
blobURLMap.set(key, b);
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
static revokeObjectURL(url: string): void {
|
|
|
|
let urlObject;
|
|
|
|
try {
|
|
|
|
urlObject = new URL(url);
|
|
|
|
} catch {
|
|
|
|
throw new TypeError("Provided URL string is not valid");
|
|
|
|
}
|
|
|
|
if (urlObject.protocol !== "blob:") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Origin match check seems irrelevant for now, unless we implement
|
2020-01-20 09:30:30 -05:00
|
|
|
// persisten storage for per globalThis.location.origin at some point.
|
2019-08-06 09:22:11 -04:00
|
|
|
blobURLMap.delete(url);
|
|
|
|
}
|
2018-12-17 20:07:47 -05:00
|
|
|
}
|