* Separate environment configs * wip * wip * test * plugins * test * test * .sequelizerc, unfortunately can't go through /utils/environment due to not supporting TS * docker-compose -> docker compose * fix: .local wipes .development * Add custom validation message for invalid SECRET_KEY (often confused)
145 lines
4.5 KiB
TypeScript
145 lines
4.5 KiB
TypeScript
import passport from "@outlinewiki/koa-passport";
|
|
import type { Context } from "koa";
|
|
import Router from "koa-router";
|
|
import capitalize from "lodash/capitalize";
|
|
import { Profile } from "passport";
|
|
import { Strategy as GoogleStrategy } from "passport-google-oauth2";
|
|
import { slugifyDomain } from "@shared/utils/domains";
|
|
import accountProvisioner from "@server/commands/accountProvisioner";
|
|
import {
|
|
GmailAccountCreationError,
|
|
TeamDomainRequiredError,
|
|
} from "@server/errors";
|
|
import passportMiddleware from "@server/middlewares/passport";
|
|
import { User } from "@server/models";
|
|
import { AuthenticationResult } from "@server/types";
|
|
import {
|
|
StateStore,
|
|
getTeamFromContext,
|
|
getClientFromContext,
|
|
} from "@server/utils/passport";
|
|
import env from "../env";
|
|
|
|
const router = new Router();
|
|
const providerName = "google";
|
|
|
|
const scopes = [
|
|
"https://www.googleapis.com/auth/userinfo.profile",
|
|
"https://www.googleapis.com/auth/userinfo.email",
|
|
];
|
|
|
|
type GoogleProfile = Profile & {
|
|
email: string;
|
|
picture: string;
|
|
_json: {
|
|
hd?: string;
|
|
};
|
|
};
|
|
|
|
if (env.GOOGLE_CLIENT_ID && env.GOOGLE_CLIENT_SECRET) {
|
|
passport.use(
|
|
new GoogleStrategy(
|
|
{
|
|
clientID: env.GOOGLE_CLIENT_ID,
|
|
clientSecret: env.GOOGLE_CLIENT_SECRET,
|
|
callbackURL: `${env.URL}/auth/google.callback`,
|
|
passReqToCallback: true,
|
|
// @ts-expect-error StateStore
|
|
store: new StateStore(),
|
|
scope: scopes,
|
|
},
|
|
async function (
|
|
ctx: Context,
|
|
accessToken: string,
|
|
refreshToken: string,
|
|
params: { expires_in: number },
|
|
profile: GoogleProfile,
|
|
done: (
|
|
err: Error | null,
|
|
user: User | null,
|
|
result?: AuthenticationResult
|
|
) => void
|
|
) {
|
|
try {
|
|
// "domain" is the Google Workspaces domain
|
|
const domain = profile._json.hd;
|
|
const team = await getTeamFromContext(ctx);
|
|
const client = getClientFromContext(ctx);
|
|
|
|
// No profile domain means personal gmail account
|
|
// No team implies the request came from the apex domain
|
|
// This combination is always an error
|
|
if (!domain && !team) {
|
|
const userExists = await User.count({
|
|
where: { email: profile.email.toLowerCase() },
|
|
});
|
|
|
|
// Users cannot create a team with personal gmail accounts
|
|
if (!userExists) {
|
|
throw GmailAccountCreationError();
|
|
}
|
|
|
|
// To log-in with a personal account, users must specify a team subdomain
|
|
throw TeamDomainRequiredError();
|
|
}
|
|
|
|
// remove the TLD and form a subdomain from the remaining
|
|
// subdomains of the form "foo.bar.com" are allowed as primary Google Workspaces domains
|
|
// see https://support.google.com/nonprofits/thread/19685140/using-a-subdomain-as-a-primary-domain
|
|
const subdomain = domain ? slugifyDomain(domain) : "";
|
|
const teamName = capitalize(subdomain);
|
|
|
|
// Request a larger size profile picture than the default by tweaking
|
|
// the query parameter.
|
|
const avatarUrl = profile.picture.replace("=s96-c", "=s128-c");
|
|
|
|
// if a team can be inferred, we assume the user is only interested in signing into
|
|
// that team in particular; otherwise, we will do a best effort at finding their account
|
|
// or provisioning a new one (within AccountProvisioner)
|
|
const result = await accountProvisioner({
|
|
ip: ctx.ip,
|
|
team: {
|
|
teamId: team?.id,
|
|
name: teamName,
|
|
domain,
|
|
subdomain,
|
|
},
|
|
user: {
|
|
email: profile.email,
|
|
name: profile.displayName,
|
|
avatarUrl,
|
|
},
|
|
authenticationProvider: {
|
|
name: providerName,
|
|
providerId: domain ?? "",
|
|
},
|
|
authentication: {
|
|
providerId: profile.id,
|
|
accessToken,
|
|
refreshToken,
|
|
expiresIn: params.expires_in,
|
|
scopes,
|
|
},
|
|
});
|
|
|
|
return done(null, result.user, { ...result, client });
|
|
} catch (err) {
|
|
return done(err, null);
|
|
}
|
|
}
|
|
)
|
|
);
|
|
|
|
router.get(
|
|
"google",
|
|
passport.authenticate(providerName, {
|
|
accessType: "offline",
|
|
prompt: "select_account consent",
|
|
})
|
|
);
|
|
|
|
router.get("google.callback", passportMiddleware(providerName));
|
|
}
|
|
|
|
export default router;
|