From 11083b2ade47e72f845d2dd9c40ac818505fa477 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 24 May 2023 10:29:35 -0400 Subject: [PATCH] secondary domain redirect --- static/functions/_middleware.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/static/functions/_middleware.js b/static/functions/_middleware.js index 37e6805..f7862c5 100644 --- a/static/functions/_middleware.js +++ b/static/functions/_middleware.js @@ -1,5 +1,19 @@ -async function goat_counter_analytics(context) { +async function redirect_secondary_domains(context) { + // Parse the request URL + let url = new URL(context.request.url); + // If the request is for any of the secondary domains, redirect to the primary domain + var secondary_domains = ['test.ewp.fyi', 'evan.pratten.ca', 'evan.warren.pratten.ca']; + if (secondary_domains.includes(url.hostname)) { + url.hostname = 'ewpratten.com'; + return Response.redirect(url, 302); + } + + // Otherwise, continue the request chain + return context.next(); +} + +async function goat_counter_analytics(context) { // We require some env vars to be set. If they are not, fail the request if (!context.env.GOAT_COUNTER_API_KEY) { return new Response('$GOAT_COUNTER_API_KEY is not set', { status: 500, headers: { 'Content-Type': 'text/plain' } }); @@ -48,4 +62,4 @@ async function goat_counter_analytics(context) { } // Chaining -export const onRequest = [goat_counter_analytics]; \ No newline at end of file +export const onRequest = [redirect_secondary_domains, goat_counter_analytics]; \ No newline at end of file