chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,65 @@
import type { Authenticator } from "remix-auth";
import { GitHubStrategy } from "remix-auth-github";
import { env } from "~/env.server";
import { findOrCreateUser } from "~/models/user.server";
import type { AuthUser } from "./authUser";
import { logger } from "./logger.server";
import { postAuthentication } from "./postAuth.server";
import { SsoRequiredError, ssoRedirectForEmail } from "./ssoAutoDiscovery.server";
export function addGitHubStrategy(
authenticator: Authenticator<AuthUser>,
clientID: string,
clientSecret: string
) {
const gitHubStrategy = new GitHubStrategy(
{
clientID,
clientSecret,
callbackURL: `${env.LOGIN_ORIGIN}/auth/github/callback`,
},
async ({ extraParams, profile }) => {
const emails = profile.emails;
if (!emails?.length) {
throw new Error("GitHub login requires an email address");
}
const email = emails[0].value;
// SSO auto-discovery gate — BEFORE findOrCreateUser, so an
// SSO-enforced domain never gets this GitHub identity linked onto
// an existing account.
const ssoRedirect = await ssoRedirectForEmail(email, "oauth_blocked");
if (ssoRedirect) {
throw new SsoRequiredError(ssoRedirect);
}
try {
logger.debug("GitHub login", {
emails,
profile,
extraParams,
});
const { user, isNewUser } = await findOrCreateUser({
email,
authenticationMethod: "GITHUB",
authenticationProfile: profile,
authenticationExtraParams: extraParams,
});
await postAuthentication({ user, isNewUser, loginMethod: "GITHUB" });
return {
userId: user.id,
};
} catch (error) {
logger.error("GitHub login failed", { error: JSON.stringify(error) });
throw error;
}
}
);
authenticator.use(gitHubStrategy);
}