-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Set subdomains to AllowOrigins with wildcard #1301
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1301 +/- ##
==========================================
+ Coverage 84.21% 84.26% +0.05%
==========================================
Files 26 27 +1
Lines 1951 1989 +38
==========================================
+ Hits 1643 1676 +33
- Misses 202 205 +3
- Partials 106 108 +2
Continue to review full report at Codecov.
|
@atsushi-ishibashi I like the idea of supporting subdomains; however, I would like to see a better algorithm which can support nesting as well. Something like below: Split origin & allowed origin by func IsSubDomain(domain, pattern string) bool {
} //cc @im-kulikov @alexaandru |
middleware/cors.go
Outdated
@@ -102,6 +102,10 @@ func CORSWithConfig(config CORSConfig) echo.MiddlewareFunc { | |||
allowOrigin = o | |||
break | |||
} | |||
if o != "*" && equalScheme(origin, o) && isSubDomain(origin, o) { |
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.
- I don't think you need
o != "*"
- Make
equalScheme()
part of isSubdomain()`
middleware/util.go
Outdated
"strings" | ||
) | ||
|
||
func equalScheme(domain, pattern string) bool { |
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.
I think matchScheme()
is a better name
middleware/util.go
Outdated
} | ||
|
||
// isSubDomain compares authority with wildcard | ||
func isSubDomain(domain, pattern string) bool { |
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.
Similar to above matchSubdomain()
is a better name
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.
👍
close: #1300