1

Testing embedded R2

This commit is contained in:
Evan Pratten 2024-09-30 13:34:40 -04:00
parent d9e701eaa8
commit 8f6fd37578
3 changed files with 23 additions and 3 deletions

View File

@ -11,6 +11,3 @@
/rss /rss.xml
/feed /rss.xml
/feed.xml /rss.xml
# Minecraft modpack downloads
/download/minecraft-modpack/* minecraft-modpack.storage.ewpratten.com/:splat

View File

@ -0,0 +1,19 @@
export async function onRequest(context) {
// Figure out what version was requested
const url = new URL(context.request.url);
const version = url.pathname.split("/").pop();
// Request the file from R2
let object = await context.env.MC_MODPACK_BUCKET.get(`Evan's Pack-${version}.mrpack`);
if (object === null) {
return new Response("Not Found", { status: 404 });
}
// Return the file
return new Response(object, {
headers: {
"Content-Type": "application/octet-stream",
"Content-Disposition": `attachment; filename="Evan's Pack-${version}.mrpack"`,
},
});
}

View File

@ -13,3 +13,7 @@ compatibility_date = "2023-05-22"
[env.production.vars]
GOAT_COUNTER_SITE_CODE = "ewpratten"
ZOLA_VERSION = "0.15.3"
[[r2_buckets]]
binding = "MC_MODPACK_BUCKET"
bucket_name = "minecraft-modpack-builds"