-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
CORS on git smart http protocol can not work on main branch #16350
Comments
It seems that the new |
So it works after you updated your config? In that case, please close this issue :) Maybe related: #16100 |
No,It will only work after modifying the above code. If you have read the source code, you will find the feature of So I think you can deprecate the old ACCESS_CONTROL_ALLOW_ORIGIN. |
Enh, Maybe My changes can fix the #16100. |
Could you send a PR to fix that? I'm thinking we may should use different cors settings for smart http, api and others. |
Ok. I've added support for CORS on most repo operations. But I have no idea how to wtite an unit test. |
Unfortunately the chi changes have resulted in the CORS headers for the git smart http protocol going missing. This is mostly because the OPTIONS method is not being handled by httpBase anymore. This PR adds a GetOptions, PostOptions and Options methods to web handler to allow OPTIONS method requests to still reach the httpBase function. Fix go-gitea#16350 Close go-gitea#16491 Signed-off-by: Andrew Thornton <art27@cantab.net>
In order to provide a test it would be helpful if you could simply list the requests that lightning git would make over the smart protocol - then you would simply write a test that ensures that the appropriate headers are sent back. Another option is to point to the smart git protocol documentation here. |
Unfortunately the chi changes have resulted in the CORS headers for the git smart http protocol going missing. This is mostly because the OPTIONS method is not being handled by httpBase anymore. This PR adds a GetOptions, PostOptions and Options methods to web handler to allow OPTIONS method requests to still reach the httpBase function. Fix #16350 Close #16491 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Backport go-gitea#16496 Unfortunately the chi changes have resulted in the CORS headers for the git smart http protocol going missing. This is mostly because the OPTIONS method is not being handled by httpBase anymore. This PR adds a GetOptions, PostOptions and Options methods to web handler to allow OPTIONS method requests to still reach the httpBase function. Fix go-gitea#16350 Close go-gitea#16491 Signed-off-by: Andrew Thornton <art27@cantab.net>
Backport #16496 Unfortunately the chi changes have resulted in the CORS headers for the git smart http protocol going missing. This is mostly because the OPTIONS method is not being handled by httpBase anymore. This PR adds a GetOptions, PostOptions and Options methods to web handler to allow OPTIONS method requests to still reach the httpBase function. Fix #16350 Close #16491 Signed-off-by: Andrew Thornton <art27@cantab.net>
Unfortunately the chi changes have resulted in the CORS headers for the git smart http protocol going missing. This is mostly because the OPTIONS method is not being handled by httpBase anymore. This PR adds a GetOptions, PostOptions and Options methods to web handler to allow OPTIONS method requests to still reach the httpBase function. Fix go-gitea#16350 Close go-gitea#16491 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
[x]
):Description
This feature #5719(#5700) can not work now.
The browser say:
And the response header has nothing CORS header return.
The server report:
I've found it was incorrectly rejected before entering httpBase.
gitea/routers/web/web.go
Line 150 in 27c1578
The
context.Contexter()
reject it.Just add the following code before
context.Contexter()
to fix:The text was updated successfully, but these errors were encountered: