-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcameras.go
More file actions
427 lines (335 loc) · 11.1 KB
/
cameras.go
File metadata and controls
427 lines (335 loc) · 11.1 KB
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
package securityspy
import (
"context"
"fmt"
"image"
"image/jpeg"
"io"
"net/http"
"net/url"
"os"
"regexp"
"strconv"
"strings"
"time"
"golift.io/ffmpeg"
)
// All returns interfaces for every camera.
func (c *Cameras) All() []*Camera {
return c.cameras
}
// ByNum returns an interface for a single camera.
func (c *Cameras) ByNum(number int) *Camera {
for _, cam := range c.cameras {
if cam.Number == number {
return cam
}
}
return nil
}
// ByName returns an interface for a single camera, using the name.
func (c *Cameras) ByName(name string) *Camera {
for _, cam := range c.cameras {
if cam.Name == name {
return cam
}
}
// Try again, case-insensitive.
for _, cam := range c.cameras {
if strings.EqualFold(cam.Name, name) {
return cam
}
}
return nil
}
// StreamVideo streams a segment of video from a camera using FFMPEG.
// VidOps defines the video options for the video stream.
// Returns an io.ReadCloser with the video stream. Close() it when finished.
func (c *Camera) StreamVideo(ops *VidOps, length time.Duration, maxsize int64) (io.ReadCloser, error) {
ffmpg := ffmpeg.Get(&ffmpeg.Config{
FFMPEG: c.server.Encoder,
Time: int(length.Seconds()),
Audio: true, // Sure why not.
Size: maxsize, // max file size (always goes over). use 2000000 for 2.5MB
Copy: true, // Always copy securityspy RTSP urls.
})
params := c.makeRequestParams(ops)
if p := c.server.Auth(); p != "" {
params.Set("auth", p)
}
args, video, err := ffmpg.GetVideo(c.makeVideoURL(ops, params), c.Name)
if err != nil {
return nil, fmt.Errorf("capturing stream for %s: %w; ffmpeg command: %s",
c.Name, err, redactAuth(strings.ReplaceAll(args, "\n", " ")))
}
return video, nil
}
// SaveVideo saves a segment of video from a camera to a file using FFMPEG.
func (c *Camera) SaveVideo(ops *VidOps, length time.Duration, maxsize int64, outputFile string) error {
if _, err := os.Stat(outputFile); !os.IsNotExist(err) {
return ErrPathExists
}
ffmpg := ffmpeg.Get(&ffmpeg.Config{
FFMPEG: c.server.Encoder,
Time: int(length.Seconds()),
Audio: true,
Size: maxsize, // max file size (always goes over). use 2000000 for 2.5MB
Copy: true, // Always copy securityspy RTSP urls.
})
params := c.makeRequestParams(ops)
if p := c.server.Auth(); p != "" {
params.Set("auth", p)
}
cmd, out, err := ffmpg.SaveVideo(c.makeVideoURL(ops, params), outputFile, c.Name)
if err != nil {
return fmt.Errorf("capturing video for %s: %w; ffmpeg command: %s; ffmpeg output: %s",
c.Name,
err,
redactAuth(strings.ReplaceAll(cmd, "\n", " ")),
redactAuth(trimTail(strings.ReplaceAll(out, "\n", " "), ffmpegOutputTail)),
)
}
return nil
}
// StreamMJPG makes a web request to retrieve a motion JPEG stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamMJPG(ops *VidOps) (io.ReadCloser, error) {
return c.StreamMJPGContext(context.Background(), ops)
}
// StreamMJPGContext makes a web request to retrieve a motion JPEG stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamMJPGContext(ctx context.Context, ops *VidOps) (io.ReadCloser, error) {
resp, err := c.server.GetContextClient(ctx, "++video", c.makeRequestParams(ops), c.streamHTTPClient())
if err != nil {
return nil, fmt.Errorf("getting video: %w", err)
}
return resp.Body, nil
}
// StreamH264 makes a web request to retrieve an H264 stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamH264(ops *VidOps) (io.ReadCloser, error) {
return c.StreamH264Context(context.Background(), ops)
}
// StreamH264Context makes a web request to retrieve an H264 stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamH264Context(ctx context.Context, ops *VidOps) (io.ReadCloser, error) {
resp, err := c.server.GetContextClient(ctx, "++stream", c.makeRequestParams(ops), c.streamHTTPClient())
if err != nil {
return nil, fmt.Errorf("getting stream: %w", err)
}
return resp.Body, nil
}
// StreamG711 makes a web request to retrieve an G711 audio stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamG711() (io.ReadCloser, error) {
return c.StreamG711Context(context.Background())
}
// StreamG711Context makes a web request to retrieve an G711 audio stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamG711Context(ctx context.Context) (io.ReadCloser, error) {
resp, err := c.server.GetContextClient(ctx, "++audio", c.makeRequestParams(nil), c.streamHTTPClient())
if err != nil {
return nil, fmt.Errorf("getting audio: %w", err)
}
return resp.Body, nil
}
// PostG711 makes a POST request to send audio to a camera with a speaker.
// Accepts an io.ReadCloser that will be closed. Probably an open file.
// This is untested. Report your success or failure!
func (c *Camera) PostG711(audio io.ReadCloser) ([]byte, error) {
if audio == nil {
return nil, nil
}
body, err := c.server.Post("++audio", c.makeRequestParams(nil), audio)
if err != nil {
return nil, fmt.Errorf("posting audio: %w", err)
}
return body, nil
}
// GetJPEG returns an images from a camera.
// VidOps defines the image size. ops.FPS is ignored.
// Makes several attempts in case of an error or time out.
func (c *Camera) GetJPEG(ops *VidOps) (image.Image, error) {
if ops == nil {
ops = &VidOps{}
}
ops.FPS = -1 // not used for single image
var lastErr error
for range c.server.JPEGTries() {
ctx, cancel := context.WithTimeout(context.Background(), c.server.TimeoutDur())
resp, err := c.server.GetContext(ctx, "++image", c.makeRequestParams(ops))
cancel()
if err != nil {
lastErr = fmt.Errorf("getting image: %w", err)
continue
}
jpgImage, err := jpeg.Decode(resp.Body)
_ = resp.Body.Close()
if err != nil {
lastErr = fmt.Errorf("decoding jpeg: %w", err)
continue
}
return jpgImage, nil
}
return nil, lastErr
}
// SaveJPEG gets a picture from a camera and puts it in a file (path).
// The file will be overwritten if it exists.
// VidOps defines the image size. ops.FPS is ignored.
func (c *Camera) SaveJPEG(ops *VidOps, path string) error {
if _, err := os.Stat(path); !os.IsNotExist(err) {
return ErrPathExists
}
jpgImage, err := c.GetJPEG(ops)
if err != nil {
return fmt.Errorf("getting jpeg: %w", err)
}
oFile, err := os.Create(path) //nolint:gosec // we are creating a file in a safe way.
if err != nil {
return fmt.Errorf("os.Create: %w", err)
}
defer oFile.Close()
err = jpeg.Encode(oFile, jpgImage, nil)
if err != nil {
return fmt.Errorf("encoding jpeg: %w", err)
}
return nil
}
// ToggleContinuous arms (true) or disarms (false) a camera's continuous capture mode.
func (c *Camera) ToggleContinuous(arm CameraArmMode) error {
params := make(url.Values)
params.Set("arm", string(arm))
if err := c.server.SimpleReq("++ssControlContinuous", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// ToggleMotion arms (true) or disarms (false) a camera's motion capture mode.
func (c *Camera) ToggleMotion(arm CameraArmMode) error {
params := make(url.Values)
params.Set("arm", string(arm))
if err := c.server.SimpleReq("++ssControlMotionCapture", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// ToggleActions arms (true) or disarms (false) a camera's actions.
func (c *Camera) ToggleActions(arm CameraArmMode) error {
params := make(url.Values)
params.Set("arm", string(arm))
if err := c.server.SimpleReq("++ssControlActions", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// TriggerMotion sets a camera as currently seeing motion.
// Other actions likely occur because of this!
func (c *Camera) TriggerMotion() error {
if err := c.server.SimpleReq("++triggermd", make(url.Values), c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// SetSchedule configures a camera mode's primary schedule.
// Get a list of schedules IDs you can use here from server.Info.Schedules.
// CameraModes are constants with names that start with CameraMode*.
func (c *Camera) SetSchedule(mode CameraMode, scheduleID int) error {
params := make(url.Values)
params.Set("mode", string(mode))
params.Set("id", strconv.Itoa(scheduleID))
if err := c.server.SimpleReq("++ssSetSchedule", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// SetScheduleOverride temporarily overrides a camera mode's current schedule.
// Get a list of overrides IDs you can use here from server.Info.ScheduleOverrides.
// CameraModes are constants with names that start with CameraMode*.
func (c *Camera) SetScheduleOverride(mode CameraMode, overrideID int) error {
params := make(url.Values)
params.Set("mode", string(mode))
params.Set("id", strconv.Itoa(overrideID))
if err := c.server.SimpleReq("++ssSetOverride", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
/* INTERFACE HELPER METHODS FOLLOW */
const (
maxQuality = 100
maxFPS = 60
ffmpegOutputTail = 2048
)
// makeRequestParams converts passed in ops to url.Values.
func (c *Camera) makeRequestParams(ops *VidOps) url.Values {
params := make(url.Values)
params.Set("cameraNum", strconv.Itoa(c.Number))
if ops == nil {
return params
}
if ops.Width != 0 {
params.Set("width", strconv.Itoa(ops.Width))
}
if ops.Height != 0 {
params.Set("height", strconv.Itoa(ops.Height))
}
if ops.Quality > maxQuality {
ops.Quality = maxQuality
}
if ops.Quality > 0 {
params.Set("quality", strconv.Itoa(ops.Quality))
}
if ops.FPS > maxFPS {
ops.FPS = maxFPS
}
if ops.FPS > 0 {
params.Set("req_fps", strconv.Itoa(ops.FPS))
}
return params
}
func (c *Camera) streamHTTPClient() *http.Client {
client := c.server.HTTPClient()
client.Timeout = 0
return client
}
// makeVideoURL creates a video URL for the camera based on if it's rtsp or not, and other input options.
func (c *Camera) makeVideoURL(ops *VidOps, params url.Values) string { //nolint:cyclop // oh well?
if ops != nil && ops.UseHTTP {
if ops.FPS > 0 {
params.Set("fps", strconv.Itoa(ops.FPS))
}
vcodec := "h264"
if ops.VCodec != "" {
vcodec = ops.VCodec
}
params.Del("req_fps")
params.Set("vcodec", vcodec)
return c.server.BaseURL() + "video?" + params.Encode()
}
if ops != nil && ops.FPS > 0 {
params.Set("fps", strconv.Itoa(ops.FPS))
}
vcodec, acodec := "h264", "aac"
if ops != nil && ops.VCodec != "" {
vcodec = ops.VCodec
}
if ops != nil && ops.ACodec != "" {
acodec = ops.ACodec
}
params.Del("req_fps")
params.Set("vcodec", vcodec)
params.Set("acodec", acodec)
baseURL := strings.Replace(c.server.BaseURL(), "https://", "rtsps://", 1)
baseURL = strings.Replace(baseURL, "http://", "rtsp://", 1)
return baseURL + "stream?" + params.Encode()
}
var authRegex = regexp.MustCompile(`auth=[^&\s]+`)
func redactAuth(input string) string {
return authRegex.ReplaceAllString(input, "auth=REDACTED")
}
func trimTail(input string, maximum int) string {
if maximum <= 0 || len(input) <= maximum {
return input
}
return input[len(input)-maximum:]
}