mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 06:20:02 -04:00
97 lines
2.4 KiB
TypeScript
97 lines
2.4 KiB
TypeScript
import { rewriteUrl } from "../../shared";
|
|
import { ScramjetClient } from "../client";
|
|
|
|
export default function (client: ScramjetClient, self: typeof globalThis) {
|
|
client.Proxy("CacheStorage.prototype.open", {
|
|
apply(ctx) {
|
|
ctx.args[0] = `${client.url.origin}@${ctx.args[0]}`;
|
|
},
|
|
});
|
|
|
|
client.Proxy("CacheStorage.prototype.has", {
|
|
apply(ctx) {
|
|
ctx.args[0] = `${client.url.origin}@${ctx.args[0]}`;
|
|
},
|
|
});
|
|
|
|
client.Proxy("CacheStorage.prototype.match", {
|
|
apply(ctx) {
|
|
if (typeof ctx.args[0] === "string" || ctx.args[0] instanceof URL) {
|
|
ctx.args[0] = rewriteUrl(ctx.args[0].toString(), client.meta);
|
|
}
|
|
},
|
|
});
|
|
|
|
client.Proxy("CacheStorage.prototype.delete", {
|
|
apply(ctx) {
|
|
ctx.args[0] = `${client.url.origin}@${ctx.args[0]}`;
|
|
},
|
|
});
|
|
|
|
client.Proxy("Cache.prototype.add", {
|
|
apply(ctx) {
|
|
if (typeof ctx.args[0] === "string" || ctx.args[0] instanceof URL) {
|
|
ctx.args[0] = rewriteUrl(ctx.args[0].toString(), client.meta);
|
|
}
|
|
},
|
|
});
|
|
|
|
client.Proxy("Cache.prototype.addAll", {
|
|
apply(ctx) {
|
|
for (let i = 0; i < ctx.args[0].length; i++) {
|
|
if (
|
|
typeof ctx.args[0][i] === "string" ||
|
|
ctx.args[0][i] instanceof URL
|
|
) {
|
|
ctx.args[0][i] = rewriteUrl(ctx.args[0][i].toString(), client.meta);
|
|
}
|
|
}
|
|
},
|
|
});
|
|
|
|
client.Proxy("Cache.prototype.put", {
|
|
apply(ctx) {
|
|
if (typeof ctx.args[0] === "string" || ctx.args[0] instanceof URL) {
|
|
ctx.args[0] = rewriteUrl(ctx.args[0].toString(), client.meta);
|
|
}
|
|
},
|
|
});
|
|
|
|
client.Proxy("Cache.prototype.match", {
|
|
apply(ctx) {
|
|
if (typeof ctx.args[0] === "string" || ctx.args[0] instanceof URL) {
|
|
ctx.args[0] = rewriteUrl(ctx.args[0].toString(), client.meta);
|
|
}
|
|
},
|
|
});
|
|
|
|
client.Proxy("Cache.prototype.matchAll", {
|
|
apply(ctx) {
|
|
if (
|
|
(ctx.args[0] && typeof ctx.args[0] === "string") ||
|
|
(ctx.args[0] && ctx.args[0] instanceof URL)
|
|
) {
|
|
ctx.args[0] = rewriteUrl(ctx.args[0].toString(), client.meta);
|
|
}
|
|
},
|
|
});
|
|
|
|
client.Proxy("Cache.prototype.keys", {
|
|
apply(ctx) {
|
|
if (
|
|
(ctx.args[0] && typeof ctx.args[0] === "string") ||
|
|
(ctx.args[0] && ctx.args[0] instanceof URL)
|
|
) {
|
|
ctx.args[0] = rewriteUrl(ctx.args[0].toString(), client.meta);
|
|
}
|
|
},
|
|
});
|
|
|
|
client.Proxy("Cache.prototype.delete", {
|
|
apply(ctx) {
|
|
if (typeof ctx.args[0] === "string" || ctx.args[0] instanceof URL) {
|
|
ctx.args[0] = rewriteUrl(ctx.args[0].toString(), client.meta);
|
|
}
|
|
},
|
|
});
|
|
}
|