Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added alert to login page for invalid github token #674

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/app/api/auth/[...nextauth]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,9 @@ const authOptions: NextAuthOptions = {
'X-GitHub-Api-Version': '2022-11-28'
},
validateStatus: (status) => {
return [204, 302, 404].includes(status);
return [204, 302, 404, 401].includes(status);
}
});

if (response.status === 204) {
console.log(`User ${githubProfile.login} successfully authenticated with GitHub organization - ${ORG}`);
logger.info(`User ${githubProfile.login} successfully authenticated with GitHub organization - ${ORG}`);
Expand All @@ -114,6 +113,10 @@ const authOptions: NextAuthOptions = {
console.log(`User ${githubProfile.login} is not a member of the ${ORG} organization`);
logger.warn(`User ${githubProfile.login} is not a member of the ${ORG} organization`);
return `/login?error=NotOrgMember&user=${githubProfile.login}`; // Redirect to custom error page
} else if (response.status === 401) {
console.log(`The GitHub token is invalid.`);
logger.warn(`The GitHub token is invalid.`);
return `/login?error=InvalidToken`;
} else {
console.log(`Unexpected error while authenticating user ${githubProfile.login} with ${ORG} github organization.`);
logger.error(`Unexpected error while authenticating user ${githubProfile.login} with ${ORG} github organization.`);
Expand Down
7 changes: 6 additions & 1 deletion src/app/login/githublogin.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect, useState } from 'react';
import { signIn } from 'next-auth/react';
import { useRouter, useSearchParams } from 'next/navigation';
import { Button, Content, Modal, ModalBody, ModalFooter, ModalHeader, ModalVariant } from '@patternfly/react-core';
import { Button, Content, Modal, ModalBody, ModalFooter, ModalHeader, ModalVariant, Alert } from '@patternfly/react-core';
import { GithubIcon } from '@patternfly/react-icons';
import LoginLinks from '@/app/login/LoginLinks';

Expand All @@ -11,6 +11,7 @@ const GithubLogin: React.FC = () => {
const [showError, setShowError] = useState(false);
const [errorMsg, setErrorMsg] = useState('Something went wrong.');
const [githubUsername, setGithubUsername] = useState<string | null>(null);
const [invalidToken, setInvalidToken] = useState<boolean>(false);

useEffect(() => {
const githubUsername = searchParams.get('user');
Expand All @@ -24,6 +25,9 @@ const GithubLogin: React.FC = () => {
setErrorMsg(errorMessage);
setShowError(true);
}
if (error === 'InvalidToken') {
setInvalidToken(true);
}
}, [searchParams]);

const handleGitHubLogin = () => {
Expand Down Expand Up @@ -77,6 +81,7 @@ const GithubLogin: React.FC = () => {
Join the novel, community based movement to <br></br>create truly open source LLMs
</Content>
</Content>
{invalidToken && <Alert variant="danger" title="GitHub token invalid. Try again." />}
<div className="login-container">
<Button variant="primary" className="login-button" icon={<GithubIcon />} iconPosition="left" size="lg" onClick={handleGitHubLogin}>
Sign in with GitHub
Expand Down