Should be as simple as posting with a file payload then processing the response(s).
Then building a connect web-page which will list the device currently connected and a list of devices we can connect to (possibly include if they are tvs or the roku stick)
TODO:
Perform a successful post to the magic ip they provide to query for roku:ecp
Build a web-page which is shown at /connect, provide a button for connect if we get a error/invalid response (the button should simply redirect to /connect from /)
Add to the web-page currently connected to and support a "refresh" button which performs the query for roku ecp controllable devices
Add to the web-page a list of a button and text showing all roku devices found by "refresh". (If one of the buttons is clicked support setting the device we are "connected")
Test this feature (The more we use this, the more I will know where to improve it)
Current issues:
We fail to process inbound UDP responses from our query for roku devices
Concept from [here](https://developer.roku.com/docs/developer-program/debugging/external-control-api.md#simple-service-discovery-protocol-ssdp).
Should be as simple as posting with a file payload then processing the response(s).
Then building a connect web-page which will list the device currently connected and a list of devices we can connect to (possibly include if they are tvs or the roku stick)
TODO:
- [x] Perform a successful post to the magic ip they provide to query for `roku:ecp`
- [x] Build a web-page which is shown at `/connect`, provide a button for connect if we get a error/invalid response (the button should simply redirect to `/connect` from `/`)
- [x] Add to the web-page currently connected to and support a "refresh" button which performs the query for roku ecp controllable devices
- [x] Add to the web-page a list of a button and text showing all roku devices found by "refresh". (If one of the buttons is clicked support setting the device we are "connected")
- [ ] Test this feature (The more we use this, the more I will know where to improve it)
# Current issues:
- [ ] We fail to process inbound UDP responses from our query for roku devices
Our current code as of [1c9271817e] is in a failing state
Pressing 'Connect' then 'Reload' will cause a Internal Server Error (500) code to be sent to the user, even before any possible responses have been received.
Top issues:
I don't quite understand concurrency in general much less in Go.
I think I need to have extra eyes to know how to improve the current code or even a rewrite of the code.
I think the solution is to make a go channel for storing ips as strings then as I receive responses stuff the ip I got a response from into that channel. (Then I'd have something read that go channel and form a list of strings to be shown and selected)
I'm fairly sure I have the code where a list of strings will be listed (each being buttons) then making it so we can connect to the new selected ip. (But since I'm failing to properly receive the UDP responses I don't know if it works)
Our current code as of [1c9271817e] is in a failing state
Pressing 'Connect' then 'Reload' will cause a Internal Server Error (500) code to be sent to the user, even before any possible responses have been received.
Top issues:
- I don't quite understand concurrency in general much less in Go.
- [ ] I think I need to have extra eyes to know how to improve the current code or even a rewrite of the code.
- [ ] I think the solution is to make a go channel for storing ips as strings then as I receive responses stuff the ip I got a response from into that channel. (Then I'd have something read that go channel and form a list of strings to be shown and selected)
- [x] I'm fairly sure I have the code where a list of strings will be listed (each being buttons) then making it so we can connect to the new selected ip. (But since I'm failing to properly receive the UDP responses I don't know if it works)
Then after the infinite loop, you assign *data = list.
^ Ok, it isn't infinite -- it COULD break, if there's an error from ReadFromUDP. But the probability of that is 0.
There's lots of "Strings that end with\r\n". ? What?
You're not sending out strings to a dumb BBS terminal. "\n"
Ok, I think we need ListenMulticastUDP.
I did see some weird go code:
GetDevices():
There's no way to know when GetFind updates &str.
```
GetFind():
for {
}
```
Then after the infinite loop, you assign *data = list.
^ Ok, it isn't infinite -- it *COULD* break, if there's an error from ReadFromUDP. But the probability of that is 0.
There's lots of "Strings that end with\r\n". ? What?
You're not sending out strings to a dumb BBS terminal. "\n"
The infinite loop where afterwards I assign *data = list will fail once it hits the 3 seconds as per ln.SetReadDeadline(time.Now().Add(3 * time.Second)) (SetReadDeadline, if we fail to read anything in 3 seconds it will exit the loop)
I found [https://github.com/dmichael/go-multicast](https://github.com/dmichael/go-multicast) which appears to be a broken go package so we'd have to fiddle with it to get it to work. (:S)
> The infinite loop where afterwards I assign `*data = list` will fail once it hits the 3 seconds as per `ln.SetReadDeadline(time.Now().Add(3 * time.Second))` (SetReadDeadline, if we fail to read anything in 3 seconds it will exit the loop)
In the future I will probably want to rework the code to support multiple Roku device responses.
Since we only have 1 device to test with we don't need the multi-device support (Not that it would be too difficult to support multiple responses and adding them to a list)
In the future I will probably want to rework the code to support multiple Roku device responses.
> Since we only have 1 device to test with we don't need the multi-device support (Not that it would be too difficult to support multiple responses and adding them to a list)
Concept from here.
Should be as simple as posting with a file payload then processing the response(s).
Then building a connect web-page which will list the device currently connected and a list of devices we can connect to (possibly include if they are tvs or the roku stick)
TODO:
roku:ecp
/connect
, provide a button for connect if we get a error/invalid response (the button should simply redirect to/connect
from/
)Current issues:
Our current code as of [
1c9271817e
] is in a failing statePressing 'Connect' then 'Reload' will cause a Internal Server Error (500) code to be sent to the user, even before any possible responses have been received.
Top issues:
@stevet Ping?
Ok, I think we need ListenMulticastUDP.
I did see some weird go code:
GetDevices():
There's no way to know when GetFind updates &str.
Then after the infinite loop, you assign *data = list.
^ Ok, it isn't infinite -- it COULD break, if there's an error from ReadFromUDP. But the probability of that is 0.
There's lots of "Strings that end with\r\n". ? What?
You're not sending out strings to a dumb BBS terminal. "\n"
I found https://github.com/dmichael/go-multicast which appears to be a broken go package so we'd have to fiddle with it to get it to work. (:S)
RequestUDP.png is M-SEARCH.
ResponseUDP.png is the reply the TV did.
In the future I will probably want to rework the code to support multiple Roku device responses.