forked from hybridgroup/gobot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request hybridgroup#111 from hybridgroup/176-cors-header
176 cors header
- Loading branch information
Showing
4 changed files
with
187 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package api | ||
|
||
import ( | ||
"regexp" | ||
"strings" | ||
) | ||
|
||
type CORS struct { | ||
AllowOrigins []string | ||
AllowHeaders []string | ||
AllowMethods []string | ||
ContentType string | ||
allowOriginPatterns []string | ||
} | ||
|
||
func NewCORS(allowedOrigins []string) *CORS { | ||
cors := &CORS{ | ||
AllowOrigins: allowedOrigins, | ||
AllowMethods: []string{"GET", "POST"}, | ||
AllowHeaders: []string{"Origin", "Content-Type"}, | ||
ContentType: "application/json; charset=utf-8", | ||
} | ||
|
||
cors.generatePatterns() | ||
|
||
return cors | ||
} | ||
|
||
func (c *CORS) isOriginAllowed(origin string) (allowed bool) { | ||
for _, allowedOriginPattern := range c.allowOriginPatterns { | ||
allowed, _ = regexp.MatchString(allowedOriginPattern, origin) | ||
if allowed { | ||
return | ||
} | ||
} | ||
return | ||
} | ||
|
||
func (c *CORS) generatePatterns() { | ||
if c.AllowOrigins != nil { | ||
for _, origin := range c.AllowOrigins { | ||
pattern := regexp.QuoteMeta(origin) | ||
pattern = strings.Replace(pattern, "\\*", ".*", -1) | ||
pattern = strings.Replace(pattern, "\\?", ".", -1) | ||
c.allowOriginPatterns = append(c.allowOriginPatterns, "^"+pattern+"$") | ||
} | ||
} | ||
} | ||
|
||
func (c *CORS) AllowedHeaders() string { | ||
return strings.Join(c.AllowHeaders, ",") | ||
} | ||
|
||
func (c *CORS) AllowedMethods() string { | ||
return strings.Join(c.AllowMethods, ",") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package api | ||
|
||
import ( | ||
"github.com/hybridgroup/gobot" | ||
"testing" | ||
) | ||
|
||
func TestNewCORS(t *testing.T) { | ||
var cors interface{} = NewCORS([]string{}) | ||
|
||
// Does it return a pointer to an instance of CORS? | ||
_, ok := cors.(*CORS) | ||
if !ok { | ||
t.Errorf("NewCORS() should have returned a *CORS") | ||
} | ||
} | ||
|
||
func TestNewCorsSetsProperties(t *testing.T) { | ||
allowedOrigins := []string{"http://*server:*", "http://localhost:*"} | ||
allowedMethods := []string{"GET", "POST"} | ||
allowedHeaders := []string{"Origin", "Content-Type"} | ||
contentType := "application/json; charset=utf-8" | ||
allowOriginPatterns := []string{"^http://.*server:.*$", "^http://localhost:.*$"} | ||
|
||
cors := NewCORS(allowedOrigins) | ||
|
||
gobot.Assert(t, cors.AllowOrigins, allowedOrigins) | ||
gobot.Assert(t, cors.AllowMethods, allowedMethods) | ||
gobot.Assert(t, cors.AllowHeaders, allowedHeaders) | ||
gobot.Assert(t, cors.ContentType, contentType) | ||
gobot.Assert(t, cors.allowOriginPatterns, allowOriginPatterns) | ||
} | ||
|
||
func TestCORSIsOriginAllowed(t *testing.T) { | ||
cors := NewCORS([]string{"*"}) | ||
|
||
// When all the origins are accepted | ||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:8000"), true) | ||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:3001"), true) | ||
gobot.Assert(t, cors.isOriginAllowed("http://server.com"), true) | ||
|
||
// When one origin is accepted | ||
cors = NewCORS([]string{"http://localhost:8000"}) | ||
|
||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:8000"), true) | ||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:3001"), false) | ||
gobot.Assert(t, cors.isOriginAllowed("http://server.com"), false) | ||
|
||
// When several origins are accepted | ||
cors = NewCORS([]string{"http://localhost:*", "http://server.com"}) | ||
|
||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:8000"), true) | ||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:3001"), true) | ||
gobot.Assert(t, cors.isOriginAllowed("http://server.com"), true) | ||
|
||
// When several origins are accepted within the same domain | ||
cors = NewCORS([]string{"http://*.server.com"}) | ||
|
||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:8000"), false) | ||
gobot.Assert(t, cors.isOriginAllowed("http://localhost:3001"), false) | ||
gobot.Assert(t, cors.isOriginAllowed("http://foo.server.com"), true) | ||
gobot.Assert(t, cors.isOriginAllowed("http://api.server.com"), true) | ||
} | ||
|
||
func TestCORSAllowedHeaders(t *testing.T) { | ||
cors := NewCORS([]string{"*"}) | ||
|
||
cors.AllowHeaders = []string{"Header1", "Header2"} | ||
|
||
gobot.Assert(t, cors.AllowedHeaders(), "Header1,Header2") | ||
} | ||
|
||
func TestCORSAllowedMethods(t *testing.T) { | ||
cors := NewCORS([]string{"*"}) | ||
|
||
gobot.Assert(t, cors.AllowedMethods(), "GET,POST") | ||
|
||
cors.AllowMethods = []string{"GET", "POST", "PUT"} | ||
|
||
gobot.Assert(t, cors.AllowedMethods(), "GET,POST,PUT") | ||
} |