This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/workers/contact/index.js
Cory Dransfeldt 88a4ec4acd
# 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
2024-06-09 11:16:24 -07:00

57 lines
No EOL
1.8 KiB
JavaScript

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 });
}
}
};