summaryrefslogtreecommitdiff
path: root/website/src/actions/otp
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-01-22 20:45:13 +0000
committerJoe Carstairs <me@joeac.net>2026-01-22 20:45:13 +0000
commit1ab35815d76af3b16d8d94eac39a0e979bc58b20 (patch)
tree70b299d1d277bdf4a91a0a4cd4cefad1566437dd /website/src/actions/otp
parentbeb9a2651267fc9feb25b62d9366963077135328 (diff)
stop sending OTPs after MAX_DAILY_EMAILS hit
Diffstat (limited to 'website/src/actions/otp')
-rw-r--r--website/src/actions/otp/send-otp.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/website/src/actions/otp/send-otp.ts b/website/src/actions/otp/send-otp.ts
index 6f017af..67df483 100644
--- a/website/src/actions/otp/send-otp.ts
+++ b/website/src/actions/otp/send-otp.ts
@@ -1,8 +1,9 @@
import crypto from "node:crypto";
import { z } from "astro/zod";
import { defineAction } from "astro:actions";
-import { db, Otp } from "astro:db";
+import { db, gte, Otp, SentEmails } from "astro:db";
import { transporter } from "../sendmail";
+import { MAX_DAILY_EMAILS } from "astro:env/server";
export default defineAction({
input: z.object({
@@ -23,6 +24,16 @@ async function sendOtp({ email, name }: OtpParams) {
const otp = crypto.randomBytes(3).toString("hex").toLocaleUpperCase();
const otpPretty = `${otp.slice(0, 3)}-${otp.slice(3)}`;
+ const emailsSentLast24Hours = await db.$count(
+ SentEmails,
+ gte(SentEmails.sentAt, Date.now() - 1000 * 60 * 60 * 24),
+ );
+ if (emailsSentLast24Hours > MAX_DAILY_EMAILS) {
+ throw new Error(
+ `${emailsSentLast24Hours} emails have been sent in the last 24 hours, but the max daily load is ${MAX_DAILY_EMAILS}.`,
+ );
+ }
+
const info = await transporter.sendMail({
from: `"Joe Carstairs" <me@joeac.net>`,
to: `${name ? `"${name}" ` : ""}<${email}>`,