-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Follow index redirect in discovery #471
Comments
I'd like to take this. Just to be clear, when you say the path should be added to the candidates, should that replace the existing candidates so we only check candidates with the redirected path, or should candidates with the path be checked in addition to the existing candidates, possibly with an increased score? |
The AddressCandidateHelper is the is the "helper" that clients can use to convert user-input to actual server addresses. It's a synchronous API and does not make network calls. The RecommendedServerDiscovery is used to test a list of servers (commonly those outputted from AddressCandidateHelper) by connecting to them and validating the responses. I would expect the RecommendedServerDiscovery follows redirects and decreases the score slightly (to prefer non-redirected URL's above redirected URL's). The returned RecommendedServerInfo should have a way to indicate it was redirected from the original input, perhaps by adding both the original and final addresses with a getter "isRedirected" that compares them. The discover function should have a parameter "followRedirects", similar to the option in HttpClientOptions. |
This doesn't work with the demo site currently as it redirects to stable/web/ instead of just stable/ |
I've been told we're using a baseurl configuration on demo.jellyfin.org so it will indeed redirect to /stable/web/. So it is not suitable to test this behavior with. |
Sometimes people use a baseurl and only have a redirect on the index page (e.g. jellyfin.local -> jellyfin.local/jellyfin). We should support these redirects to allow easier setup in Jellyfin clients.
The text was updated successfully, but these errors were encountered: