diff --git a/sites/README.txt b/sites/README.txt deleted file mode 100644 index 6035089..0000000 --- a/sites/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -This is the new area for storing site SRCs. -The main website shall move here soon. \ No newline at end of file diff --git a/sites/cursed.graphics/.gitignore b/sites/cursed.graphics/.gitignore deleted file mode 100644 index 929da4f..0000000 --- a/sites/cursed.graphics/.gitignore +++ /dev/null @@ -1,26 +0,0 @@ -# Generated by Cargo -# will have compiled files and executables -debug/ -target/ - -# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries -# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html -Cargo.lock - -# These are backup files generated by rustfmt -**/*.rs.bk - -# MSVC Windows builds of rustc generate these, which store debugging information -*.pdb - -# RustRover -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - -# Node -/build -/node_modules -/.wrangler \ No newline at end of file diff --git a/sites/cursed.graphics/Cargo.toml b/sites/cursed.graphics/Cargo.toml deleted file mode 100644 index 1b07eaa..0000000 --- a/sites/cursed.graphics/Cargo.toml +++ /dev/null @@ -1,18 +0,0 @@ -[package] -name = "cursed-graphics" -publish = false -edition = "2021" - -[dependencies] -getrandom = { version = "0.2.15", features = ["js"] } -worker = "0.4.2" -worker-macros = "0.4.2" -console_error_panic_hook = "0.1.7" -rand = "0.8.5" -base64 = "0.22.1" - -[package.metadata.wasm-pack.profile.release] -wasm-opt = false - -[lib] -crate-type = ["cdylib"] diff --git a/sites/cursed.graphics/src/lib.rs b/sites/cursed.graphics/src/lib.rs deleted file mode 100644 index f9d4acb..0000000 --- a/sites/cursed.graphics/src/lib.rs +++ /dev/null @@ -1,70 +0,0 @@ -use worker::*; - -#[event(fetch)] -async fn fetch(request: Request, env: Env, _context: Context) -> Result { - console_error_panic_hook::set_once(); - - // Split the path into segments - let url = request.url().unwrap(); - let path_segments = url.path_segments(); - - // Handle the sub-paths - match path_segments { - Some(path_segments) => match path_segments.collect::>().as_slice() { - // Index - [""] => Response::from_html(include_str!("../templates/index.html")), - - // Randomizer - ["random"] => { - // List the images in the bucket - let images = env.bucket("IMAGES")?.list().execute().await?.objects(); - - // If there's a referer header, make note of the previous image - let previous_image = request.headers().get("Referer")?.map(|referer| { - let referer = referer.split("/").last().unwrap(); - referer.to_string() - }); - - // Pick a random file name. Don't pick the same one as the previous image - let images = images.iter().filter(|image| { - let image_id = image.key().split(".").next().unwrap().to_string(); - previous_image != Some(image_id) - }).collect::>(); - let random_index = rand::random::() % images.len(); - let random_image = images.get(random_index).unwrap().key(); - let random_image = random_image.split(".").next().unwrap(); - - Response::builder() - .with_status(302) - .with_header("Location", &format!("/{}", random_image))? - .ok("") - } - - // Image subpage (addressed by numeric ID) - [id] => { - // List the images in the bucket - let images = env.bucket("IMAGES")?.list().execute().await?.objects(); - - // Find the first one with a matching name - let image = images.iter().find(|image| { - image.key().split(".").next().unwrap() == *id - }); - - // If no result is found, this image doesn't exist - if image.is_none() { - return Response::error("Not Found", 404); - } - - // Serve the image - Response::from_html(format!( - include_str!("../templates/image.html"), - image_id = id, - image_filename = image.unwrap().key() - )) - } - - _ => Response::error("Not Found", 404), - }, - _ => Response::error("Not Found", 404), - } -} diff --git a/sites/cursed.graphics/templates/image.html b/sites/cursed.graphics/templates/image.html deleted file mode 100644 index 30ad473..0000000 --- a/sites/cursed.graphics/templates/image.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - Cursed Graphics: {image_id} - - - - - - - - - - - - - - - - -
- {image_id} - More -
- - - - \ No newline at end of file diff --git a/sites/cursed.graphics/templates/index.html b/sites/cursed.graphics/templates/index.html deleted file mode 100644 index 0bf4828..0000000 --- a/sites/cursed.graphics/templates/index.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - Cursed Graphics - - - - - - - - - - -
-

Cursed Graphics

- Show Me -
- - - \ No newline at end of file diff --git a/sites/cursed.graphics/wrangler.toml b/sites/cursed.graphics/wrangler.toml deleted file mode 100644 index 4aec9e2..0000000 --- a/sites/cursed.graphics/wrangler.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "cursed-graphics" -main = "build/worker/shim.mjs" -compatibility_date = "2024-11-23" - -[[r2_buckets]] -binding = "IMAGES" -bucket_name = "cursed-graphics" -preview_bucket_name = "cursed-graphics" - -[build] -# Install with: cargo install worker-build -command = "worker-build --release" - \ No newline at end of file