mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 14:30:02 -04:00
fix client.url using the wrong location
This commit is contained in:
parent
118610cc99
commit
1dba0f8fa0
2 changed files with 12 additions and 21 deletions
|
@ -19,29 +19,20 @@ export function encodeUrl(url: string | URL, meta: URLMeta) {
|
|||
url = url.href;
|
||||
}
|
||||
|
||||
// if (!origin) {
|
||||
// if (location.pathname.startsWith(self.$scramjet.config.prefix + "worker")) {
|
||||
// origin = new URL(new URL(location.href).searchParams.get("origin"));
|
||||
// } else
|
||||
// origin = new URL(
|
||||
// self.$scramjet.codec.decode(
|
||||
// location.href.slice(
|
||||
// (location.origin + self.$scramjet.config.prefix).length
|
||||
// )
|
||||
// )
|
||||
// );
|
||||
// }
|
||||
|
||||
if (url.startsWith("javascript:")) {
|
||||
return "javascript:" + rewriteJs(url.slice("javascript:".length), meta);
|
||||
} else if (/^(#|mailto|about|data|blob)/.test(url)) {
|
||||
// TODO this regex is jank but i'm not fixing it
|
||||
return url;
|
||||
} else {
|
||||
let base = meta.base.href;
|
||||
|
||||
if (base.startsWith("about:")) base = decodeUrl(self.location.href); // jank!!!!! weird jank!!!
|
||||
|
||||
return (
|
||||
location.origin +
|
||||
self.$scramjet.config.prefix +
|
||||
self.$scramjet.codec.encode(new URL(url, meta.base).href)
|
||||
self.$scramjet.codec.encode(new URL(url, base).href)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -54,7 +45,7 @@ export function decodeUrl(url: string | URL) {
|
|||
|
||||
if (
|
||||
tryCanParseURL(url)?.pathname.startsWith(
|
||||
self.$scramjet.config.prefix + "worker"
|
||||
self.$scramjet.config.prefix + "worker",
|
||||
)
|
||||
) {
|
||||
return new URL(new URL(url).searchParams.get("origin")).href;
|
||||
|
@ -64,7 +55,7 @@ export function decodeUrl(url: string | URL) {
|
|||
return url;
|
||||
} else if (tryCanParseURL(url)) {
|
||||
return self.$scramjet.codec.decode(
|
||||
url.slice((location.origin + self.$scramjet.config.prefix).length)
|
||||
url.slice((location.origin + self.$scramjet.config.prefix).length),
|
||||
);
|
||||
} else {
|
||||
return url;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue