mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import { TimeSpan, createDate } from "oslo";
|
|
import { generateRandomString, alphabet } from "oslo/crypto";
|
|
import db from "@server/db";
|
|
import { users, emailVerificationCodes } from "@server/db/schemas";
|
|
import { eq } from "drizzle-orm";
|
|
import { sendEmail } from "@server/emails";
|
|
import config from "@server/lib/config";
|
|
import { VerifyEmail } from "@server/emails/templates/VerifyEmailCode";
|
|
|
|
export async function sendEmailVerificationCode(
|
|
email: string,
|
|
userId: string
|
|
): Promise<void> {
|
|
const code = await generateEmailVerificationCode(userId, email);
|
|
|
|
await sendEmail(
|
|
VerifyEmail({
|
|
username: email,
|
|
verificationCode: code,
|
|
verifyLink: `${config.getRawConfig().app.dashboard_url}/auth/verify-email`
|
|
}),
|
|
{
|
|
to: email,
|
|
from: config.getNoReplyEmail(),
|
|
subject: "Verify your email address"
|
|
}
|
|
);
|
|
}
|
|
|
|
async function generateEmailVerificationCode(
|
|
userId: string,
|
|
email: string
|
|
): Promise<string> {
|
|
const code = generateRandomString(8, alphabet("0-9"));
|
|
await db.transaction(async (trx) => {
|
|
await trx
|
|
.delete(emailVerificationCodes)
|
|
.where(eq(emailVerificationCodes.userId, userId));
|
|
|
|
await trx.insert(emailVerificationCodes).values({
|
|
userId,
|
|
email,
|
|
code,
|
|
expiresAt: createDate(new TimeSpan(15, "m")).getTime()
|
|
});
|
|
});
|
|
return code;
|
|
}
|