mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-10 08:58:31 +00:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { EmailLinkStrategy } from "@nichtsam/remix-auth-email-link";
|
|
import type { Authenticator } from "remix-auth";
|
|
import type { AuthUser } from "./authUser";
|
|
import { findOrCreateUser } from "~/models/user.server";
|
|
import { env } from "~/env.server";
|
|
import { sendMagicLinkEmail } from "~/services/email.server";
|
|
import { postAuthentication } from "./postAuth.server";
|
|
import { logger } from "./logger.service";
|
|
|
|
let secret = env.MAGIC_LINK_SECRET;
|
|
let APP_ORIGIN = env.APP_ORIGIN;
|
|
if (!secret) throw new Error("Missing MAGIC_LINK_SECRET env variable.");
|
|
|
|
const emailStrategy = new EmailLinkStrategy(
|
|
{
|
|
sendEmail: sendMagicLinkEmail,
|
|
secret,
|
|
magicEndpoint: `${APP_ORIGIN}/magic`,
|
|
},
|
|
async ({ email }: { email: string }) => {
|
|
logger.info("Magic link user authenticated", { email });
|
|
|
|
try {
|
|
const { user, isNewUser } = await findOrCreateUser({
|
|
email,
|
|
authenticationMethod: "MAGIC_LINK",
|
|
});
|
|
|
|
await postAuthentication({ user, isNewUser, loginMethod: "MAGIC_LINK" });
|
|
|
|
return { userId: user.id };
|
|
} catch (error) {
|
|
logger.debug("Magic link user failed to authenticate", {
|
|
error: JSON.stringify(error),
|
|
});
|
|
throw error;
|
|
}
|
|
},
|
|
);
|
|
|
|
export function addEmailLinkStrategy(authenticator: Authenticator<AuthUser>) {
|
|
authenticator.use(emailStrategy as any, "email-link");
|
|
}
|