-
Notifications
You must be signed in to change notification settings - Fork 833
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
feat: bypass built-in CORS handling for workspace apps #15669
Conversation
@@ -395,41 +397,73 @@ func (s *Server) HandleSubdomain(middlewares ...func(http.Handler) http.Handler) | |||
return | |||
} | |||
|
|||
// Use the passed in app middlewares before checking authentication and |
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.
Note to reviewers: this is the meat of the change.
I had to move some things around here since the token was only being created after CORS was handled, and the defined behavior is stored in the token.
I moved the CORS middleware invocation into determineCORSBehavior
because we needed to conditionally invoke it if behavior != passthru
, only.
c5c74d1
to
ec3bac6
Compare
4c6beb5
to
f91f220
Compare
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
79ce356
to
63c1852
Compare
Signed-off-by: Danny Kopping <danny@coder.com>
Signed-off-by: Danny Kopping <danny@coder.com>
Reopening; this has been deprioritized slightly but not forgotten. |
NOTE: this PR is blocked; we want to first introduce this feature to port shares, as it has transpired that that use-case is far more common. It would be awkward to get this PR into the next release but not for port shares, so we're keeping this one on hold.
This PR introduces a partial fix for #15096; it allows operators to specify the CORS behavior on a per-
coder_app
level.This change requires
cors_behavior
to be set on a givencoder_app
; coder/terraform-provider-coder#309 introduces that new attribute.coderd
currently handles CORS automatically by handling preflight requests and stripping CORS headers from upstreamcoder_app
responses.Two CORS behaviors are defined in this PR:
simple
: the current behavior of handling CORS withincoderd
passthru
: new behavior which transparently bypasses our CORS handling incoderd
so thecoder_app
service is then fully responsible for handling CORSWe plan to further add this behavior to port shares.
The sharing level (
owner
,authenticated
,public
) is still respected, regardless of CORS behavior.