# This is a combination of 3 commits.
# This is the 1st commit message: fix: redirects + update root cdn url # This is the commit message #2: chore: workflow # This is the commit message #3: chore: naming
This commit is contained in:
parent
ed88631875
commit
88a4ec4acd
45 changed files with 1122 additions and 133 deletions
45
.github/workflows/deploy-worker.yaml
vendored
Normal file
45
.github/workflows/deploy-worker.yaml
vendored
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
name: Deploy Cloudflare Worker
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
worker-folder:
|
||||||
|
description: 'Select the folder containing the worker to deploy'
|
||||||
|
required: true
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- analytics
|
||||||
|
- contact
|
||||||
|
- now-playing
|
||||||
|
- rebuild
|
||||||
|
- scrobble
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '16'
|
||||||
|
|
||||||
|
- name: Install Wrangler
|
||||||
|
run: npm install -g wrangler
|
||||||
|
|
||||||
|
- name: Inject environment variables into wrangler.toml
|
||||||
|
run: |
|
||||||
|
cd workers/${{ github.event.inputs.worker-folder }}
|
||||||
|
sed -i 's/^zone_id =.*/zone_id = "${{ secrets.CLOUDFLARE_ZONE_ID }}"/' wrangler.toml
|
||||||
|
sed -i 's/^account_id =.*/account_id = "${{ secrets.CLOUDFLARE_ACCOUNT_ID }}"/' wrangler.toml
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
cd workers/${{ github.event.inputs.worker-folder }}
|
||||||
|
npm i
|
||||||
|
|
||||||
|
- name: Deploy to Cloudflare Worker
|
||||||
|
run: |
|
||||||
|
cd workers/${{ github.event.inputs.worker-folder }}
|
||||||
|
wrangler deploy --env production
|
||||||
|
env:
|
||||||
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
||||||
_site
|
_site
|
||||||
node_modules
|
node_modules
|
||||||
.cache
|
.cache
|
||||||
|
.wrangler
|
||||||
|
|
||||||
# local dependencies
|
# local dependencies
|
||||||
.env.local
|
.env.local
|
||||||
|
|
|
@ -4,6 +4,6 @@ Hi! I'm Cory. 👋🏻
|
||||||
|
|
||||||
This is the code for my personal website and portfolio. Built using [11ty](https://www.11ty.dev).
|
This is the code for my personal website and portfolio. Built using [11ty](https://www.11ty.dev).
|
||||||
|
|
||||||
[](https://social.lol/@cory) [](https://www.buymeacoffee.com/cory) [](https://eleventy.dev)
|
[](https://social.lol/@cory) [](https://www.buymeacoffee.com/cory) [](https://eleventy.dev)
|
||||||
|
|
||||||
[Music](https://coryd.dev/music) • [Watching](https://coryd.dev/watching) • [Books](https://coryd.dev/books) • [Now](https://coryd.dev/now)
|
[Music](https://coryd.dev/music) • [Watching](https://coryd.dev/watching) • [Books](https://coryd.dev/books) • [Now](https://coryd.dev/now)
|
||||||
|
|
30
_redirects
30
_redirects
|
@ -40,20 +40,20 @@
|
||||||
/blog/digital-privacy-tools /posts/2021/digital-privacy-tools/ 301
|
/blog/digital-privacy-tools /posts/2021/digital-privacy-tools/ 301
|
||||||
|
|
||||||
# assets
|
# assets
|
||||||
/favicon.ico https://coryd-dev.b-cdn.net/assets/icons/favicon.ico 301
|
/favicon.ico https://cdn.coryd.dev/assets/icons/favicon.ico 301
|
||||||
/assets/icons/favicon.ico https://coryd-dev.b-cdn.net/assets/icons/favicon.ico 301
|
/assets/icons/favicon.ico https://cdn.coryd.dev/assets/icons/favicon.ico 301
|
||||||
/apple-touch-icon.png https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png 301
|
/apple-touch-icon.png https://cdn.coryd.dev/assets/icons/apple-touch-icon.png 301
|
||||||
/apple-touch-icon https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png 301
|
/apple-touch-icon https://cdn.coryd.dev/assets/icons/apple-touch-icon.png 301
|
||||||
/apple-touch-icon-precomposed.png https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png 301
|
/apple-touch-icon-precomposed.png https://cdn.coryd.dev/assets/icons/apple-touch-icon.png 301
|
||||||
/assets/icons/apple-touch-icon.png https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png 301
|
/assets/icons/apple-touch-icon.png https://cdn.coryd.dev/assets/icons/apple-touch-icon.png 301
|
||||||
/assets/img/feed-icon.png https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png 301
|
/assets/img/feed-icon.png https://cdn.coryd.dev/assets/icons/apple-touch-icon.png 301
|
||||||
/assets/img/logo.webp https://coryd-dev.b-cdn.net/assets/avatar.webp 301
|
/assets/img/logo.webp https://cdn.coryd.dev/assets/avatar.webp 301
|
||||||
/static/favicons/apple-touch-icon.png https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png 301
|
/static/favicons/apple-touch-icon.png https://cdn.coryd.dev/assets/icons/apple-touch-icon.png 301
|
||||||
/static/images/avatar.png https://coryd-dev.b-cdn.net/assets/avatar.png 301
|
/static/images/avatar.png https://cdn.coryd.dev/assets/avatar.png 301
|
||||||
/static/images/avatar.webp https://coryd-dev.b-cdn.net/assets/avatar.webp 301
|
/static/images/avatar.webp https://cdn.coryd.dev/assets/avatar.webp 301
|
||||||
/assets/img/favicon/favicon-32x32.png https://coryd-dev.b-cdn.net/assets/icons/favicon.ico 301
|
/assets/img/favicon/favicon-32x32.png https://cdn.coryd.dev/assets/icons/favicon.ico 301
|
||||||
/assets/img/favicon/favicon-16x16.png https://coryd-dev.b-cdn.net/assets/icons/favicon.ico 301
|
/assets/img/favicon/favicon-16x16.png https://cdn.coryd.dev/assets/icons/favicon.ico 301
|
||||||
/assets/img/logo.webp https://coryd-dev.b-cdn.net/assets/avatar.webp 301
|
/assets/img/logo.webp https://cdn.coryd.dev/assets/avatar.webp 301
|
||||||
|
|
||||||
# feeds
|
# feeds
|
||||||
/rss https://feedpress.me/coryd 301
|
/rss https://feedpress.me/coryd 301
|
||||||
|
@ -73,12 +73,12 @@
|
||||||
# general
|
# general
|
||||||
/articles/ / 301
|
/articles/ / 301
|
||||||
/tags /search 301
|
/tags /search 301
|
||||||
/tags/* /search 301
|
|
||||||
/referrals /save 301
|
/referrals /save 301
|
||||||
/recent/movies /watching/recent/movies 301
|
/recent/movies /watching/recent/movies 301
|
||||||
/recent/shows /watching/recent/shows 301
|
/recent/shows /watching/recent/shows 301
|
||||||
/mastodon https://social.lol/@cory 301
|
/mastodon https://social.lol/@cory 301
|
||||||
/coffee https://www.buymeacoffee.com/cory 301
|
/coffee https://www.buymeacoffee.com/cory 301
|
||||||
|
/tags/* /search 301
|
||||||
/music/genre/* /music/genres/:splat 301
|
/music/genre/* /music/genres/:splat 301
|
||||||
|
|
||||||
# mastodon
|
# mastodon
|
||||||
|
|
|
@ -10,7 +10,7 @@ export default async function () {
|
||||||
"locale": "en_US",
|
"locale": "en_US",
|
||||||
"lang": "en",
|
"lang": "en",
|
||||||
"meta_data": {
|
"meta_data": {
|
||||||
"opengraph_default": "https://coryd-dev.b-cdn.net/assets/avatar.png"
|
"opengraph_default": "https://cdn.coryd.dev/assets/avatar.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ export default async function () {
|
||||||
footer: [
|
footer: [
|
||||||
{ name: 'Now' },
|
{ name: 'Now' },
|
||||||
{ name: 'Uses' },
|
{ name: 'Uses' },
|
||||||
{ name: 'Save' },
|
{ name: 'Referrals' },
|
||||||
{ name: 'Blogroll' },
|
{ name: 'Blogroll' },
|
||||||
],
|
],
|
||||||
menu: [
|
menu: [
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
{%- when 'movie' -%}
|
{%- when 'movie' -%}
|
||||||
{%- assign ogImage = movie.backdrop -%}
|
{%- assign ogImage = movie.backdrop -%}
|
||||||
{%- when 'show' -%}
|
{%- when 'show' -%}
|
||||||
{%- assign ogImage = 'https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%}
|
{%- assign ogImage = 'https://cdn.coryd.dev/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%}
|
||||||
{%- when 'genre' -%}
|
{%- when 'genre' -%}
|
||||||
{%- assign genreArtist = genre.artists | shuffleArray | first -%}
|
{%- assign genreArtist = genre.artists | shuffleArray | first -%}
|
||||||
{%- assign ogImage = genreArtist.image -%}
|
{%- assign ogImage = genreArtist.image -%}
|
||||||
|
@ -86,9 +86,9 @@
|
||||||
<meta name="theme-color" content="{{ meta.themeColor }}" />
|
<meta name="theme-color" content="{{ meta.themeColor }}" />
|
||||||
<meta name="generator" content="Eleventy">
|
<meta name="generator" content="Eleventy">
|
||||||
<meta name="robots" content="noai, noimageai">
|
<meta name="robots" content="noai, noimageai">
|
||||||
<link href="https://coryd-dev.b-cdn.net/assets/icons/favicon.ico?v={% appVersion %}" rel="icon" sizes="any">
|
<link href="https://cdn.coryd.dev/assets/icons/favicon.ico?v={% appVersion %}" rel="icon" sizes="any">
|
||||||
<link href="https://coryd-dev.b-cdn.net/assets/icons/favicon.svg?v={% appVersion %}" rel="icon" type="image/svg+xml">
|
<link href="https://cdn.coryd.dev/assets/icons/favicon.svg?v={% appVersion %}" rel="icon" type="image/svg+xml">
|
||||||
<link href="https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
<link href="https://cdn.coryd.dev/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
||||||
<link rel="webmention" href="https://webmention.io/coryd.dev/webmention" />
|
<link rel="webmention" href="https://webmention.io/coryd.dev/webmention" />
|
||||||
<link rel="pingback" href="https://webmention.io/coryd.dev/xmlrpc" />
|
<link rel="pingback" href="https://webmention.io/coryd.dev/xmlrpc" />
|
||||||
<link type="application/atom+xml" rel="alternate" title="{{ meta.siteName }}" href="https://feedpress.me/coryd">
|
<link type="application/atom+xml" rel="alternate" title="{{ meta.siteName }}" href="https://feedpress.me/coryd">
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{
|
{
|
||||||
"version": "https://jsonfeed.org/version/1",
|
"version": "https://jsonfeed.org/version/1",
|
||||||
"title": "{{ title }}",
|
"title": "{{ title }}",
|
||||||
"icon": "https://coryd-dev.b-cdn.net/assets/avatar.png",
|
"icon": "https://cdn.coryd.dev/assets/avatar.png",
|
||||||
"home_page_url": "{{ meta.url }}",
|
"home_page_url": "{{ meta.url }}",
|
||||||
"feed_url": "{{ permalink | absoluteUrl: meta.url }}",
|
"feed_url": "{{ permalink | absoluteUrl: meta.url }}",
|
||||||
"items": [{% for entry in entries limit: 20 -%}
|
"items": [{% for entry in entries limit: 20 -%}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<image>
|
<image>
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
||||||
<url>https://coryd-dev.b-cdn.net/assets/avatar.png</url>
|
<url>https://cdn.coryd.dev/assets/avatar.png</url>
|
||||||
<width>144</width>
|
<width>144</width>
|
||||||
<height>144</height>
|
<height>144</height>
|
||||||
</image>
|
</image>
|
||||||
|
|
|
@ -19,16 +19,16 @@
|
||||||
{% if shape == 'square' %}
|
{% if shape == 'square' %}
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=200&h=200&aspect_ratio=1:1 200w,
|
https://cdn.coryd.dev{{ item.image }}?width=200&h=200&aspect_ratio=1:1 200w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=400&h=400&aspect_ratio=1:1 400w,
|
https://cdn.coryd.dev{{ item.image }}?width=400&h=400&aspect_ratio=1:1 400w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=800&h=800&aspect_ratio=1:1 800w,
|
https://cdn.coryd.dev{{ item.image }}?width=800&h=800&aspect_ratio=1:1 800w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1 1200w
|
https://cdn.coryd.dev{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1 1200w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 200px,
|
sizes="(max-width: 450px) 200px,
|
||||||
(max-width: 850px) 400px,
|
(max-width: 850px) 400px,
|
||||||
(max-width: 100px) 800px,
|
(max-width: 100px) 800px,
|
||||||
1200px"
|
1200px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1"
|
src="https://cdn.coryd.dev{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="{{ loadingStrategy }}"
|
loading="{{ loadingStrategy }}"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -38,16 +38,16 @@
|
||||||
{% else %}
|
{% else %}
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=200&aspect_ratio=2:3 200w,
|
https://cdn.coryd.dev{{ item.image }}?w=200&aspect_ratio=2:3 200w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=400&aspect_ratio=2:3 400w,
|
https://cdn.coryd.dev{{ item.image }}?w=400&aspect_ratio=2:3 400w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=800&aspect_ratio=2:3 800w,
|
https://cdn.coryd.dev{{ item.image }}?w=800&aspect_ratio=2:3 800w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=1200&aspect_ratio=2:3 1200w
|
https://cdn.coryd.dev{{ item.image }}?w=1200&aspect_ratio=2:3 1200w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 200px,
|
sizes="(max-width: 450px) 200px,
|
||||||
(max-width: 850px) 400px,
|
(max-width: 850px) 400px,
|
||||||
(max-width: 1000px) 800px,
|
(max-width: 1000px) 800px,
|
||||||
1200px"
|
1200px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ item.image }}?w=1200&aspect_ratio=2:3"
|
src="https://cdn.coryd.dev{{ item.image }}?w=1200&aspect_ratio=2:3"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="{{ loadingStrategy }}"
|
loading="{{ loadingStrategy }}"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -5,16 +5,16 @@
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=64 256w 64w,
|
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=64 256w 64w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=128 128w,
|
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=128 128w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=256 256w,
|
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=256 256w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=512 512w
|
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=512 512w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 64px,
|
sizes="(max-width: 450px) 64px,
|
||||||
(max-width: 850px) 128px,
|
(max-width: 850px) 128px,
|
||||||
(max-width: 1000px) 256px,
|
(max-width: 1000px) 256px,
|
||||||
512px"
|
512px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=512"
|
src="https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=512"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -23,16 +23,16 @@
|
||||||
{%- endcapture -%}
|
{%- endcapture -%}
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
||||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 256px,
|
sizes="(max-width: 450px) 256px,
|
||||||
(max-width: 850px) 512px,
|
(max-width: 850px) 512px,
|
||||||
(max-width: 1000px) 1024px,
|
(max-width: 1000px) 1024px,
|
||||||
2048px"
|
2048px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
src="https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="{{ loadingStrategy }}"
|
loading="{{ loadingStrategy }}"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -7,16 +7,16 @@
|
||||||
</div>
|
</div>
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 256px,
|
sizes="(max-width: 450px) 256px,
|
||||||
(max-width: 850px) 512px,
|
(max-width: 850px) 512px,
|
||||||
(max-width: 1000px) 1024px,
|
(max-width: 1000px) 1024px,
|
||||||
2048px"
|
2048px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
src="https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
<a href="https://11ty.dev">
|
<a href="https://11ty.dev">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -22,16 +22,16 @@
|
||||||
<a href="https://social.lol/@cory">
|
<a href="https://social.lol/@cory">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -42,16 +42,16 @@
|
||||||
<a href="https://www.buymeacoffee.com/cory">
|
<a href="https://www.buymeacoffee.com/cory">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -62,16 +62,16 @@
|
||||||
<a href="https://github.com/cdransf">
|
<a href="https://github.com/cdransf">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -82,16 +82,16 @@
|
||||||
<a href="https://github.com/ai-robots-txt/ai.robots.txt">
|
<a href="https://github.com/ai-robots-txt/ai.robots.txt">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -102,16 +102,16 @@
|
||||||
<a href="https://validator.w3.org">
|
<a href="https://validator.w3.org">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -122,16 +122,16 @@
|
||||||
<a href="https://www.w3.org/Style/CSS/Overview.en.html">
|
<a href="https://www.w3.org/Style/CSS/Overview.en.html">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
@ -142,16 +142,16 @@
|
||||||
<a href="https://coryd.dev/feeds">
|
<a href="https://coryd.dev/feeds">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=88 88w,
|
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=88 88w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=176 176w,
|
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=176 176w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=352 352w,
|
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=352 352w,
|
||||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=704 704w
|
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=704 704w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 88px,
|
sizes="(max-width: 450px) 88px,
|
||||||
(max-width: 850px) 176px,
|
(max-width: 850px) 176px,
|
||||||
(max-width: 1000px) 352px,
|
(max-width: 1000px) 352px,
|
||||||
704px"
|
704px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=704"
|
src="https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=704"
|
||||||
alt="Made with 11ty"
|
alt="Made with 11ty"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
<div class="webring__centered flex-centered">
|
<div class="webring__centered flex-centered">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=200 200w,
|
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=200 200w,
|
||||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=400 400w,
|
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=400 400w,
|
||||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=800 800w,
|
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=800 800w,
|
||||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600 1600w
|
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600 1600w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 200px,
|
sizes="(max-width: 450px) 200px,
|
||||||
(max-width: 850px) 400px,
|
(max-width: 850px) 400px,
|
||||||
(max-width: 1000px) 800px,
|
(max-width: 1000px) 800px,
|
||||||
1600px"
|
1600px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600"
|
src="https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600"
|
||||||
alt="The Claw Webring"
|
alt="The Claw Webring"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -10,7 +10,7 @@ dynamicPermalink: false
|
||||||
{
|
{
|
||||||
"rel": "http://webfinger.net/rel/avatar",
|
"rel": "http://webfinger.net/rel/avatar",
|
||||||
"type": "image/webp",
|
"type": "image/webp",
|
||||||
"href": "https://coryd-dev.b-cdn.net/assets/avatar.png"
|
"href": "https://cdn.coryd.dev/assets/avatar.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rel": "http://webfinger.net/rel/profile-page",
|
"rel": "http://webfinger.net/rel/profile-page",
|
||||||
|
|
|
@ -3,21 +3,21 @@ title: 404
|
||||||
description: What kind of idiots do you have working here? Hurry up and skip out on the room service bill!
|
description: What kind of idiots do you have working here? Hurry up and skip out on the room service bill!
|
||||||
layout: default
|
layout: default
|
||||||
permalink: /404.html
|
permalink: /404.html
|
||||||
image: https://coryd-dev.b-cdn.net/assets/404.jpg
|
image: https://cdn.coryd.dev/assets/404.jpg
|
||||||
---
|
---
|
||||||
<div class="four-oh-four-wrapper">
|
<div class="four-oh-four-wrapper">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/404.jpg?aspect_ratio=1:.5625&width=256 256w,
|
https://cdn.coryd.dev/assets/404.jpg?aspect_ratio=1:.5625&width=256 256w,
|
||||||
https://coryd-dev.b-cdn.net/assets/404.jpg?aspect_ratio=1:.5625&width=512 512w,
|
https://cdn.coryd.dev/assets/404.jpg?aspect_ratio=1:.5625&width=512 512w,
|
||||||
https://coryd-dev.b-cdn.net/assets/404.jpg?aspect_ratio=1:.5625&width=1024 1024w,
|
https://cdn.coryd.dev/assets/404.jpg?aspect_ratio=1:.5625&width=1024 1024w,
|
||||||
https://coryd-dev.b-cdn.net/assets/404.jpg?aspect_ratio=1:.5625&width=2048 2048w
|
https://cdn.coryd.dev/assets/404.jpg?aspect_ratio=1:.5625&width=2048 2048w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 256px,
|
sizes="(max-width: 450px) 256px,
|
||||||
(max-width: 850px) 512px,
|
(max-width: 850px) 512px,
|
||||||
(max-width: 1000px) 1024px,
|
(max-width: 1000px) 1024px,
|
||||||
2048px"
|
2048px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/404.jpg?aspect_ratio=1:.5625&width=2048"
|
src="https://cdn.coryd.dev/assets/404.jpg?aspect_ratio=1:.5625&width=2048"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
class="image-banner"
|
class="image-banner"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
|
|
|
@ -11,16 +11,16 @@ permalink: /about.html
|
||||||
{%- capture about_alt -%}{{ meta.siteName }} - image by David Neal / @reverentgeek{%- endcapture -%}
|
{%- capture about_alt -%}{{ meta.siteName }} - image by David Neal / @reverentgeek{%- endcapture -%}
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/assets/avatar-transparent.png?width=200&h=200&aspect_ratio=1:1 200w,
|
https://cdn.coryd.dev/assets/avatar-transparent.png?width=200&h=200&aspect_ratio=1:1 200w,
|
||||||
https://coryd-dev.b-cdn.net/assets/avatar-transparent.png?width=400&h=400&aspect_ratio=1:1 400w,
|
https://cdn.coryd.dev/assets/avatar-transparent.png?width=400&h=400&aspect_ratio=1:1 400w,
|
||||||
https://coryd-dev.b-cdn.net/assets/avatar-transparent.png?width=800&h=800&aspect_ratio=1:1 800w,
|
https://cdn.coryd.dev/assets/avatar-transparent.png?width=800&h=800&aspect_ratio=1:1 800w,
|
||||||
https://coryd-dev.b-cdn.net/assets/avatar-transparent.png?width=1200&h=1200&aspect_ratio=1:1 1200w
|
https://cdn.coryd.dev/assets/avatar-transparent.png?width=1200&h=1200&aspect_ratio=1:1 1200w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 200px,
|
sizes="(max-width: 450px) 200px,
|
||||||
(max-width: 850px) 400px,
|
(max-width: 850px) 400px,
|
||||||
(max-width: 1000px) 800px,
|
(max-width: 1000px) 800px,
|
||||||
1200px"
|
1200px"
|
||||||
src="https://coryd-dev.b-cdn.net/assets/avatar-transparent.png?width=1200&h=1200&aspect_ratio=1:1"
|
src="https://cdn.coryd.dev/assets/avatar-transparent.png?width=1200&h=1200&aspect_ratio=1:1"
|
||||||
alt="{{ about_alt }}"
|
alt="{{ about_alt }}"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -16,16 +16,16 @@ schema: book
|
||||||
<div class="book-display">
|
<div class="book-display">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?w=203&aspect_ratio=2:3 203w,
|
https://cdn.coryd.dev{{ book.image }}?w=203&aspect_ratio=2:3 203w,
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?w=406&aspect_ratio=2:3 406w,
|
https://cdn.coryd.dev{{ book.image }}?w=406&aspect_ratio=2:3 406w,
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?w=812&aspect_ratio=2:3 812w,
|
https://cdn.coryd.dev{{ book.image }}?w=812&aspect_ratio=2:3 812w,
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?w=1624&aspect_ratio=2:3 1624w
|
https://cdn.coryd.dev{{ book.image }}?w=1624&aspect_ratio=2:3 1624w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 203px,
|
sizes="(max-width: 450px) 203px,
|
||||||
(max-width: 850px) 406px,
|
(max-width: 850px) 406px,
|
||||||
(max-width: 1000px) 812px,
|
(max-width: 1000px) 812px,
|
||||||
1624px"
|
1624px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ book.image }}?w=1624&aspect_ratio=2:3"
|
src="https://cdn.coryd.dev{{ book.image }}?w=1624&aspect_ratio=2:3"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -19,16 +19,16 @@ schema: books
|
||||||
<a href="{{ book.url }}">
|
<a href="{{ book.url }}">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?width=203&aspect_ratio=.65:1 203w,
|
https://cdn.coryd.dev{{ book.image }}?width=203&aspect_ratio=.65:1 203w,
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?width=406&aspect_ratio=.65:1 406w,
|
https://cdn.coryd.dev{{ book.image }}?width=406&aspect_ratio=.65:1 406w,
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?width=812&aspect_ratio=.65:1 812w,
|
https://cdn.coryd.dev{{ book.image }}?width=812&aspect_ratio=.65:1 812w,
|
||||||
https://coryd-dev.b-cdn.net{{ book.image }}?width=1624&aspect_ratio=.65:1 1624w
|
https://cdn.coryd.dev{{ book.image }}?width=1624&aspect_ratio=.65:1 1624w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 203px,
|
sizes="(max-width: 450px) 203px,
|
||||||
(max-width: 850px) 406px,
|
(max-width: 850px) 406px,
|
||||||
(max-width: 1000px) 812px,
|
(max-width: 1000px) 812px,
|
||||||
1624px"
|
1624px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ book.image }}?width=1624&aspect_ratio=.65:1"
|
src="https://cdn.coryd.dev{{ book.image }}?width=1624&aspect_ratio=.65:1"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -21,16 +21,16 @@ schema: artist
|
||||||
<div class="artist-display">
|
<div class="artist-display">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ artist.image }}?w=200&aspect_ratio=1:1 200w,
|
https://cdn.coryd.dev{{ artist.image }}?w=200&aspect_ratio=1:1 200w,
|
||||||
https://coryd-dev.b-cdn.net{{ artist.image }}?w=400&aspect_ratio=1:1 400w,
|
https://cdn.coryd.dev{{ artist.image }}?w=400&aspect_ratio=1:1 400w,
|
||||||
https://coryd-dev.b-cdn.net{{ artist.image }}?w=800&aspect_ratio=1:1 800w,
|
https://cdn.coryd.dev{{ artist.image }}?w=800&aspect_ratio=1:1 800w,
|
||||||
https://coryd-dev.b-cdn.net{{ artist.image }}?w=1200&aspect_ratio=1:1 1200w
|
https://cdn.coryd.dev{{ artist.image }}?w=1200&aspect_ratio=1:1 1200w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 200px,
|
sizes="(max-width: 450px) 200px,
|
||||||
(max-width: 850px) 400px,
|
(max-width: 850px) 400px,
|
||||||
(max-width: 1000px) 800px,
|
(max-width: 1000px) 800px,
|
||||||
1200px"
|
1200px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ artist.image }}?w=1200&aspect_ratio=1:1"
|
src="https://cdn.coryd.dev{{ artist.image }}?w=1200&aspect_ratio=1:1"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
|
|
|
@ -14,16 +14,16 @@ schema: movie
|
||||||
<article class="watching-focus">
|
<article class="watching-focus">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
||||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 256px,
|
sizes="(max-width: 450px) 256px,
|
||||||
(max-width: 850px) 512px,
|
(max-width: 850px) 512px,
|
||||||
(max-width: 1000px) 1024px,
|
(max-width: 1000px) 1024px,
|
||||||
2048px"
|
2048px"
|
||||||
src="https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
src="https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
class="image-banner"
|
class="image-banner"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
|
|
|
@ -15,16 +15,16 @@ schema: show
|
||||||
<article class="watching-focus">
|
<article class="watching-focus">
|
||||||
<img
|
<img
|
||||||
srcset="
|
srcset="
|
||||||
https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=256 256w,
|
https://cdn.coryd.dev/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=256 256w,
|
||||||
https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=512 512w,
|
https://cdn.coryd.dev/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=512 512w,
|
||||||
https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=1024 1024w,
|
https://cdn.coryd.dev/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=1024 1024w,
|
||||||
https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=2048 2048w
|
https://cdn.coryd.dev/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=2048 2048w
|
||||||
"
|
"
|
||||||
sizes="(max-width: 450px) 256px,
|
sizes="(max-width: 450px) 256px,
|
||||||
(max-width: 850px) 512px,
|
(max-width: 850px) 512px,
|
||||||
(max-width: 1000px) 1024px,
|
(max-width: 1000px) 1024px,
|
||||||
2048px"
|
2048px"
|
||||||
src="https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=2048"
|
src="https://cdn.coryd.dev/shows/backdrops/backdrop-{{ show.tmdb_id }}.jpg?aspect_ratio=1:.5625&width=2048"
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
class="image-banner"
|
class="image-banner"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Save
|
title: Referrals
|
||||||
layout: default
|
layout: default
|
||||||
permalink: /save.html
|
permalink: /referrals.html
|
||||||
description: Save a little bit on services that I also use.
|
description: Save a little bit on services that I also use.
|
||||||
---
|
---
|
||||||
<h2 class="page-header">{{ title }}</h2>
|
<h2 class="page-header">{{ title }}</h2>
|
5
workers/analytics/README.md
Normal file
5
workers/analytics/README.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# analytics worker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wrangler deploy --env production
|
||||||
|
```
|
36
workers/analytics/index.js
Normal file
36
workers/analytics/index.js
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
const ScriptName = '/js/script.js';
|
||||||
|
const Endpoint = '/api/event';
|
||||||
|
|
||||||
|
const ScriptWithoutExtension = ScriptName.replace('.js', '')
|
||||||
|
|
||||||
|
addEventListener('fetch', event => {
|
||||||
|
event.passThroughOnException();
|
||||||
|
event.respondWith(handleRequest(event));
|
||||||
|
})
|
||||||
|
|
||||||
|
async function handleRequest(event) {
|
||||||
|
const pathname = new URL(event.request.url).pathname
|
||||||
|
const [baseUri, ...extensions] = pathname.split('.')
|
||||||
|
|
||||||
|
if (baseUri.endsWith(ScriptWithoutExtension)) {
|
||||||
|
return getScript(event, extensions)
|
||||||
|
} else if (pathname.endsWith(Endpoint)) {
|
||||||
|
return postData(event)
|
||||||
|
}
|
||||||
|
return new Response(null, { status: 404 })
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getScript(event, extensions) {
|
||||||
|
let response = await caches.default.match(event.request);
|
||||||
|
if (!response) {
|
||||||
|
response = await fetch("https://plausible.io/js/plausible." + extensions.join("."));
|
||||||
|
event.waitUntil(caches.default.put(event.request, response.clone()));
|
||||||
|
}
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function postData(event) {
|
||||||
|
const request = new Request(event.request);
|
||||||
|
request.headers.delete('cookie');
|
||||||
|
return await fetch("https://plausible.io/api/event", request);
|
||||||
|
}
|
13
workers/analytics/wrangler.toml
Normal file
13
workers/analytics/wrangler.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name = "analytics-worker"
|
||||||
|
main = "./index.js"
|
||||||
|
compatibility_date = "2023-01-01"
|
||||||
|
|
||||||
|
account_id = ""
|
||||||
|
workers_dev = true
|
||||||
|
|
||||||
|
[env.production]
|
||||||
|
name = "analytics-worker-production"
|
||||||
|
routes = [
|
||||||
|
{ pattern = "coryd.dev/js/*", zone_id = "" },
|
||||||
|
{ pattern = "coryd.dev/api/event", zone_id = "" }
|
||||||
|
]
|
8
workers/contact/README.md
Normal file
8
workers/contact/README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# contact worker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wrangler deploy --env production
|
||||||
|
|
||||||
|
wrangler secret put SUPABASE_URL --env production
|
||||||
|
wrangler secret put SUPABASE_KEY --env production
|
||||||
|
```
|
57
workers/contact/index.js
Normal file
57
workers/contact/index.js
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
import { createClient } from '@supabase/supabase-js';
|
||||||
|
|
||||||
|
const RATE_LIMIT = 5;
|
||||||
|
const TIME_FRAME = 60 * 60 * 1000;
|
||||||
|
|
||||||
|
const ipSubmissions = new Map();
|
||||||
|
|
||||||
|
export default {
|
||||||
|
async fetch(request, env) {
|
||||||
|
if (request.method === 'POST') {
|
||||||
|
const ip = request.headers.get('CF-Connecting-IP') || request.headers.get('X-Forwarded-For') || request.headers.get('Remote-Addr');
|
||||||
|
const currentTime = Date.now();
|
||||||
|
|
||||||
|
if (!ipSubmissions.has(ip)) {
|
||||||
|
ipSubmissions.set(ip, []);
|
||||||
|
}
|
||||||
|
|
||||||
|
const submissions = ipSubmissions.get(ip).filter(time => currentTime - time < TIME_FRAME);
|
||||||
|
|
||||||
|
if (submissions.length >= RATE_LIMIT) {
|
||||||
|
return new Response('Rate limit exceeded', { status: 429 });
|
||||||
|
}
|
||||||
|
|
||||||
|
submissions.push(currentTime);
|
||||||
|
ipSubmissions.set(ip, submissions);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const formData = await request.formData();
|
||||||
|
const name = formData.get('name');
|
||||||
|
const email = formData.get('email');
|
||||||
|
const message = formData.get('message');
|
||||||
|
const hpName = formData.get('hp_name');
|
||||||
|
|
||||||
|
// check the honeypot field
|
||||||
|
if (hpName) return new Response('Spam detected', { status: 400 });
|
||||||
|
|
||||||
|
// validate input
|
||||||
|
if (!name || !email || !message) return new Response('Invalid input', { status: 400 });
|
||||||
|
|
||||||
|
const supabaseUrl = env.SUPABASE_URL;
|
||||||
|
const supabaseKey = env.SUPABASE_KEY;
|
||||||
|
const supabase = createClient(supabaseUrl, supabaseKey);
|
||||||
|
const { error } = await supabase.from('contacts').insert([
|
||||||
|
{ name, email, message, replied: false }
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (error) throw error;
|
||||||
|
|
||||||
|
return Response.redirect('https://coryd.dev/contact/success', 303);
|
||||||
|
} catch (error) {
|
||||||
|
return new Response(error.message, { status: 500 });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return new Response('Method not allowed', { status: 405 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
159
workers/contact/package-lock.json
generated
Normal file
159
workers/contact/package-lock.json
generated
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
{
|
||||||
|
"name": "contact-worker",
|
||||||
|
"lockfileVersion": 3,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {
|
||||||
|
"": {
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/supabase-js": "^2.43.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/auth-js": {
|
||||||
|
"version": "2.64.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.64.2.tgz",
|
||||||
|
"integrity": "sha512-s+lkHEdGiczDrzXJ1YWt2y3bxRi+qIUnXcgkpLSrId7yjBeaXBFygNjTaoZLG02KNcYwbuZ9qkEIqmj2hF7svw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/functions-js": {
|
||||||
|
"version": "2.3.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.3.1.tgz",
|
||||||
|
"integrity": "sha512-QyzNle/rVzlOi4BbVqxLSH828VdGY1RElqGFAj+XeVypj6+PVtMlD21G8SDnsPQDtlqqTtoGRgdMlQZih5hTuw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/node-fetch": {
|
||||||
|
"version": "2.6.15",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/node-fetch/-/node-fetch-2.6.15.tgz",
|
||||||
|
"integrity": "sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"whatwg-url": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "4.x || >=6.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/postgrest-js": {
|
||||||
|
"version": "1.15.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-1.15.2.tgz",
|
||||||
|
"integrity": "sha512-9/7pUmXExvGuEK1yZhVYXPZnLEkDTwxgMQHXLrN5BwPZZm4iUCL1YEyep/Z2lIZah8d8M433mVAUEGsihUj5KQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/realtime-js": {
|
||||||
|
"version": "2.9.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.9.5.tgz",
|
||||||
|
"integrity": "sha512-TEHlGwNGGmKPdeMtca1lFTYCedrhTAv3nZVoSjrKQ+wkMmaERuCe57zkC5KSWFzLYkb5FVHW8Hrr+PX1DDwplQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14",
|
||||||
|
"@types/phoenix": "^1.5.4",
|
||||||
|
"@types/ws": "^8.5.10",
|
||||||
|
"ws": "^8.14.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/storage-js": {
|
||||||
|
"version": "2.5.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.5.5.tgz",
|
||||||
|
"integrity": "sha512-OpLoDRjFwClwc2cjTJZG8XviTiQH4Ik8sCiMK5v7et0MDu2QlXjCAW3ljxJB5+z/KazdMOTnySi+hysxWUPu3w==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/supabase-js": {
|
||||||
|
"version": "2.43.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.43.4.tgz",
|
||||||
|
"integrity": "sha512-/pLPaxiIsn5Vaz3s32HC6O/VNwfeddnzS0bZRpOW0AKcPuXroD8pT9G8mpiBlZfpKsMmq6k7tlhW7Sr1PAQ1lw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/auth-js": "2.64.2",
|
||||||
|
"@supabase/functions-js": "2.3.1",
|
||||||
|
"@supabase/node-fetch": "2.6.15",
|
||||||
|
"@supabase/postgrest-js": "1.15.2",
|
||||||
|
"@supabase/realtime-js": "2.9.5",
|
||||||
|
"@supabase/storage-js": "2.5.5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/node": {
|
||||||
|
"version": "20.14.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz",
|
||||||
|
"integrity": "sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"undici-types": "~5.26.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/phoenix": {
|
||||||
|
"version": "1.6.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.6.4.tgz",
|
||||||
|
"integrity": "sha512-B34A7uot1Cv0XtaHRYDATltAdKx0BvVKNgYNqE4WjtPUa4VQJM7kxeXcVKaH+KS+kCmZ+6w+QaUdcljiheiBJA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/@types/ws": {
|
||||||
|
"version": "8.5.10",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz",
|
||||||
|
"integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tr46": {
|
||||||
|
"version": "0.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
||||||
|
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/undici-types": {
|
||||||
|
"version": "5.26.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
||||||
|
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/webidl-conversions": {
|
||||||
|
"version": "3.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
||||||
|
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
||||||
|
"license": "BSD-2-Clause"
|
||||||
|
},
|
||||||
|
"node_modules/whatwg-url": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"tr46": "~0.0.3",
|
||||||
|
"webidl-conversions": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/ws": {
|
||||||
|
"version": "8.17.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz",
|
||||||
|
"integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"bufferutil": "^4.0.1",
|
||||||
|
"utf-8-validate": ">=5.0.2"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"bufferutil": {
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
"utf-8-validate": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
5
workers/contact/package.json
Normal file
5
workers/contact/package.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/supabase-js": "^2.43.4"
|
||||||
|
}
|
||||||
|
}
|
12
workers/contact/wrangler.toml
Normal file
12
workers/contact/wrangler.toml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
name = "contact-form-worker"
|
||||||
|
main = "./index.js"
|
||||||
|
compatibility_date = "2023-01-01"
|
||||||
|
|
||||||
|
account_id = ""
|
||||||
|
workers_dev = true
|
||||||
|
|
||||||
|
[env.production]
|
||||||
|
name = "contact-form-worker-production"
|
||||||
|
routes = [
|
||||||
|
{ pattern = "coryd.dev/api/contact", zone_id = "" }
|
||||||
|
]
|
7
workers/now-playing/README.md
Normal file
7
workers/now-playing/README.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# now-playing worker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wrangler deploy --env production
|
||||||
|
wrangler secret put SUPABASE_URL --env production
|
||||||
|
wrangler secret put SUPABASE_KEY --env production
|
||||||
|
```
|
85
workers/now-playing/index.js
Normal file
85
workers/now-playing/index.js
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
import { createClient } from '@supabase/supabase-js';
|
||||||
|
import slugify from 'slugify';
|
||||||
|
|
||||||
|
const sanitizeMediaString = (str) => {
|
||||||
|
const sanitizedString = str.normalize('NFD').replace(/[\u0300-\u036f\u2010—\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '');
|
||||||
|
|
||||||
|
return slugify(sanitizedString, {
|
||||||
|
replacement: '-',
|
||||||
|
remove: /[#,&,+()$~%.'":*?<>{}]/g,
|
||||||
|
lower: true,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const regionNames = new Intl.DisplayNames(['en'], { type: 'region' });
|
||||||
|
const getCountryName = (countryCode) => regionNames.of(countryCode.trim()) || countryCode.trim();
|
||||||
|
const parseCountryField = (countryField) => {
|
||||||
|
if (!countryField) return null;
|
||||||
|
|
||||||
|
const delimiters = [',', '/', '&', 'and'];
|
||||||
|
let countries = [countryField];
|
||||||
|
|
||||||
|
delimiters.forEach(delimiter => {
|
||||||
|
countries = countries.flatMap(country => country.split(delimiter));
|
||||||
|
});
|
||||||
|
|
||||||
|
return countries.map(getCountryName).join(', ');
|
||||||
|
};
|
||||||
|
|
||||||
|
const fetchGenreById = async (supabase, genreId) => {
|
||||||
|
const { data, error } = await supabase
|
||||||
|
.from('genres')
|
||||||
|
.select('emoji')
|
||||||
|
.eq('id', genreId)
|
||||||
|
.single();
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
console.error('Error fetching genre:', error);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return data.emoji;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
async fetch(request, env) {
|
||||||
|
const SUPABASE_URL = env.SUPABASE_URL;
|
||||||
|
const SUPABASE_KEY = env.SUPABASE_KEY;
|
||||||
|
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY);
|
||||||
|
|
||||||
|
const { data, error } = await supabase
|
||||||
|
.from('listens')
|
||||||
|
.select(`
|
||||||
|
track_name,
|
||||||
|
artist_name,
|
||||||
|
listened_at,
|
||||||
|
artists (mbid, genres, country, emoji)
|
||||||
|
`)
|
||||||
|
.order('listened_at', { ascending: false })
|
||||||
|
.range(0, 1);
|
||||||
|
|
||||||
|
const headers = {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
"Cache-Control": "public, s-maxage=360, stale-while-revalidate=1080",
|
||||||
|
};
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
console.error('Error fetching data:', error);
|
||||||
|
return new Response(JSON.stringify({ error: "Failed to fetch the latest track" }), { headers });
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.length === 0) {
|
||||||
|
return new Response(JSON.stringify({ message: "No recent tracks found" }), { headers });
|
||||||
|
}
|
||||||
|
|
||||||
|
const scrobbleData = data[0];
|
||||||
|
const genreEmoji = await fetchGenreById(supabase, scrobbleData.artists.genres);
|
||||||
|
const emoji = scrobbleData.artists.emoji || genreEmoji;
|
||||||
|
|
||||||
|
return new Response(JSON.stringify({
|
||||||
|
content: `${emoji || '🎧'} ${scrobbleData.track_name} by <a href="https://coryd.dev/music/artists/${sanitizeMediaString(scrobbleData.artist_name)}-${sanitizeMediaString(parseCountryField(scrobbleData.artists.country))}">${
|
||||||
|
scrobbleData.artist_name
|
||||||
|
}</a>`,
|
||||||
|
}), { headers });
|
||||||
|
}
|
||||||
|
};
|
169
workers/now-playing/package-lock.json
generated
Normal file
169
workers/now-playing/package-lock.json
generated
Normal file
|
@ -0,0 +1,169 @@
|
||||||
|
{
|
||||||
|
"name": "now-playing-worker",
|
||||||
|
"lockfileVersion": 3,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {
|
||||||
|
"": {
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/supabase-js": "^2.43.4",
|
||||||
|
"slugify": "^1.6.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/auth-js": {
|
||||||
|
"version": "2.64.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.64.2.tgz",
|
||||||
|
"integrity": "sha512-s+lkHEdGiczDrzXJ1YWt2y3bxRi+qIUnXcgkpLSrId7yjBeaXBFygNjTaoZLG02KNcYwbuZ9qkEIqmj2hF7svw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/functions-js": {
|
||||||
|
"version": "2.3.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.3.1.tgz",
|
||||||
|
"integrity": "sha512-QyzNle/rVzlOi4BbVqxLSH828VdGY1RElqGFAj+XeVypj6+PVtMlD21G8SDnsPQDtlqqTtoGRgdMlQZih5hTuw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/node-fetch": {
|
||||||
|
"version": "2.6.15",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/node-fetch/-/node-fetch-2.6.15.tgz",
|
||||||
|
"integrity": "sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"whatwg-url": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "4.x || >=6.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/postgrest-js": {
|
||||||
|
"version": "1.15.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-1.15.2.tgz",
|
||||||
|
"integrity": "sha512-9/7pUmXExvGuEK1yZhVYXPZnLEkDTwxgMQHXLrN5BwPZZm4iUCL1YEyep/Z2lIZah8d8M433mVAUEGsihUj5KQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/realtime-js": {
|
||||||
|
"version": "2.9.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.9.5.tgz",
|
||||||
|
"integrity": "sha512-TEHlGwNGGmKPdeMtca1lFTYCedrhTAv3nZVoSjrKQ+wkMmaERuCe57zkC5KSWFzLYkb5FVHW8Hrr+PX1DDwplQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14",
|
||||||
|
"@types/phoenix": "^1.5.4",
|
||||||
|
"@types/ws": "^8.5.10",
|
||||||
|
"ws": "^8.14.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/storage-js": {
|
||||||
|
"version": "2.5.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.5.5.tgz",
|
||||||
|
"integrity": "sha512-OpLoDRjFwClwc2cjTJZG8XviTiQH4Ik8sCiMK5v7et0MDu2QlXjCAW3ljxJB5+z/KazdMOTnySi+hysxWUPu3w==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/supabase-js": {
|
||||||
|
"version": "2.43.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.43.4.tgz",
|
||||||
|
"integrity": "sha512-/pLPaxiIsn5Vaz3s32HC6O/VNwfeddnzS0bZRpOW0AKcPuXroD8pT9G8mpiBlZfpKsMmq6k7tlhW7Sr1PAQ1lw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/auth-js": "2.64.2",
|
||||||
|
"@supabase/functions-js": "2.3.1",
|
||||||
|
"@supabase/node-fetch": "2.6.15",
|
||||||
|
"@supabase/postgrest-js": "1.15.2",
|
||||||
|
"@supabase/realtime-js": "2.9.5",
|
||||||
|
"@supabase/storage-js": "2.5.5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/node": {
|
||||||
|
"version": "20.14.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz",
|
||||||
|
"integrity": "sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"undici-types": "~5.26.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/phoenix": {
|
||||||
|
"version": "1.6.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.6.4.tgz",
|
||||||
|
"integrity": "sha512-B34A7uot1Cv0XtaHRYDATltAdKx0BvVKNgYNqE4WjtPUa4VQJM7kxeXcVKaH+KS+kCmZ+6w+QaUdcljiheiBJA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/@types/ws": {
|
||||||
|
"version": "8.5.10",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz",
|
||||||
|
"integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/slugify": {
|
||||||
|
"version": "1.6.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz",
|
||||||
|
"integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tr46": {
|
||||||
|
"version": "0.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
||||||
|
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/undici-types": {
|
||||||
|
"version": "5.26.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
||||||
|
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/webidl-conversions": {
|
||||||
|
"version": "3.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
||||||
|
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
||||||
|
"license": "BSD-2-Clause"
|
||||||
|
},
|
||||||
|
"node_modules/whatwg-url": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"tr46": "~0.0.3",
|
||||||
|
"webidl-conversions": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/ws": {
|
||||||
|
"version": "8.17.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz",
|
||||||
|
"integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"bufferutil": "^4.0.1",
|
||||||
|
"utf-8-validate": ">=5.0.2"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"bufferutil": {
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
"utf-8-validate": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
6
workers/now-playing/package.json
Normal file
6
workers/now-playing/package.json
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/supabase-js": "^2.43.4",
|
||||||
|
"slugify": "^1.6.6"
|
||||||
|
}
|
||||||
|
}
|
12
workers/now-playing/wrangler.toml
Normal file
12
workers/now-playing/wrangler.toml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
name = "now-playing-worker"
|
||||||
|
main = "./index.js" # Specify the entry point
|
||||||
|
compatibility_date = "2023-01-01"
|
||||||
|
|
||||||
|
account_id = ""
|
||||||
|
workers_dev = true
|
||||||
|
|
||||||
|
[env.production]
|
||||||
|
name = "now-playing-worker-production"
|
||||||
|
routes = [
|
||||||
|
{ pattern = "coryd.dev/api/now-playing", zone_id = "" }
|
||||||
|
]
|
7
workers/rebuild/README.md
Normal file
7
workers/rebuild/README.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# rebuild worker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wrangler deploy --env production
|
||||||
|
|
||||||
|
wrangler secret put DEPLOY_HOOK_URL --env production
|
||||||
|
```
|
17
workers/rebuild/index.js
Normal file
17
workers/rebuild/index.js
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
export default {
|
||||||
|
async scheduled(event, env, ctx) {
|
||||||
|
const deployHookUrl = env.DEPLOY_HOOK_URL;
|
||||||
|
|
||||||
|
const response = await fetch(deployHookUrl, {
|
||||||
|
method: 'POST',
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const errorText = await response.text();
|
||||||
|
console.error(`Error triggering deploy: ${response.statusText}`, errorText);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('Deploy triggered successfully');
|
||||||
|
}
|
||||||
|
};
|
10
workers/rebuild/wrangler.toml
Normal file
10
workers/rebuild/wrangler.toml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
name = "scheduled-rebuild-worker"
|
||||||
|
main = "./index.js"
|
||||||
|
compatibility_date = "2023-01-01"
|
||||||
|
|
||||||
|
account_id = ""
|
||||||
|
workers_dev = true
|
||||||
|
|
||||||
|
[env.production]
|
||||||
|
name = "scheduled-rebuild-worker-production"
|
||||||
|
triggers = {crons = ["0 * * * *"]}
|
8
workers/scrobble/README.md
Normal file
8
workers/scrobble/README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Scrobble worker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wrangler deploy --env production
|
||||||
|
wrangler secret put SUPABASE_URL --env production
|
||||||
|
wrangler secret put SUPABASE_KEY --env production
|
||||||
|
wrangler secret put ACCOUNT_ID_PLEX --env production
|
||||||
|
```
|
129
workers/scrobble/index.js
Normal file
129
workers/scrobble/index.js
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
import { createClient } from '@supabase/supabase-js';
|
||||||
|
import { DateTime } from 'luxon';
|
||||||
|
import slugify from 'slugify';
|
||||||
|
|
||||||
|
const sanitizeMediaString = (str) => {
|
||||||
|
const sanitizedString = str.normalize('NFD').replace(/[\u0300-\u036f\u2010\-\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '');
|
||||||
|
return slugify(sanitizedString, {
|
||||||
|
replacement: '-',
|
||||||
|
remove: /[#,&,+()$~%.'":*?<>{}]/g,
|
||||||
|
lower: true,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
async fetch(request, env) {
|
||||||
|
const SUPABASE_URL = env.SUPABASE_URL;
|
||||||
|
const SUPABASE_KEY = env.SUPABASE_KEY;
|
||||||
|
const ACCOUNT_ID_PLEX = env.ACCOUNT_ID_PLEX;
|
||||||
|
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY);
|
||||||
|
|
||||||
|
const url = new URL(request.url);
|
||||||
|
const params = url.searchParams;
|
||||||
|
const id = params.get('id');
|
||||||
|
|
||||||
|
if (!id) {
|
||||||
|
return new Response(JSON.stringify({ status: 'Bad request' }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
if (id !== ACCOUNT_ID_PLEX) {
|
||||||
|
return new Response(JSON.stringify({ status: 'Forbidden' }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
|
||||||
|
const contentType = request.headers.get("Content-Type") || '';
|
||||||
|
if (!contentType.includes("multipart/form-data")) {
|
||||||
|
return new Response(JSON.stringify({ status: 'Bad request', message: 'Invalid Content-Type. Expected multipart/form-data.' }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const data = await request.formData();
|
||||||
|
const payload = JSON.parse(data.get('payload'));
|
||||||
|
|
||||||
|
if (payload?.event === 'media.scrobble') {
|
||||||
|
const artist = payload['Metadata']['grandparentTitle'];
|
||||||
|
const album = payload['Metadata']['parentTitle'];
|
||||||
|
const track = payload['Metadata']['title'];
|
||||||
|
const listenedAt = Math.floor(DateTime.now().toSeconds());
|
||||||
|
const artistKey = sanitizeMediaString(artist);
|
||||||
|
const albumKey = `${artistKey}-${sanitizeMediaString(album)}`;
|
||||||
|
|
||||||
|
let { data: artistData, error: artistError } = await supabase
|
||||||
|
.from('artists')
|
||||||
|
.select('*')
|
||||||
|
.ilike('name_string', artist)
|
||||||
|
.single();
|
||||||
|
|
||||||
|
if (artistError && artistError.code === 'PGRST116') {
|
||||||
|
const { error: insertArtistError } = await supabase.from('artists').insert([
|
||||||
|
{
|
||||||
|
mbid: null,
|
||||||
|
image: `/artists/${artistKey}.jpg`,
|
||||||
|
key: artistKey,
|
||||||
|
name: artist,
|
||||||
|
tentative: true
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (insertArtistError) {
|
||||||
|
return new Response(JSON.stringify({ status: 'error', message: insertArtistError.message }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
|
||||||
|
({ data: artistData, error: artistError } = await supabase
|
||||||
|
.from('artists')
|
||||||
|
.select('*')
|
||||||
|
.ilike('name_string', artist)
|
||||||
|
.single());
|
||||||
|
} else if (artistError) {
|
||||||
|
return new Response(JSON.stringify({ status: 'error', message: artistError.message }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
|
||||||
|
let { data: albumData, error: albumError } = await supabase
|
||||||
|
.from('albums')
|
||||||
|
.select('*')
|
||||||
|
.ilike('key', albumKey)
|
||||||
|
.single();
|
||||||
|
|
||||||
|
if (albumError && albumError.code === 'PGRST116') {
|
||||||
|
const { error: insertAlbumError } = await supabase.from('albums').insert([
|
||||||
|
{
|
||||||
|
mbid: null,
|
||||||
|
image: `/albums/${albumKey}.jpg`,
|
||||||
|
key: albumKey,
|
||||||
|
name: album,
|
||||||
|
tentative: true
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (insertAlbumError) {
|
||||||
|
return new Response(JSON.stringify({ status: 'error', message: insertAlbumError.message }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
|
||||||
|
({ data: albumData, error: albumError } = await supabase
|
||||||
|
.from('albums')
|
||||||
|
.select('*')
|
||||||
|
.ilike('key', albumKey)
|
||||||
|
.single());
|
||||||
|
} else if (albumError) {
|
||||||
|
return new Response(JSON.stringify({ status: 'error', message: albumError.message }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
|
||||||
|
const { error: listenError } = await supabase.from('listens').insert([
|
||||||
|
{
|
||||||
|
artist_name: artistData.name_string,
|
||||||
|
album_name: albumData.name,
|
||||||
|
track_name: track,
|
||||||
|
listened_at: listenedAt,
|
||||||
|
album_key: albumKey
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (listenError) {
|
||||||
|
return new Response(JSON.stringify({ status: 'error', message: listenError.message }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Response(JSON.stringify({ status: 'success' }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
} catch (e) {
|
||||||
|
return new Response(JSON.stringify({ status: 'error', message: e.message }), { headers: { "Content-Type": "application/json" } });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
179
workers/scrobble/package-lock.json
generated
Normal file
179
workers/scrobble/package-lock.json
generated
Normal file
|
@ -0,0 +1,179 @@
|
||||||
|
{
|
||||||
|
"name": "scrobble-worker",
|
||||||
|
"lockfileVersion": 3,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {
|
||||||
|
"": {
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/supabase-js": "^2.43.4",
|
||||||
|
"luxon": "^3.4.4",
|
||||||
|
"slugify": "^1.6.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/auth-js": {
|
||||||
|
"version": "2.64.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.64.2.tgz",
|
||||||
|
"integrity": "sha512-s+lkHEdGiczDrzXJ1YWt2y3bxRi+qIUnXcgkpLSrId7yjBeaXBFygNjTaoZLG02KNcYwbuZ9qkEIqmj2hF7svw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/functions-js": {
|
||||||
|
"version": "2.3.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.3.1.tgz",
|
||||||
|
"integrity": "sha512-QyzNle/rVzlOi4BbVqxLSH828VdGY1RElqGFAj+XeVypj6+PVtMlD21G8SDnsPQDtlqqTtoGRgdMlQZih5hTuw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/node-fetch": {
|
||||||
|
"version": "2.6.15",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/node-fetch/-/node-fetch-2.6.15.tgz",
|
||||||
|
"integrity": "sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"whatwg-url": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "4.x || >=6.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/postgrest-js": {
|
||||||
|
"version": "1.15.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-1.15.2.tgz",
|
||||||
|
"integrity": "sha512-9/7pUmXExvGuEK1yZhVYXPZnLEkDTwxgMQHXLrN5BwPZZm4iUCL1YEyep/Z2lIZah8d8M433mVAUEGsihUj5KQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/realtime-js": {
|
||||||
|
"version": "2.9.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.9.5.tgz",
|
||||||
|
"integrity": "sha512-TEHlGwNGGmKPdeMtca1lFTYCedrhTAv3nZVoSjrKQ+wkMmaERuCe57zkC5KSWFzLYkb5FVHW8Hrr+PX1DDwplQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14",
|
||||||
|
"@types/phoenix": "^1.5.4",
|
||||||
|
"@types/ws": "^8.5.10",
|
||||||
|
"ws": "^8.14.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/storage-js": {
|
||||||
|
"version": "2.5.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.5.5.tgz",
|
||||||
|
"integrity": "sha512-OpLoDRjFwClwc2cjTJZG8XviTiQH4Ik8sCiMK5v7et0MDu2QlXjCAW3ljxJB5+z/KazdMOTnySi+hysxWUPu3w==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/node-fetch": "^2.6.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@supabase/supabase-js": {
|
||||||
|
"version": "2.43.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.43.4.tgz",
|
||||||
|
"integrity": "sha512-/pLPaxiIsn5Vaz3s32HC6O/VNwfeddnzS0bZRpOW0AKcPuXroD8pT9G8mpiBlZfpKsMmq6k7tlhW7Sr1PAQ1lw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/auth-js": "2.64.2",
|
||||||
|
"@supabase/functions-js": "2.3.1",
|
||||||
|
"@supabase/node-fetch": "2.6.15",
|
||||||
|
"@supabase/postgrest-js": "1.15.2",
|
||||||
|
"@supabase/realtime-js": "2.9.5",
|
||||||
|
"@supabase/storage-js": "2.5.5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/node": {
|
||||||
|
"version": "20.14.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz",
|
||||||
|
"integrity": "sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"undici-types": "~5.26.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/phoenix": {
|
||||||
|
"version": "1.6.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.6.4.tgz",
|
||||||
|
"integrity": "sha512-B34A7uot1Cv0XtaHRYDATltAdKx0BvVKNgYNqE4WjtPUa4VQJM7kxeXcVKaH+KS+kCmZ+6w+QaUdcljiheiBJA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/@types/ws": {
|
||||||
|
"version": "8.5.10",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz",
|
||||||
|
"integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/luxon": {
|
||||||
|
"version": "3.4.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz",
|
||||||
|
"integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=12"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/slugify": {
|
||||||
|
"version": "1.6.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz",
|
||||||
|
"integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tr46": {
|
||||||
|
"version": "0.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
||||||
|
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/undici-types": {
|
||||||
|
"version": "5.26.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
||||||
|
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/webidl-conversions": {
|
||||||
|
"version": "3.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
||||||
|
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
||||||
|
"license": "BSD-2-Clause"
|
||||||
|
},
|
||||||
|
"node_modules/whatwg-url": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"tr46": "~0.0.3",
|
||||||
|
"webidl-conversions": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/ws": {
|
||||||
|
"version": "8.17.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz",
|
||||||
|
"integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"bufferutil": "^4.0.1",
|
||||||
|
"utf-8-validate": ">=5.0.2"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"bufferutil": {
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
"utf-8-validate": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
7
workers/scrobble/package.json
Normal file
7
workers/scrobble/package.json
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"@supabase/supabase-js": "^2.43.4",
|
||||||
|
"luxon": "^3.4.4",
|
||||||
|
"slugify": "^1.6.6"
|
||||||
|
}
|
||||||
|
}
|
12
workers/scrobble/wrangler.toml
Normal file
12
workers/scrobble/wrangler.toml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
name = "scrobble-worker"
|
||||||
|
main = "./index.js"
|
||||||
|
compatibility_date = "2023-01-01"
|
||||||
|
|
||||||
|
account_id = ""
|
||||||
|
workers_dev = true
|
||||||
|
|
||||||
|
[env.production]
|
||||||
|
name = "scrobble-worker-production"
|
||||||
|
routes = [
|
||||||
|
{ pattern = "coryd.dev/api/scrobble*", zone_id = "" }
|
||||||
|
]
|
Reference in a new issue