mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-10 08:48:29 +00:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import type { Authenticator } from "remix-auth";
|
|
import { GoogleStrategy } from "@coji/remix-auth-google";
|
|
import { env } from "~/env.server";
|
|
import { findOrCreateUser } from "~/models/user.server";
|
|
import type { AuthUser } from "./authUser";
|
|
import { postAuthentication } from "./postAuth.server";
|
|
import { logger } from "./logger.service";
|
|
|
|
export function addGoogleStrategy(
|
|
authenticator: Authenticator<AuthUser>,
|
|
clientId: string,
|
|
clientSecret: string,
|
|
) {
|
|
const googleStrategy = new GoogleStrategy(
|
|
{
|
|
clientId,
|
|
clientSecret,
|
|
redirectURI: `${env.LOGIN_ORIGIN}/auth/google/callback`,
|
|
},
|
|
async ({ tokens }) => {
|
|
const profile = await GoogleStrategy.userProfile(tokens);
|
|
const emails = profile.emails;
|
|
|
|
if (!emails) {
|
|
throw new Error("Google login requires an email address");
|
|
}
|
|
|
|
try {
|
|
logger.debug("Google login", {
|
|
emails,
|
|
profile,
|
|
});
|
|
|
|
const { user, isNewUser } = await findOrCreateUser({
|
|
email: emails[0].value,
|
|
authenticationMethod: "GOOGLE",
|
|
authenticationProfile: profile,
|
|
authenticationExtraParams: {},
|
|
});
|
|
|
|
await postAuthentication({ user, isNewUser, loginMethod: "GOOGLE" });
|
|
|
|
return {
|
|
userId: user.id,
|
|
};
|
|
} catch (error) {
|
|
console.error(error);
|
|
throw error;
|
|
}
|
|
},
|
|
);
|
|
|
|
authenticator.use(googleStrategy as any, "google");
|
|
}
|