1
- from flask import Blueprint , jsonify , Response , request , send_from_directory , current_app , stream_with_context
1
+ from flask import jsonify , Response , request , send_from_directory , current_app , stream_with_context
2
2
from app .api import api_bp
3
- from pathlib import Path
4
3
import os
5
4
import queue
5
+ from ..version import __version__
6
+
6
7
7
8
@api_bp .route ("/status" , methods = ["GET" ])
8
9
def status ():
10
+ """
11
+ Returns the health status of the API.
12
+ ---
13
+ get:
14
+ summary: Check API health status
15
+ description: Returns the current status of the API to indicate whether it is operational.
16
+ tags: ["Incoming"]
17
+ responses:
18
+ 200:
19
+ description: API is operational.
20
+ content:
21
+ application/json:
22
+ schema:
23
+ type: object
24
+ properties:
25
+ status:
26
+ type: string
27
+ example: "ok"
28
+ """
9
29
return jsonify ({"status" : "ok" })
10
30
31
+
11
32
@api_bp .route ('/status_stream' )
12
33
def status_stream ():
34
+ """
35
+ Streams real-time status updates as server-sent events.
36
+ ---
37
+ get:
38
+ summary: Real-time status updates
39
+ description: Streams real-time system status as server-sent events.
40
+ tags: ["Incoming"]
41
+ responses:
42
+ 200:
43
+ description: Stream of status events.
44
+ content:
45
+ text/event-stream:
46
+ schema:
47
+ type: string
48
+ """
13
49
status_manager = current_app .config ["status_manager" ]
14
50
return Response (stream_with_context (status_manager .generate_status ()), content_type = "text/event-stream" )
15
51
52
+
16
53
@api_bp .route ("/enable_detection" , methods = ["POST" ])
17
- def start_motion_detection ():
54
+ def enable_detection ():
55
+ """
56
+ Enables motion detection.
57
+ ---
58
+ post:
59
+ summary: Enable motion detection
60
+ description: Starts the motion detection process.
61
+ tags: ["Incoming"]
62
+ responses:
63
+ 200:
64
+ description: Motion detection started successfully.
65
+ content:
66
+ application/json:
67
+ schema:
68
+ type: object
69
+ properties:
70
+ status:
71
+ type: string
72
+ 500:
73
+ description: Error enabling motion detection.
74
+ """
18
75
motion_detector = current_app .config ["motion_detector" ]
19
76
try :
20
77
if not motion_detector .is_running :
@@ -24,9 +81,30 @@ def start_motion_detection():
24
81
return jsonify ({"status" : "Motion detection is already running." })
25
82
except Exception as e :
26
83
return jsonify ({"error" : str (e )}), 500
27
-
84
+
85
+
28
86
@api_bp .route ("/disable_detection" , methods = ["POST" ])
29
- def stop_motion_detection ():
87
+ def disable_detection ():
88
+ """
89
+ Disables motion detection.
90
+ ---
91
+ post:
92
+ summary: Disable motion detection
93
+ description: Stops the motion detection process.
94
+ tags: ["Incoming"]
95
+ responses:
96
+ 200:
97
+ description: Motion detection stopped successfully.
98
+ content:
99
+ application/json:
100
+ schema:
101
+ type: object
102
+ properties:
103
+ status:
104
+ type: string
105
+ 500:
106
+ description: Error disabling motion detection.
107
+ """
30
108
motion_detector = current_app .config ["motion_detector" ]
31
109
try :
32
110
if motion_detector .is_running :
@@ -37,17 +115,63 @@ def stop_motion_detection():
37
115
except Exception as e :
38
116
return jsonify ({"error" : str (e )}), 500
39
117
118
+
40
119
@api_bp .route ("/captures" , methods = ["GET" ])
41
120
def list_captures ():
121
+ """
122
+ Lists all captured files.
123
+ ---
124
+ get:
125
+ summary: List captured files
126
+ description: Retrieves a list of all captured files in the output directory.
127
+ tags: ["Incoming"]
128
+ responses:
129
+ 200:
130
+ description: List of captures.
131
+ content:
132
+ application/json:
133
+ schema:
134
+ type: object
135
+ properties:
136
+ captures:
137
+ type: array
138
+ items:
139
+ type: string
140
+ 500:
141
+ description: Error listing captures.
142
+ """
42
143
file_manager = current_app .config ["file_manager" ]
43
144
try :
44
145
files = os .listdir (file_manager .output_dir )
45
146
return jsonify ({"captures" : files })
46
147
except Exception as e :
47
148
return jsonify ({"error" : str (e )}), 500
48
149
150
+
49
151
@api_bp .route ("/captures/<path:input_path>" , methods = ["GET" ])
50
152
def download_capture (input_path ):
153
+ """
154
+ Downloads a specific captured file.
155
+ ---
156
+ get:
157
+ summary: Download a captured file
158
+ description: Downloads a specific file from the output directory.
159
+ tags: ["Incoming"]
160
+ parameters:
161
+ - in: path
162
+ name: input_path
163
+ required: true
164
+ schema:
165
+ type: string
166
+ description: Path or filename of the capture to download.
167
+ responses:
168
+ 200:
169
+ description: File downloaded successfully.
170
+ content:
171
+ application/octet-stream: {}
172
+ 500:
173
+ description: Error downloading file.
174
+ """
51
175
file_manager = current_app .config ["file_manager" ]
52
176
output_dir = file_manager .output_dir .resolve ()
53
177
@@ -62,18 +186,75 @@ def download_capture(input_path):
62
186
return send_from_directory (output_dir , str (safe_relative_path ))
63
187
except Exception as e :
64
188
return jsonify ({"error" : str (e )}), 500
65
-
189
+
190
+
66
191
@api_bp .route ('/snapshot' , methods = ['POST' ])
67
192
def take_snapshot ():
193
+ """
194
+ Takes a snapshot using the camera.
195
+ ---
196
+ post:
197
+ summary: Take a snapshot
198
+ description: Captures a still image using the camera.
199
+ tags: ["Incoming"]
200
+ responses:
201
+ 200:
202
+ description: Snapshot taken successfully.
203
+ content:
204
+ application/json:
205
+ schema:
206
+ type: object
207
+ properties:
208
+ message:
209
+ type: string
210
+ filename:
211
+ type: string
212
+ 500:
213
+ description: Error taking snapshot.
214
+ """
68
215
camera_manager = current_app .config ["camera_manager" ]
69
216
try :
70
217
full_path = camera_manager .take_snapshot ()
71
218
return jsonify ({"message" : "Snapshot taken." , "filename" : str (full_path )})
72
219
except Exception as e :
73
220
return jsonify ({"error" : str (e )}), 500
74
-
221
+
222
+
75
223
@api_bp .route ('/record' , methods = ['POST' ])
76
224
def record ():
225
+ """
226
+ Records a video for a specified duration.
227
+ ---
228
+ post:
229
+ summary: Record a video
230
+ description: Starts a video recording for a given duration.
231
+ tags: ["Incoming"]
232
+ requestBody:
233
+ required: true
234
+ content:
235
+ application/json:
236
+ schema:
237
+ type: object
238
+ properties:
239
+ duration:
240
+ type: integer
241
+ description: Recording duration in seconds.
242
+ example: 10
243
+ responses:
244
+ 200:
245
+ description: Video recorded successfully.
246
+ content:
247
+ application/json:
248
+ schema:
249
+ type: object
250
+ properties:
251
+ filename:
252
+ type: string
253
+ 400:
254
+ description: Invalid input data.
255
+ 500:
256
+ description: Error during recording.
257
+ """
77
258
duration = request .json .get ('duration' , 0 )
78
259
if duration <= 0 :
79
260
return jsonify ({"error" : "Invalid duration" }), 400
@@ -90,4 +271,4 @@ def record():
90
271
else :
91
272
return jsonify ({"error" : "Recording failed or another recording is already in progress" }), 500
92
273
except queue .Empty :
93
- return jsonify ({"error" : "Recording timed out" }), 500
274
+ return jsonify ({"error" : "Recording timed out" }), 500
0 commit comments