-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathfrontend.py
261 lines (228 loc) · 9.01 KB
/
frontend.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
import os
import time
from functools import wraps
from pathlib import Path
from urllib.parse import quote_plus
from flask import (
Flask,
Response,
make_response,
redirect,
render_template,
request,
send_from_directory,
)
from werkzeug.exceptions import NotFound
from wyze_bridge import WyzeBridge
from wyzebridge import config, web_ui
from wyzebridge.auth import WbAuth
from wyzebridge.web_ui import url_for
def create_app():
app = Flask(__name__)
wb = WyzeBridge()
try:
wb.start()
except RuntimeError as ex:
print(ex)
print("Please ensure your host is up to date.")
exit()
def auth_required(view):
@wraps(view)
def wrapped_view(*args, **kwargs):
if not wb.api.auth:
return redirect(url_for("wyze_login"))
return web_ui.auth.login_required(view)(*args, **kwargs)
return wrapped_view
@app.route("/login", methods=["GET", "POST"])
def wyze_login():
if wb.api.auth:
return redirect(url_for("index"))
if request.method == "GET":
return render_template(
"login.html",
api=WbAuth.api,
version=config.VERSION,
)
tokens = request.form.get("tokens")
refresh = request.form.get("refresh")
if tokens or refresh:
wb.api.token_auth(tokens=tokens, refresh=refresh)
return {"status": "success"}
credentials = {
"email": request.form.get("email"),
"password": request.form.get("password"),
"key_id": request.form.get("keyId"),
"api_key": request.form.get("apiKey"),
}
if all(credentials.values()):
wb.api.creds.update(**credentials)
return {"status": "success"}
return {"status": "missing credentials"}
@app.route("/")
@auth_required
def index():
if not (columns := request.args.get("columns")):
columns = request.cookies.get("number_of_columns", "2")
if not (refresh := request.args.get("refresh")):
refresh = request.cookies.get("refresh_period", "30")
number_of_columns = int(columns) if columns.isdigit() else 0
refresh_period = int(refresh) if refresh.isdigit() else 0
show_video = bool(request.cookies.get("show_video"))
autoplay = bool(request.cookies.get("autoplay"))
if "autoplay" in request.args:
autoplay = True
if "video" in request.args:
show_video = True
elif "snapshot" in request.args:
show_video = False
video_format = request.cookies.get("video", "webrtc")
if req_video := ({"webrtc", "hls", "kvs"} & set(request.args)):
video_format = req_video.pop()
resp = make_response(
render_template(
"index.html",
cam_data=web_ui.all_cams(wb.streams, wb.api.total_cams),
number_of_columns=number_of_columns,
refresh_period=refresh_period,
api=WbAuth.api,
version=config.VERSION,
webrtc=bool(config.BRIDGE_IP),
show_video=show_video,
video_format=video_format.lower(),
autoplay=autoplay,
)
)
resp.set_cookie("number_of_columns", str(number_of_columns))
resp.set_cookie("refresh_period", str(refresh_period))
resp.set_cookie("show_video", "1" if show_video else "")
resp.set_cookie("video", video_format)
fullscreen = "fullscreen" in request.args or bool(
request.cookies.get("fullscreen")
)
resp.set_cookie("fullscreen", "1" if fullscreen else "")
if order := request.args.get("order"):
resp.set_cookie("camera_order", quote_plus(order))
return resp
@app.route("/api/sse_status")
@auth_required
def sse_status():
"""Server sent event for camera status."""
return Response(
web_ui.sse_generator(wb.streams.get_sse_status),
mimetype="text/event-stream",
)
@app.route("/api")
@auth_required
def api_all_cams():
return web_ui.all_cams(wb.streams, wb.api.total_cams)
@app.route("/api/<string:cam_name>")
@auth_required
def api_cam(cam_name: str):
if cam := wb.streams.get_info(cam_name):
return cam | web_ui.format_stream(cam_name)
return {"error": f"Could not find camera [{cam_name}]"}
@app.route("/api/<cam_name>/<cam_cmd>", methods=["GET", "PUT", "POST"])
@app.route("/api/<cam_name>/<cam_cmd>/<path:payload>")
@auth_required
def api_cam_control(cam_name: str, cam_cmd: str, payload: str | dict = ""):
"""API Endpoint to send tutk commands to the camera."""
if not payload and (args := request.values.to_dict()):
args.pop("api", None)
payload = next(iter(args.values())) if len(args) == 1 else args
if not payload and request.is_json:
json = request.get_json()
if isinstance(json, dict):
payload = json if len(json) > 1 else list(json.values())[0]
else:
payload = json
elif not payload and request.data:
payload = request.data.decode()
return wb.streams.send_cmd(cam_name, cam_cmd.lower(), payload)
@app.route("/signaling/<string:name>")
@auth_required
def webrtc_signaling(name):
if "kvs" in request.args:
return wb.api.get_kvs_signal(name)
return web_ui.get_webrtc_signal(name, WbAuth.api)
@app.route("/webrtc/<string:name>")
@auth_required
def webrtc(name):
"""View WebRTC direct from camera."""
if (webrtc := wb.api.get_kvs_signal(name)).get("result") == "ok":
return make_response(render_template("webrtc.html", webrtc=webrtc))
return webrtc
@app.route("/snapshot/<string:img_file>")
@auth_required
def rtsp_snapshot(img_file: str):
"""Use ffmpeg to take a snapshot from the rtsp stream."""
if wb.streams.get_rtsp_snap(Path(img_file).stem):
return send_from_directory(config.IMG_PATH, img_file)
return thumbnail(img_file)
@app.route("/img/<string:img_file>")
@auth_required
def img(img_file: str):
"""
Serve an existing local image or take a new snapshot from the rtsp stream.
Use the exp parameter to fetch a new snapshot if the existing one is too old.
"""
try:
if exp := request.args.get("exp"):
created_at = os.path.getmtime(config.IMG_PATH + img_file)
if time.time() - created_at > int(exp):
raise NotFound
return send_from_directory(config.IMG_PATH, img_file)
except (NotFound, FileNotFoundError, ValueError):
return rtsp_snapshot(img_file)
@app.route("/thumb/<string:img_file>")
@auth_required
def thumbnail(img_file: str):
if wb.api.save_thumbnail(Path(img_file).stem):
return send_from_directory(config.IMG_PATH, img_file)
return redirect("/static/notavailable.svg", code=307)
@app.route("/photo/<string:img_file>")
@auth_required
def boa_photo(img_file: str):
"""Take a photo on the camera and grab it over the boa http server."""
uri = Path(img_file).stem
if not (cam := wb.streams.get(uri)):
return redirect("/static/notavailable.svg", code=307)
if photo := web_ui.boa_snapshot(cam):
return send_from_directory(config.IMG_PATH, f"{uri}_{photo[0]}")
return redirect(f"/img/{img_file}", code=307)
@app.route("/restart/<string:restart_cmd>")
@auth_required
def restart_bridge(restart_cmd: str):
"""
Restart parts of the wyze-bridge.
/restart/cameras: Restart camera connections.
/restart/rtsp_server: Restart rtsp-simple-server.
/restart/all: Restart camera connections and rtsp-simple-server.
"""
if restart_cmd == "cameras":
wb.streams.stop_all()
wb.streams.monitor_streams(wb.mtx.health_check)
elif restart_cmd == "rtsp_server":
wb.mtx.restart()
elif restart_cmd == "cam_data":
wb.refresh_cams()
restart_cmd = "cameras"
elif restart_cmd == "all":
wb.restart(fresh_data=True)
restart_cmd = "cameras,rtsp_server"
else:
return {"result": "error"}
return {"result": "ok", "restart": restart_cmd.split(",")}
@app.route("/cams.m3u8")
@auth_required
def iptv_playlist():
"""
Generate an m3u8 playlist with all enabled cameras.
"""
cameras = web_ui.format_streams(wb.streams.get_all_cam_info())
resp = make_response(render_template("m3u8.html", cameras=cameras))
resp.headers.set("content-type", "application/x-mpegURL")
return resp
return app
if __name__ == "__main__":
app = create_app()
app.run(debug=False, host="0.0.0.0", port=5000)