-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathapi.ts
523 lines (474 loc) · 15.2 KB
/
api.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
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
import type { RefreshTokenAuth, SessionOptions } from './rest-client.ts'
import { clientApi, deviceApi, RingRestClient } from './rest-client.ts'
import { Location } from './location.ts'
import type {
BaseStation,
BeamBridge,
CameraData,
ChimeData,
IntercomHandsetAudioData,
OnvifCameraData,
ProfileResponse,
PushNotification,
ThirdPartyGarageDoorOpener,
UnknownDevice,
UserLocation,
} from './ring-types.ts'
import { PushNotificationAction, RingDeviceType } from './ring-types.ts'
import type { AnyCameraData } from './ring-camera.ts'
import { RingCamera } from './ring-camera.ts'
import { RingChime } from './ring-chime.ts'
import { combineLatest, EMPTY, merge, Subject } from 'rxjs'
import {
debounceTime,
startWith,
switchMap,
throttleTime,
} from 'rxjs/operators'
import {
clearTimeouts,
enableDebug,
logDebug,
logError,
logInfo,
} from './util.ts'
import { setFfmpegPath } from './ffmpeg.ts'
import { Subscribed } from './subscribed.ts'
import { PushReceiver } from '@eneris/push-receiver'
import { RingIntercom } from './ring-intercom.ts'
import JSONbig from 'json-bigint'
export interface RingApiOptions extends SessionOptions {
locationIds?: string[]
cameraStatusPollingSeconds?: number
locationModePollingSeconds?: number
avoidSnapshotBatteryDrain?: boolean
debug?: boolean
ffmpegPath?: string
externalPorts?: {
start: number
end: number
}
}
export class RingApi extends Subscribed {
public readonly restClient
public readonly onRefreshTokenUpdated
constructor(public readonly options: RingApiOptions & RefreshTokenAuth) {
super()
this.restClient = new RingRestClient(this.options)
this.onRefreshTokenUpdated =
this.restClient.onRefreshTokenUpdated.asObservable()
if (options.debug) {
enableDebug()
}
const { locationIds, ffmpegPath } = options
if (locationIds && !locationIds.length) {
logError(
'Your Ring config has `"locationIds": []`, which means no locations will be used and no devices will be found.',
)
}
if (ffmpegPath) {
setFfmpegPath(ffmpegPath)
}
}
async fetchRingDevices() {
const {
doorbots,
chimes,
authorized_doorbots: authorizedDoorbots,
stickup_cams: stickupCams,
base_stations: baseStations,
beams_bridges: beamBridges,
other: otherDevices,
} = await this.restClient.request<{
doorbots: CameraData[]
chimes: ChimeData[]
authorized_doorbots: CameraData[]
stickup_cams: CameraData[]
base_stations: BaseStation[]
beams_bridges: BeamBridge[]
other: (
| IntercomHandsetAudioData
| OnvifCameraData
| ThirdPartyGarageDoorOpener
| UnknownDevice
)[]
}>({ url: clientApi('ring_devices') }),
onvifCameras = [] as OnvifCameraData[],
intercoms = [] as IntercomHandsetAudioData[],
thirdPartyGarageDoorOpeners = [] as ThirdPartyGarageDoorOpener[],
unknownDevices = [] as UnknownDevice[]
otherDevices.forEach((device) => {
switch (device.kind) {
case RingDeviceType.OnvifCamera:
onvifCameras.push(device as OnvifCameraData)
break
case RingDeviceType.IntercomHandsetAudio:
intercoms.push(device as IntercomHandsetAudioData)
break
case RingDeviceType.ThirdPartyGarageDoorOpener:
thirdPartyGarageDoorOpeners.push(device as ThirdPartyGarageDoorOpener)
break
default:
unknownDevices.push(device)
break
}
})
return {
doorbots,
chimes,
authorizedDoorbots,
stickupCams,
allCameras: [
...doorbots,
...stickupCams,
...authorizedDoorbots,
...onvifCameras,
] as AnyCameraData[],
baseStations,
beamBridges,
onvifCameras,
thirdPartyGarageDoorOpeners,
intercoms,
unknownDevices,
}
}
private listenForDeviceUpdates(
cameras: RingCamera[],
chimes: RingChime[],
intercoms: RingIntercom[],
) {
const { cameraStatusPollingSeconds } = this.options
if (!cameraStatusPollingSeconds) {
return
}
const devices = [...cameras, ...chimes, ...intercoms],
onDeviceRequestUpdate = merge(
...devices.map((device) => device.onRequestUpdate),
),
onUpdateReceived = new Subject(),
onPollForStatusUpdate = cameraStatusPollingSeconds
? onUpdateReceived.pipe(debounceTime(cameraStatusPollingSeconds * 1000))
: EMPTY,
camerasById = cameras.reduce(
(byId, camera) => {
byId[camera.id] = camera
return byId
},
{} as { [id: number]: RingCamera },
),
chimesById = chimes.reduce(
(byId, chime) => {
byId[chime.id] = chime
return byId
},
{} as { [id: number]: RingChime },
),
intercomsById = intercoms.reduce(
(byId, intercom) => {
byId[intercom.id] = intercom
return byId
},
{} as { [id: number]: RingIntercom },
)
if (!cameras.length && !chimes.length && !intercoms.length) {
return
}
this.addSubscriptions(
merge(onDeviceRequestUpdate, onPollForStatusUpdate)
.pipe(
throttleTime(500),
switchMap(() => this.fetchRingDevices().catch(() => null)),
)
.subscribe((response) => {
onUpdateReceived.next(null)
if (!response) {
return
}
response.allCameras.forEach((data) => {
const camera = camerasById[data.id]
if (camera) {
camera.updateData(data)
}
})
response.chimes.forEach((data) => {
const chime = chimesById[data.id]
if (chime) {
chime.updateData(data)
}
})
response.intercoms.forEach((data) => {
const intercom = intercomsById[data.id]
if (intercom) {
intercom.updateData(data)
}
})
}),
)
if (cameraStatusPollingSeconds) {
onUpdateReceived.next(null) // kick off polling
}
}
private async registerPushReceiver(
cameras: RingCamera[],
intercoms: RingIntercom[],
) {
const credentials =
this.restClient._internalOnly_pushNotificationCredentials?.config &&
this.restClient._internalOnly_pushNotificationCredentials,
pushReceiver = new PushReceiver({
firebase: {
apiKey: 'AIzaSyCv-hdFBmmdBBJadNy-TFwB-xN_H5m3Bk8',
projectId: 'ring-17770',
messagingSenderId: '876313859327', // for Ring android app. 703521446232 for ring-site
appId: '1:876313859327:android:e10ec6ddb3c81f39',
},
credentials,
debug: false,
}),
devicesById: { [id: number]: RingCamera | RingIntercom | undefined } = {},
sendToDevice = (id: number, notification: PushNotification) => {
devicesById[id]?.processPushNotification(notification)
},
onPushNotificationToken = new Subject<string>()
for (const camera of cameras) {
devicesById[camera.id] = camera
}
for (const intercom of intercoms) {
devicesById[intercom.id] = intercom
}
pushReceiver.onCredentialsChanged(({ newCredentials }) => {
// Store the new credentials in the rest client so that it can be used for subsequent restarts
this.restClient._internalOnly_pushNotificationCredentials = newCredentials
// Send the new credentials to the server
onPushNotificationToken.next(newCredentials.fcm.token)
})
this.addSubscriptions(
combineLatest([
onPushNotificationToken,
this.restClient.onSession.pipe(startWith(undefined)), // combined but not used here, just to trigger another request when session is updated
]).subscribe(async ([token]) => {
try {
await this.restClient.request({
url: clientApi('device'),
method: 'PATCH',
json: {
device: {
metadata: {
...this.restClient.baseSessionMetadata,
pn_dict_version: '2.0.0',
pn_service: 'fcm',
},
os: 'android',
push_notification_token: token,
},
},
})
} catch (e) {
logError(e)
}
}),
)
pushReceiver.on('ON_DISCONNECT', () => {
pushReceiver.whenReady.catch((e) => {
logError(
'Connection to the push notification server has failed unexpectedly',
)
logError(
'If this happens repeatedly, verify connections to TCP/5228 are not blocked by firewall or IDS/IPS policies, and that DNS Adblock rules allow mtalk.google.com',
)
logError(e.message)
})
})
try {
await pushReceiver.connect()
} catch (e) {
logError('Failed to connect push notification receiver')
logError(e)
}
const startTime = Date.now()
pushReceiver.onNotification(({ message }) => {
// Ignore messages received in the first two seconds after connecting
// These are likely duplicates, and we aren't currently storying persistent ids anywhere to avoid re-processing them
if (Date.now() - startTime < 2000) {
logInfo(
'Ignoring push notification received in first two seconds after starting up',
)
return
}
try {
const messageData = {} as any
// Each message field is a JSON string, so we need to parse them each individually
for (const p in message.data) {
try {
// If it's a JSON string, parse it into an object
messageData[p] = JSONbig({ storeAsString: true }).parse(
message.data[p] as string,
)
} catch {
// Otherwise just assign the value directly
messageData[p] = message.data[p]
}
}
const notification = messageData as PushNotification
if ('android_config' in notification) {
const deviceId = notification.data?.device?.id
if (deviceId) {
sendToDevice(deviceId, notification)
}
const eventCategory = notification.android_config.category
if (
eventCategory !== PushNotificationAction.Ding &&
eventCategory !== PushNotificationAction.Motion &&
eventCategory !== PushNotificationAction.IntercomDing
) {
logDebug(
'Received v2 push notification with unknown category: ' +
eventCategory,
)
logDebug(JSON.stringify(message))
}
} else if (
'data' in notification &&
'gcmData' in notification.data &&
'alarm_meta' in notification.data.gcmData
) {
const deviceId = notification.data.gcmData.alarm_meta.device_zid
if (deviceId) {
sendToDevice(deviceId, notification)
}
} else {
// This is not a v1 or v2 style notification, so we can't process it
logDebug('Received push notification in unknown format')
logDebug(JSON.stringify(message))
return
}
} catch (e) {
logError(e)
}
})
// If we already have credentials and they haven't been changed during registration, use them immediately
if (
credentials &&
credentials?.fcm?.token ===
this.restClient._internalOnly_pushNotificationCredentials?.fcm?.token
) {
onPushNotificationToken.next(credentials.fcm.token)
}
}
async fetchRawLocations() {
const { user_locations: rawLocations } = await this.restClient.request<{
user_locations: UserLocation[]
}>({ url: deviceApi('locations') })
if (!rawLocations) {
throw new Error(
'The Ring account which you used to generate a refresh token does not have any associated locations. Please use an account that has access to at least one location.',
)
}
return rawLocations
}
fetchAmazonKeyLocks() {
return this.restClient.request<any[]>({
url: 'https://api.ring.com/integrations/amazonkey/v2/devices/lock_associations',
})
}
async fetchAndBuildLocations() {
const rawLocations = await this.fetchRawLocations(),
{
authorizedDoorbots,
chimes,
doorbots,
allCameras,
baseStations,
beamBridges,
intercoms,
} = await this.fetchRingDevices(),
locationIdsWithHubs = [...baseStations, ...beamBridges].map(
(x) => x.location_id,
),
cameras = allCameras.map(
(data) =>
new RingCamera(
data,
doorbots.includes(data as CameraData) ||
authorizedDoorbots.includes(data as CameraData) ||
data.kind.startsWith('doorbell'),
this.restClient,
this.options.avoidSnapshotBatteryDrain || false,
),
),
ringChimes = chimes.map((data) => new RingChime(data, this.restClient)),
ringIntercoms = intercoms.map(
(data) => new RingIntercom(data, this.restClient),
),
locations = rawLocations
.filter((location) => {
return (
!Array.isArray(this.options.locationIds) ||
this.options.locationIds.includes(location.location_id)
)
})
.map(
(location) =>
new Location(
location,
cameras.filter(
(x) => x.data.location_id === location.location_id,
),
ringChimes.filter(
(x) => x.data.location_id === location.location_id,
),
ringIntercoms.filter(
(x) => x.data.location_id === location.location_id,
),
{
hasHubs: locationIdsWithHubs.includes(location.location_id),
hasAlarmBaseStation: baseStations.some(
(station) => station.location_id === location.location_id,
),
locationModePollingSeconds:
this.options.locationModePollingSeconds,
},
this.restClient,
),
)
this.listenForDeviceUpdates(cameras, ringChimes, ringIntercoms)
this.registerPushReceiver(cameras, ringIntercoms).catch((e) => {
logError(e)
})
return locations
}
private locationsPromise: Promise<Location[]> | undefined
getLocations() {
if (!this.locationsPromise) {
this.locationsPromise = this.fetchAndBuildLocations()
}
return this.locationsPromise
}
async getCameras() {
const locations = await this.getLocations()
return locations.reduce(
(cameras, location) => [...cameras, ...location.cameras],
[] as RingCamera[],
)
}
getProfile() {
return this.restClient.request<ProfileResponse>({
url: clientApi('profile'),
})
}
disconnect() {
this.unsubscribe()
if (!this.locationsPromise) {
return
}
this.getLocations()
.then((locations) =>
locations.forEach((location) => location.disconnect()),
)
.catch((e) => {
logError(e)
})
this.restClient.clearTimeouts()
clearTimeouts()
}
}