add todos and initial route changes

This commit is contained in:
john.sitarski 2023-06-15 16:37:08 +09:30
parent 3206a9b1ff
commit 4bde801d6a

View File

@ -18,7 +18,7 @@ swag = Swagger(app)
radios = {}
@app.route("/report")
@app.route("/GetReport")
def report():
"""Get streams report from the RTSP relay.
---
@ -53,7 +53,6 @@ def radio_report():
return jsonify(devices)
@app.route("/radio/<radio>/connect")
def connect(radio):
"""Connect to a radio device, by driver name or serial number.
---
@ -87,7 +86,7 @@ def connect(radio):
return "Radio device not found", 400
@app.route("/radio/<radio>/disconnect")
# TODO: reset might use this
def disconnect(radio):
"""Disconnect from a radio device.
---
@ -112,8 +111,9 @@ def disconnect(radio):
return _error_message_json("Radio not connected"), 400
@app.route("/radio/<radio>/configure/<frequency>")
def configure(radio, frequency):
# TODO: add post parameters...
@app.route("ALEModem/Configure")
def configure():
"""Tune the radio to a frequency.
You must connect to the radio before attempting to configure it.
The radio must be configured before streaming can be started.
@ -141,7 +141,7 @@ def configure(radio, frequency):
return _error_message_json("Radio not connected"), 400
@app.route("/radio/<radio>/start")
@app.route("ALEModem/StartCall")
def start_stream(radio):
"""Start the radio stream.
Once the stream has been started, connect to the stream at:
@ -166,7 +166,7 @@ def start_stream(radio):
return _error_message_json(e.message), 400
@app.route("/radio/<radio>/end")
@app.route("ALEModem/EndCall")
def end_stream(radio):
"""Terminate the radio stream.
---
@ -186,11 +186,10 @@ def end_stream(radio):
radios[radio].end_stream()
return jsonify("message", "successfully ended radio stream"), 200
except Exception as e:
error_message = {"error_message": e.message}
return _error_message_json(e.message), 400
@app.route("/radio/<radio>/info")
@app.route("/info")
def radio_info(radio):
"""Get information about a radio.
---