From 8f6fd375787fb68303521abcc07ebf1d0320d350 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 30 Sep 2024 13:34:40 -0400 Subject: [PATCH] Testing embedded R2 --- static/_redirects | 3 --- .../download/minecraft-modpack/[[version]].js | 19 +++++++++++++++++++ wrangler.toml | 4 ++++ 3 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 static/functions/download/minecraft-modpack/[[version]].js diff --git a/static/_redirects b/static/_redirects index 71c2201..53af535 100644 --- a/static/_redirects +++ b/static/_redirects @@ -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 diff --git a/static/functions/download/minecraft-modpack/[[version]].js b/static/functions/download/minecraft-modpack/[[version]].js new file mode 100644 index 0000000..bcff19b --- /dev/null +++ b/static/functions/download/minecraft-modpack/[[version]].js @@ -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"`, + }, + }); +} \ No newline at end of file diff --git a/wrangler.toml b/wrangler.toml index da49f1f..4808e61 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -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" \ No newline at end of file