the-forest/client/node_modules/.cache/babel-loader/3cd7169df27c34138b2435fdf0f09a02b079b9c1be8f7f78c38f7fb363d88c07.json
2024-09-17 20:35:18 -04:00

1 line
15 KiB
JSON

{"ast":null,"code":"\"use strict\";\n\n// URI parser based on RFC 3986\n// We can't use the standard `URL` object, because we want to support relative `file:` URLs like\n// `file:relative/path/database.db`, which are not correct according to RFC 8089, which standardizes the\n// `file` scheme.\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.encodeBaseUrl = exports.parseUri = void 0;\nconst api_js_1 = require(\"./api.js\");\nfunction parseUri(text) {\n const match = URI_RE.exec(text);\n if (match === null) {\n throw new api_js_1.LibsqlError(`The URL '${text}' is not in a valid format`, \"URL_INVALID\");\n }\n const groups = match.groups;\n const scheme = groups[\"scheme\"];\n const authority = groups[\"authority\"] !== undefined ? parseAuthority(groups[\"authority\"]) : undefined;\n const path = percentDecode(groups[\"path\"]);\n const query = groups[\"query\"] !== undefined ? parseQuery(groups[\"query\"]) : undefined;\n const fragment = groups[\"fragment\"] !== undefined ? percentDecode(groups[\"fragment\"]) : undefined;\n return {\n scheme,\n authority,\n path,\n query,\n fragment\n };\n}\nexports.parseUri = parseUri;\nconst URI_RE = (() => {\n const SCHEME = \"(?<scheme>[A-Za-z][A-Za-z.+-]*)\";\n const AUTHORITY = \"(?<authority>[^/?#]*)\";\n const PATH = \"(?<path>[^?#]*)\";\n const QUERY = \"(?<query>[^#]*)\";\n const FRAGMENT = \"(?<fragment>.*)\";\n return new RegExp(`^${SCHEME}:(//${AUTHORITY})?${PATH}(\\\\?${QUERY})?(#${FRAGMENT})?$`, \"su\");\n})();\nfunction parseAuthority(text) {\n const match = AUTHORITY_RE.exec(text);\n if (match === null) {\n throw new api_js_1.LibsqlError(\"The authority part of the URL is not in a valid format\", \"URL_INVALID\");\n }\n const groups = match.groups;\n const host = percentDecode(groups[\"host_br\"] ?? groups[\"host\"]);\n const port = groups[\"port\"] ? parseInt(groups[\"port\"], 10) : undefined;\n const userinfo = groups[\"username\"] !== undefined ? {\n username: percentDecode(groups[\"username\"]),\n password: groups[\"password\"] !== undefined ? percentDecode(groups[\"password\"]) : undefined\n } : undefined;\n return {\n host,\n port,\n userinfo\n };\n}\nconst AUTHORITY_RE = (() => {\n return new RegExp(`^((?<username>[^:]*)(:(?<password>.*))?@)?((?<host>[^:\\\\[\\\\]]*)|(\\\\[(?<host_br>[^\\\\[\\\\]]*)\\\\]))(:(?<port>[0-9]*))?$`, \"su\");\n})();\n// Query string is parsed as application/x-www-form-urlencoded according to the Web URL standard:\n// https://url.spec.whatwg.org/#urlencoded-parsing\nfunction parseQuery(text) {\n const sequences = text.split(\"&\");\n const pairs = [];\n for (const sequence of sequences) {\n if (sequence === \"\") {\n continue;\n }\n let key;\n let value;\n const splitIdx = sequence.indexOf(\"=\");\n if (splitIdx < 0) {\n key = sequence;\n value = \"\";\n } else {\n key = sequence.substring(0, splitIdx);\n value = sequence.substring(splitIdx + 1);\n }\n pairs.push({\n key: percentDecode(key.replaceAll(\"+\", \" \")),\n value: percentDecode(value.replaceAll(\"+\", \" \"))\n });\n }\n return {\n pairs\n };\n}\nfunction percentDecode(text) {\n try {\n return decodeURIComponent(text);\n } catch (e) {\n if (e instanceof URIError) {\n throw new api_js_1.LibsqlError(`URL component has invalid percent encoding: ${e}`, \"URL_INVALID\", undefined, e);\n }\n throw e;\n }\n}\nfunction encodeBaseUrl(scheme, authority, path) {\n if (authority === undefined) {\n throw new api_js_1.LibsqlError(`URL with scheme ${JSON.stringify(scheme + \":\")} requires authority (the \"//\" part)`, \"URL_INVALID\");\n }\n const schemeText = `${scheme}:`;\n const hostText = encodeHost(authority.host);\n const portText = encodePort(authority.port);\n const userinfoText = encodeUserinfo(authority.userinfo);\n const authorityText = `//${userinfoText}${hostText}${portText}`;\n let pathText = path.split(\"/\").map(encodeURIComponent).join(\"/\");\n if (pathText !== \"\" && !pathText.startsWith(\"/\")) {\n pathText = \"/\" + pathText;\n }\n return new URL(`${schemeText}${authorityText}${pathText}`);\n}\nexports.encodeBaseUrl = encodeBaseUrl;\nfunction encodeHost(host) {\n return host.includes(\":\") ? `[${encodeURI(host)}]` : encodeURI(host);\n}\nfunction encodePort(port) {\n return port !== undefined ? `:${port}` : \"\";\n}\nfunction encodeUserinfo(userinfo) {\n if (userinfo === undefined) {\n return \"\";\n }\n const usernameText = encodeURIComponent(userinfo.username);\n const passwordText = userinfo.password !== undefined ? `:${encodeURIComponent(userinfo.password)}` : \"\";\n return `${usernameText}${passwordText}@`;\n}","map":{"version":3,"names":["Object","defineProperty","exports","value","encodeBaseUrl","parseUri","api_js_1","require","text","match","URI_RE","exec","LibsqlError","groups","scheme","authority","undefined","parseAuthority","path","percentDecode","query","parseQuery","fragment","SCHEME","AUTHORITY","PATH","QUERY","FRAGMENT","RegExp","AUTHORITY_RE","host","port","parseInt","userinfo","username","password","sequences","split","pairs","sequence","key","splitIdx","indexOf","substring","push","replaceAll","decodeURIComponent","e","URIError","JSON","stringify","schemeText","hostText","encodeHost","portText","encodePort","userinfoText","encodeUserinfo","authorityText","pathText","map","encodeURIComponent","join","startsWith","URL","includes","encodeURI","usernameText","passwordText"],"sources":["/Users/shoofle/Projects/the-forest/node_modules/@libsql/core/lib-cjs/uri.js"],"sourcesContent":["\"use strict\";\n// URI parser based on RFC 3986\n// We can't use the standard `URL` object, because we want to support relative `file:` URLs like\n// `file:relative/path/database.db`, which are not correct according to RFC 8089, which standardizes the\n// `file` scheme.\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.encodeBaseUrl = exports.parseUri = void 0;\nconst api_js_1 = require(\"./api.js\");\nfunction parseUri(text) {\n const match = URI_RE.exec(text);\n if (match === null) {\n throw new api_js_1.LibsqlError(`The URL '${text}' is not in a valid format`, \"URL_INVALID\");\n }\n const groups = match.groups;\n const scheme = groups[\"scheme\"];\n const authority = groups[\"authority\"] !== undefined\n ? parseAuthority(groups[\"authority\"])\n : undefined;\n const path = percentDecode(groups[\"path\"]);\n const query = groups[\"query\"] !== undefined ? parseQuery(groups[\"query\"]) : undefined;\n const fragment = groups[\"fragment\"] !== undefined\n ? percentDecode(groups[\"fragment\"])\n : undefined;\n return { scheme, authority, path, query, fragment };\n}\nexports.parseUri = parseUri;\nconst URI_RE = (() => {\n const SCHEME = \"(?<scheme>[A-Za-z][A-Za-z.+-]*)\";\n const AUTHORITY = \"(?<authority>[^/?#]*)\";\n const PATH = \"(?<path>[^?#]*)\";\n const QUERY = \"(?<query>[^#]*)\";\n const FRAGMENT = \"(?<fragment>.*)\";\n return new RegExp(`^${SCHEME}:(//${AUTHORITY})?${PATH}(\\\\?${QUERY})?(#${FRAGMENT})?$`, \"su\");\n})();\nfunction parseAuthority(text) {\n const match = AUTHORITY_RE.exec(text);\n if (match === null) {\n throw new api_js_1.LibsqlError(\"The authority part of the URL is not in a valid format\", \"URL_INVALID\");\n }\n const groups = match.groups;\n const host = percentDecode(groups[\"host_br\"] ?? groups[\"host\"]);\n const port = groups[\"port\"] ? parseInt(groups[\"port\"], 10) : undefined;\n const userinfo = groups[\"username\"] !== undefined\n ? {\n username: percentDecode(groups[\"username\"]),\n password: groups[\"password\"] !== undefined\n ? percentDecode(groups[\"password\"])\n : undefined,\n }\n : undefined;\n return { host, port, userinfo };\n}\nconst AUTHORITY_RE = (() => {\n return new RegExp(`^((?<username>[^:]*)(:(?<password>.*))?@)?((?<host>[^:\\\\[\\\\]]*)|(\\\\[(?<host_br>[^\\\\[\\\\]]*)\\\\]))(:(?<port>[0-9]*))?$`, \"su\");\n})();\n// Query string is parsed as application/x-www-form-urlencoded according to the Web URL standard:\n// https://url.spec.whatwg.org/#urlencoded-parsing\nfunction parseQuery(text) {\n const sequences = text.split(\"&\");\n const pairs = [];\n for (const sequence of sequences) {\n if (sequence === \"\") {\n continue;\n }\n let key;\n let value;\n const splitIdx = sequence.indexOf(\"=\");\n if (splitIdx < 0) {\n key = sequence;\n value = \"\";\n }\n else {\n key = sequence.substring(0, splitIdx);\n value = sequence.substring(splitIdx + 1);\n }\n pairs.push({\n key: percentDecode(key.replaceAll(\"+\", \" \")),\n value: percentDecode(value.replaceAll(\"+\", \" \")),\n });\n }\n return { pairs };\n}\nfunction percentDecode(text) {\n try {\n return decodeURIComponent(text);\n }\n catch (e) {\n if (e instanceof URIError) {\n throw new api_js_1.LibsqlError(`URL component has invalid percent encoding: ${e}`, \"URL_INVALID\", undefined, e);\n }\n throw e;\n }\n}\nfunction encodeBaseUrl(scheme, authority, path) {\n if (authority === undefined) {\n throw new api_js_1.LibsqlError(`URL with scheme ${JSON.stringify(scheme + \":\")} requires authority (the \"//\" part)`, \"URL_INVALID\");\n }\n const schemeText = `${scheme}:`;\n const hostText = encodeHost(authority.host);\n const portText = encodePort(authority.port);\n const userinfoText = encodeUserinfo(authority.userinfo);\n const authorityText = `//${userinfoText}${hostText}${portText}`;\n let pathText = path.split(\"/\").map(encodeURIComponent).join(\"/\");\n if (pathText !== \"\" && !pathText.startsWith(\"/\")) {\n pathText = \"/\" + pathText;\n }\n return new URL(`${schemeText}${authorityText}${pathText}`);\n}\nexports.encodeBaseUrl = encodeBaseUrl;\nfunction encodeHost(host) {\n return host.includes(\":\") ? `[${encodeURI(host)}]` : encodeURI(host);\n}\nfunction encodePort(port) {\n return port !== undefined ? `:${port}` : \"\";\n}\nfunction encodeUserinfo(userinfo) {\n if (userinfo === undefined) {\n return \"\";\n }\n const usernameText = encodeURIComponent(userinfo.username);\n const passwordText = userinfo.password !== undefined\n ? `:${encodeURIComponent(userinfo.password)}`\n : \"\";\n return `${usernameText}${passwordText}@`;\n}\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"script","externalDependencies":[]}