-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMotionDetector.ts
41 lines (35 loc) · 1.08 KB
/
MotionDetector.ts
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
import { Cam, NotificationMessage, CamOptions } from 'onvif';
const TOPIC = /RuleEngine\/CellMotionDetector\/Motion$/;
export class MotionDetector {
lastIsMotion: boolean = false;
private constructor(private cam: Cam, private id: number) {}
static async create(
id: number,
options: CamOptions
): Promise<MotionDetector> {
return new Promise((resolve, reject) => {
const cam = new Cam(options, (error) => {
if (error) {
reject(error);
} else {
const monitor = new MotionDetector(cam, id);
resolve(monitor);
}
});
});
}
listen(onMotion: (motion: boolean, id: number) => void) {
this.cam.on('event', (message: NotificationMessage) => {
if (message?.topic?._?.match(TOPIC)) {
const motion = message.message.message.data.simpleItem.$.Value;
if (motion !== this.lastIsMotion) {
this.lastIsMotion = motion;
onMotion(motion, this.id);
}
}
});
}
close(): void {
this.cam.removeAllListeners('event');
}
}