-
Notifications
You must be signed in to change notification settings - Fork 354
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
Remove hardcoded IPs in HTML #158
Comments
Good point about the URL's not being re-calculated on reconnect; I've fixed that. |
Thanks! I still don't see why URLs need to be hardcoded into the HTML. IP and hostname is a device thing and doesn't need to be referenced in the served website whatsoever. Removing it from HTML would make the code smaller without removing any features. document.location.origin is literally what you type into the address bar of your browser, regardless if it's a domain or IP address. |
Yep, thinking about it you are right. I really should be pulling the IP/domain from the document properties. But, it wont reduce complexity much, I still want to allow configuring and passing the stream port number, and will need to code transposing that into the doc properties as needed. Also I currently use a simple substitution to drop it into some of the other pages as they are served; and will need to make them more complex to also use the document properties.. That will still be better than the current situation, so I'm reopening this. |
Is there some reason that relative addressing doesn't work? I have always used |
@rdragonrydr The custom port. You can only specify it with absolute addresses. |
@rdragonrydr : within the main UI the links are relative, based on The Issue here is that the stream is served on a different port than the main page. This port is user-configurable, by default it is port 81 but that is not guaranteed. So; I pass the stream url to the main page as a string calculated by the server based on it's own address but with the correct port number; and this uses the IP address (it is not really hard-coded into the page, it just looks like it).
Anyway.. enough time wasted here: This is a future change;
Anyway... the current operation works; having the stream URL show as a IP address in the UI is sub-optimal but not really a problem for normal users. |
I am leaving this issue open for reference; although I am archiving the project |
I run into a problem where streamURL resolves to 0.0.0.0 and while the website works, the stream is not visible because it points to 0.0.0.0:81 . It's probably because the initial connection somewhat failed (?) but reconnected soon after. In the code I see the IP is set only at init and not changed after wifi reconnection, which is also error prone. I guess both issues could be fixed by removing the IP from HTML. The website uses javascript already, so it could use document.location.origin instead. Is there any reason why IPs/URLs were hardcoded in the first place?
If it's a good way to go I can try to make the changes and submit a PR.
I'm on current master, 7a29a31
The text was updated successfully, but these errors were encountered: