99 lines
2.9 KiB
TypeScript
99 lines
2.9 KiB
TypeScript
import passport from "@outlinewiki/koa-passport";
|
|
import Router from "koa-router";
|
|
import { capitalize } from "lodash";
|
|
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module 'pass... Remove this comment to see the full error message
|
|
import { Strategy as GoogleStrategy } from "passport-google-oauth2";
|
|
import accountProvisioner from "@server/commands/accountProvisioner";
|
|
import env from "@server/env";
|
|
import {
|
|
GoogleWorkspaceRequiredError,
|
|
GoogleWorkspaceInvalidError,
|
|
} from "@server/errors";
|
|
import passportMiddleware from "@server/middlewares/passport";
|
|
import { isDomainAllowed } from "@server/utils/authentication";
|
|
import { StateStore } from "@server/utils/passport";
|
|
|
|
const router = new Router();
|
|
const providerName = "google";
|
|
const GOOGLE_CLIENT_ID = process.env.GOOGLE_CLIENT_ID;
|
|
const GOOGLE_CLIENT_SECRET = process.env.GOOGLE_CLIENT_SECRET;
|
|
const scopes = [
|
|
"https://www.googleapis.com/auth/userinfo.profile",
|
|
"https://www.googleapis.com/auth/userinfo.email",
|
|
];
|
|
|
|
export const config = {
|
|
name: "Google",
|
|
enabled: !!GOOGLE_CLIENT_ID,
|
|
};
|
|
|
|
if (GOOGLE_CLIENT_ID) {
|
|
passport.use(
|
|
new GoogleStrategy(
|
|
{
|
|
clientID: GOOGLE_CLIENT_ID,
|
|
clientSecret: GOOGLE_CLIENT_SECRET,
|
|
callbackURL: `${env.URL}/auth/google.callback`,
|
|
passReqToCallback: true,
|
|
store: new StateStore(),
|
|
scope: scopes,
|
|
},
|
|
// @ts-expect-error ts-migrate(7006) FIXME: Parameter 'req' implicitly has an 'any' type.
|
|
async function (req, accessToken, refreshToken, profile, done) {
|
|
try {
|
|
const domain = profile._json.hd;
|
|
|
|
if (!domain) {
|
|
throw GoogleWorkspaceRequiredError();
|
|
}
|
|
|
|
if (!isDomainAllowed(domain)) {
|
|
throw GoogleWorkspaceInvalidError();
|
|
}
|
|
|
|
const subdomain = domain.split(".")[0];
|
|
const teamName = capitalize(subdomain);
|
|
const result = await accountProvisioner({
|
|
ip: req.ip,
|
|
team: {
|
|
name: teamName,
|
|
domain,
|
|
subdomain,
|
|
},
|
|
user: {
|
|
email: profile.email,
|
|
name: profile.displayName,
|
|
avatarUrl: profile.picture,
|
|
},
|
|
authenticationProvider: {
|
|
name: providerName,
|
|
providerId: domain,
|
|
},
|
|
authentication: {
|
|
providerId: profile.id,
|
|
accessToken,
|
|
refreshToken,
|
|
scopes,
|
|
},
|
|
});
|
|
return done(null, result.user, result);
|
|
} 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;
|