-
Notifications
You must be signed in to change notification settings - Fork 27
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
fix: Cross domain configuration #192
Conversation
WalkthroughThis pull request restructures the CORS configuration and cleans up unused imports across several Java files. The CORS configuration in Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant CorsFilter
participant Application
Client->>CorsFilter: Send HTTP Request
CorsFilter-->>Client: Validate request (origin, headers, methods)
CorsFilter->>Application: Forward validated request
Application-->>CorsFilter: Process response
CorsFilter-->>Client: Return response with appropriate CORS headers
Possibly related PRs
Poem
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (2)
app/src/main/resources/application-dev.yml (1)
63-63
: Consider restricting allowed origins for non-development environments.By setting
allowed-origins
to*
, you're permitting requests from any domain. This simplifies development and testing but may pose a security risk in production. You might configure environment-specific restrictions or refine your allowed origins list to ensure only trusted domains can access your application.app/src/main/java/com/tinyengine/it/config/filter/WebConfig.java (1)
31-50
: Validate that filter-based configuration meets your CORS requirements.
- The code properly sets up a
CorsConfiguration
object and registers it withUrlBasedCorsConfigurationSource
.setAllowedOriginPatterns(crosDomainList)
uses values fromallowedOrigins
, which is currently set to"*"
. For production-grade code, consider restricting or parameterizing domain lists via environment-specific configurations.- Allowing any method and header while setting
allowCredentials
totrue
is flexible but significantly broadens cross-origin permissions. Double-check the security implications.Would you like me to generate additional environment-based configuration examples or strategies for restricting origins only to known domains?
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (10)
app/src/main/java/com/tinyengine/it/config/filter/WebConfig.java
(1 hunks)app/src/main/resources/application-dev.yml
(1 hunks)base/src/main/java/com/tinyengine/it/controller/BlockGroupController.java
(0 hunks)base/src/main/java/com/tinyengine/it/gateway/ai/AiChatClient.java
(0 hunks)base/src/main/java/com/tinyengine/it/service/app/impl/AiChatServiceImpl.java
(0 hunks)base/src/main/java/com/tinyengine/it/service/material/impl/BlockGroupServiceImpl.java
(1 hunks)base/src/main/java/com/tinyengine/it/service/material/impl/BlockServiceImpl.java
(1 hunks)base/src/test/java/com/tinyengine/it/controller/AiChatControllerTest.java
(0 hunks)base/src/test/java/com/tinyengine/it/controller/BlockGroupControllerTest.java
(0 hunks)base/src/test/java/com/tinyengine/it/service/app/impl/AiChatServiceImplTest.java
(0 hunks)
💤 Files with no reviewable changes (6)
- base/src/test/java/com/tinyengine/it/controller/BlockGroupControllerTest.java
- base/src/test/java/com/tinyengine/it/service/app/impl/AiChatServiceImplTest.java
- base/src/main/java/com/tinyengine/it/gateway/ai/AiChatClient.java
- base/src/test/java/com/tinyengine/it/controller/AiChatControllerTest.java
- base/src/main/java/com/tinyengine/it/controller/BlockGroupController.java
- base/src/main/java/com/tinyengine/it/service/app/impl/AiChatServiceImpl.java
✅ Files skipped from review due to trivial changes (2)
- base/src/main/java/com/tinyengine/it/service/material/impl/BlockServiceImpl.java
- base/src/main/java/com/tinyengine/it/service/material/impl/BlockGroupServiceImpl.java
🔇 Additional comments (1)
app/src/main/java/com/tinyengine/it/config/filter/WebConfig.java (1)
16-25
: Imports are consistent with the new filter-based CORS approach.The newly introduced imports are correct and align with the transition to the
CorsFilter
-based setup. No issues found here.
English | 简体中文
PR
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
Background and solution
What is the current behavior?
Issue Number: N/A
What is the new behavior?
Does this PR introduce a breaking change?
Other information
Summary by CodeRabbit
New Features
Chores