Skip to content

Conversation

@jiminnimij
Copy link
Member

#️⃣ 연관된 이슈

관련된 이슈 번호를 적어주세요. 예: #이슈번호

#️⃣ 작업 내용

이번 PR에서 작업한 내용을 간략히 설명해주세요. (이미지 첨부 가능)

#️⃣ 테스트 결과

코드 변경에 대해 테스트를 수행한 결과를 요약해주세요. 예: 모든 테스트 통과 여부, 새로 작성한 테스트 케이스 등

#️⃣ 변경 사항 체크리스트

  • 코드에 영향이 있는 모든 부분에 대한 테스트를 작성하고 실행했나요?
  • 문서를 작성하거나 수정했나요? (필요한 경우)
  • 코드 컨벤션에 따라 코드를 작성했나요?
  • 본 PR에서 발생할 수 있는 모든 의존성 문제가 해결되었나요?

#️⃣ 스크린샷 (선택)

관련된 스크린샷이 있다면 여기에 첨부해주세요.

#️⃣ 리뷰 요구사항 (선택)

리뷰어가 특별히 봐주었으면 하는 부분이 있다면 작성해주세요.
예시: 이 부분의 코드가 잘 작동하는지 테스트해 주실 수 있나요?

📎 참고 자료 (선택)

관련 문서, 스크린샷, 또는 예시 등이 있다면 여기에 첨부해주세요

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @jiminnimij, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request enhances the security posture of the application by implementing a dedicated authentication challenge for Swagger-related endpoints. It ensures that access to API documentation and UI is properly controlled by prompting for basic authentication when an unauthenticated request is made to these specific paths.

Highlights

  • Swagger API Authentication: Introduced specific authentication handling for Swagger UI and API documentation endpoints, ensuring that requests to these paths are met with an UNAUTHORIZED status and a WWW-Authenticate header.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@jiminnimij jiminnimij merged commit df346fb into main Jan 5, 2026
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

이 PR은 Swagger 엔드포인트에 대한 인증되지 않은 접근을 처리하기 위해 CustomAuthenticationEntryPoint를 수정합니다. 변경 사항은 Swagger 경로에 대한 요청에 대해 브라우저에서 기본 인증 프롬프트를 트리거하도록 WWW-Authenticate 헤더와 함께 401 상태 코드를 반환합니다. 이는 올바른 접근 방식입니다. 코드의 유지보수성을 높이기 위해 Swagger 경로 목록을 확인하는 방식을 개선하는 것이 좋습니다. 아래에 자세한 리뷰 의견을 남겼습니다.

Comment on lines +27 to +39
if (path.startsWith("/v3/api-docs")
|| path.startsWith("/swagger-ui")
|| path.startsWith("/swagger-ui.html")
|| path.startsWith("/swagger-resources")
|| path.startsWith("/webjars")) {

response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
response.setHeader(
"WWW-Authenticate",
"Basic realm=\"Swagger API\""
);
return;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

현재 구현은 여러 || 연산자를 사용하여 Swagger 경로를 확인하고 있어 가독성이 떨어지고 유지보수가 어렵습니다. 이 로직을 경로 배열과 반복문을 사용하도록 리팩토링하면 코드가 더 깔끔해지고 나중에 경로를 추가하거나 수정하기 쉬워집니다. 또한, 이 경로 목록은 SecurityConfig.javaSwaggerPatterns와 관련이 있어 보입니다. 일관성을 유지하고 유지보수성을 높이기 위해 한 곳에서 경로 정의를 중앙 관리하는 것을 권장합니다.

Suggested change
if (path.startsWith("/v3/api-docs")
|| path.startsWith("/swagger-ui")
|| path.startsWith("/swagger-ui.html")
|| path.startsWith("/swagger-resources")
|| path.startsWith("/webjars")) {
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
response.setHeader(
"WWW-Authenticate",
"Basic realm=\"Swagger API\""
);
return;
}
String[] swaggerPaths = {
"/v3/api-docs",
"/swagger-ui",
"/swagger-ui.html",
"/swagger-resources",
"/webjars"
};
for (String swaggerPath : swaggerPaths) {
if (path.startsWith(swaggerPath)) {
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
response.setHeader(
"WWW-Authenticate",
"Basic realm=\"Swagger API\""
);
return;
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants