diff --git a/responses/responses.go b/responses/responses.go index 6b6ecb4403c6c8d53294004aab924057d1344faa..e53097136b01bc5879c98b72809dc5501ab9c2c9 100644 --- a/responses/responses.go +++ b/responses/responses.go @@ -116,6 +116,6 @@ func RateLimitResponse(message string) events.APIGatewayProxyResponse { func OptionsResponse() events.APIGatewayProxyResponse { return events.APIGatewayProxyResponse{ StatusCode: http.StatusNoContent, - Headers: utils.MergeMaps(utils.CorsHeadersCached(), ContentTypeJSONHeader), + Headers: utils.MergeMaps(utils.CorsHeaders(), ContentTypeJSONHeader), } } diff --git a/utils/utils.go b/utils/utils.go index 7faf2ccd8f7cdb3d7bb654f5901419f421ca1a9c..beac7f4f8636c9ca49457fb984ec785d635fd690 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -26,18 +26,9 @@ func GetEnv(name string, def string) (env string) { // CorsHeaders returns a map to allow Cors func CorsHeaders() map[string]string { return map[string]string{ - "Access-Control-Allow-Origin": "*", - "Access-Control-Allow-Headers": "*", - "Access-Control-Allow-Methods": "OPTIONS,GET,PUT,POST,DELETE,PATCH,HEAD", - "Access-Control-Max-Age": "86400", - "Access-Control-Allow-Credentials": "true", - } -} - -func CorsHeadersCached() map[string]string { - return map[string]string{ - "Access-Control-Allow-Origin": "*", - "Access-Control-Allow-Headers": "*", + "Access-Control-Allow-Origin": "*", + // do not wildcard: https://stackoverflow.com/questions/13146892/cors-access-control-allow-headers-wildcard-being-ignored + "Access-Control-Allow-Headers": "Accept, Accept-CH, Accept-Charset, Accept-Datetime, Accept-Encoding, Accept-Ext, Accept-Features, Accept-Language, Accept-Params, Accept-Ranges, Access-Control-Allow-Credentials, Access-Control-Allow-Headers, Access-Control-Allow-Methods, Access-Control-Allow-Origin, Access-Control-Expose-Headers, Access-Control-Max-Age, Access-Control-Request-Headers, Access-Control-Request-Method, Age, Allow, Alternates, Authentication-Info, Authorization, C-Ext, C-Man, C-Opt, C-PEP, C-PEP-Info, CONNECT, Cache-Control, Compliance, Connection, Content-Base, Content-Disposition, Content-Encoding, Content-ID, Content-Language, Content-Length, Content-Location, Content-MD5, Content-Range, Content-Script-Type, Content-Security-Policy, Content-Style-Type, Content-Transfer-Encoding, Content-Type, Content-Version, Cookie, Cost, DAV, DELETE, DNT, DPR, Date, Default-Style, Delta-Base, Depth, Derived-From, Destination, Differential-ID, Digest, ETag, Expect, Expires, Ext, From, GET, GetProfile, HEAD, HTTP-date, Host, IM, If, If-Match, If-Modified-Since, If-None-Match, If-Range, If-Unmodified-Since, Keep-Alive, Label, Last-Event-ID, Last-Modified, Link, Location, Lock-Token, MIME-Version, Man, Max-Forwards, Media-Range, Message-ID, Meter, Negotiate, Non-Compliance, OPTION, OPTIONS, OWS, Opt, Optional, Ordering-Type, Origin, Overwrite, P3P, PEP, PICS-Label, POST, PUT, Pep-Info, Permanent, Position, Pragma, ProfileObject, Protocol, Protocol-Query, Protocol-Request, Proxy-Authenticate, Proxy-Authentication-Info, Proxy-Authorization, Proxy-Features, Proxy-Instruction, Public, RWS, Range, Referer, Refresh, Resolution-Hint, Resolver-Location, Retry-After, Safe, Sec-Websocket-Extensions, Sec-Websocket-Key, Sec-Websocket-Origin, Sec-Websocket-Protocol, Sec-Websocket-Version, Security-Scheme, Server, Set-Cookie, Set-Cookie2, SetProfile, SoapAction, Status, Status-URI, Strict-Transport-Security, SubOK, Subst, Surrogate-Capability, Surrogate-Control, TCN, TE, TRACE, Timeout, Title, Trailer, Transfer-Encoding, UA-Color, UA-Media, UA-Pixels, UA-Resolution, UA-Windowpixels, URI, Upgrade, User-Agent, Variant-Vary, Vary, Version, Via, Viewport-Width, WWW-Authenticate, Want-Digest, Warning, Width, X-Content-Duration, X-Content-Security-Policy, X-Content-Type-Options, X-CustomHeader, X-DNSPrefetch-Control, X-Forwarded-For, X-Forwarded-Port, X-Forwarded-Proto, X-Frame-Options, X-Modified, X-OTHER, X-PING, X-PINGOTHER, X-Powered-By, X-Requested-With", "Access-Control-Allow-Methods": "OPTIONS,GET,PUT,POST,DELETE,PATCH,HEAD", "Access-Control-Max-Age": "86400", "Access-Control-Allow-Credentials": "true",