-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathindex.ts
410 lines (335 loc) · 11.3 KB
/
index.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
import { Observable, ReplaySubject, EMPTY } from "rxjs";
import { fromEventPattern, firstValueFrom } from "rxjs";
import { filter, shareReplay, share, switchMap } from "rxjs/operators";
import { FirebaseApp, FirebaseUser, FirebaseDevice } from "./firebase";
import { UserWithMetadata } from "./firebase";
import { Timesync } from "../timesync";
import { SubscriptionManager } from "../subscriptions/SubscriptionManager";
import { heartbeatAwareStatus } from "../utils/heartbeat";
import { filterInternalKeys } from "../utils/filterInternalKeys";
import { Client } from "../types/client";
import { Action, Actions } from "../types/actions";
import { Metrics } from "../types/metrics";
import { SDKOptions } from "../types/options";
import { SkillsClient, DeviceSkill } from "../types/skill";
import { Credentials, CustomToken } from "../types/credentials";
import { EmailAndPassword } from "../types/credentials";
import { ChangeSettings } from "../types/settings";
import { Subscription } from "../types/subscriptions";
import { DeviceStatus } from "../types/status";
import { DeviceInfo, DeviceSelector, OSVersion } from "../types/deviceInfo";
import { UserClaims } from "../types/user";
import { OAuthRemoveResponse } from "../types/oauth";
import { Experiment } from "../types/experiment";
import { TransferDeviceOptions } from "../utils/transferDevice";
export {
credentialWithLink,
createUser,
SERVER_TIMESTAMP,
__firebase
} from "./firebase";
/**
* @hidden
*/
export class CloudClient implements Client {
public user;
public userClaims;
protected options: SDKOptions;
protected firebaseApp: FirebaseApp;
protected firebaseUser: FirebaseUser;
protected firebaseDevice: FirebaseDevice;
protected timesync: Timesync;
protected subscriptionManager: SubscriptionManager;
protected status$: Observable<DeviceStatus>;
protected osVersion$: Observable<OSVersion>;
/**
* @internal
*/
private _selectedDevice = new ReplaySubject<DeviceInfo | null | undefined>(1);
constructor(options: SDKOptions) {
this.options = options;
this.subscriptionManager = new SubscriptionManager();
this.firebaseApp = new FirebaseApp(options);
this.firebaseUser = new FirebaseUser(this.firebaseApp);
this._selectedDevice.next(undefined);
this.status$ = heartbeatAwareStatus(
this.observeNamespace("status").pipe(share())
).pipe(filterInternalKeys(), shareReplay(1));
this.osVersion$ = this.observeNamespace("info/osVersion").pipe(
shareReplay(1)
);
this.firebaseUser.onAuthStateChanged().subscribe((user) => {
this.user = user;
});
this.firebaseUser.onUserClaimsChange().subscribe((userClaims) => {
this.userClaims = userClaims;
});
this.onDeviceChange().subscribe((device) => {
if (this.firebaseDevice) {
this.firebaseDevice.disconnect();
}
if (!device) {
return;
}
this.firebaseDevice = new FirebaseDevice({
deviceId: device.deviceId,
firebaseApp: this.firebaseApp,
dependencies: {
subscriptionManager: this.subscriptionManager
}
});
if (this.options.timesync) {
this.timesync = new Timesync({
status$: this.status(),
getTimesync: this.firebaseDevice.getTimesync.bind(this.firebaseDevice)
});
}
});
}
public onDeviceChange(): Observable<DeviceInfo> {
return this._selectedDevice
.asObservable()
.pipe(filter((value) => value !== undefined));
}
public osVersion(): Observable<OSVersion> {
return this.osVersion$;
}
// Automatically select device when user logs in
private async setAutoSelectedDevice(): Promise<DeviceInfo | null> {
// Select based on `deviceId` passed
if (this.options.deviceId) {
return await this.selectDevice((devices) => {
return devices.find(
(device) => device.deviceId === this.options.deviceId
);
});
}
// Auto select first-claimed device
if (!this.options.deviceId && this.options.autoSelectDevice) {
return await this.selectDevice((devices) => {
// Auto select first device
return devices[0];
});
}
return null;
}
public get actions(): Actions {
return {
dispatch: (action) => {
return this.firebaseDevice.dispatchAction(action);
}
};
}
public async dispatchAction(action: Action): Promise<any> {
return await this.firebaseDevice.dispatchAction(action);
}
public async disconnect(): Promise<any> {
return this.firebaseApp.disconnect();
}
public async getInfo(): Promise<any> {
return await this.firebaseDevice.getInfo();
}
public async login(credentials: Credentials): Promise<any> {
if (this.user) {
return Promise.reject(`Already logged in.`);
}
const auth = await this.firebaseUser.login(credentials);
const selectedDevice = await this.setAutoSelectedDevice();
return {
...auth,
selectedDevice
};
}
public async logout(): Promise<any> {
if (this.firebaseDevice) {
this.firebaseDevice.disconnect();
}
return await this.firebaseUser.logout();
}
public onAuthStateChanged() {
return this.firebaseUser.onAuthStateChanged().pipe(
switchMap(async (user): Promise<UserWithMetadata> => {
if (!user) {
return null;
}
const selectedDevice = this.didSelectDevice()
? await this.getSelectedDevice()
: await this.setAutoSelectedDevice();
const userWithMetadata: UserWithMetadata = Object.assign(user, {
selectedDevice
});
return userWithMetadata;
})
);
}
public getDevices() {
return this.firebaseUser.getDevices();
}
public addDevice(deviceId: string): Promise<void> {
return this.firebaseUser.addDevice(deviceId);
}
public async removeDevice(deviceId: string): Promise<void> {
const [hasError, errorMessage] = await this.firebaseUser
.removeDevice(deviceId)
.then(() => [false])
.catch((error) => [true, error]);
if (hasError) {
return Promise.reject(errorMessage);
}
const selectedDevice = await this.getSelectedDevice();
if (selectedDevice?.deviceId === deviceId) {
this._selectedDevice.next(null);
}
}
public async transferDevice(options: TransferDeviceOptions): Promise<void> {
const [hasError, error] = await this.firebaseUser
.transferDevice(options)
.then(() => [false])
.catch((error) => [true, error]);
if (hasError) {
return Promise.reject(error);
}
const selectedDevice = await this.getSelectedDevice();
if (selectedDevice?.deviceId === options.deviceId) {
this._selectedDevice.next(null);
}
}
public onUserDevicesChange(): Observable<DeviceInfo[]> {
return this.firebaseUser.onUserDevicesChange();
}
public onUserClaimsChange(): Observable<UserClaims> {
return this.firebaseUser.onUserClaimsChange();
}
public async didSelectDevice(): Promise<boolean> {
const selectedDevice = await this.getSelectedDevice();
return !!selectedDevice;
}
public async selectDevice(
deviceSelector: DeviceSelector
): Promise<DeviceInfo> {
const devices = await this.getDevices();
if (!devices) {
return Promise.reject(
`Did not find any devices for this user. Make sure your device is claimed by your Neurosity account.`
);
}
const deviceTupleSelector = (devices: DeviceInfo[]) =>
devices.find((device) => {
if (!Array.isArray(deviceSelector)) {
return false;
}
const [deviceKey, deviceValue] = deviceSelector;
return (
JSON.stringify(device?.[deviceKey]) === JSON.stringify(deviceValue)
);
});
const device =
typeof deviceSelector === "function"
? deviceSelector(devices)
: deviceTupleSelector(devices);
if (!device) {
return Promise.reject(
`A device was not provided. Try returning a device from the devicesList provided in the callback.`
);
}
const hasPermission = await this.firebaseUser.hasDevicePermission(
device.deviceId
);
if (!hasPermission) {
return Promise.reject(`Rejected device access due to permissions.`);
}
this._selectedDevice.next(device);
return device;
}
public async getSelectedDevice(): Promise<DeviceInfo | null> {
return await firstValueFrom(this._selectedDevice);
}
public status(): Observable<DeviceStatus> {
return this.status$;
}
public observeNamespace(namespace: string): Observable<any> {
const getNamespaceValues = () =>
fromEventPattern(
(handler) => this.firebaseDevice.onNamespace(namespace, handler),
(handler) => this.firebaseDevice.offNamespace(namespace, handler)
);
return this.onDeviceChange().pipe(
switchMap((selectedDevice) => {
return selectedDevice ? getNamespaceValues() : EMPTY;
})
);
}
public async onceNamespace(namespace: string): Promise<any> {
return await this.firebaseDevice.onceNamespace(namespace);
}
public get metrics(): Metrics {
return {
next: (metricName: string, metricValue: any): void => {
this.firebaseDevice.nextMetric(metricName, metricValue);
},
on: (subscription: Subscription, callback: Function): Function => {
return this.firebaseDevice.onMetric(subscription, callback);
},
subscribe: (subscription: Subscription): Subscription => {
const subscriptionCreated =
this.firebaseDevice.subscribeToMetric(subscription);
this.subscriptionManager.add(subscriptionCreated);
return subscriptionCreated;
},
unsubscribe: (subscription: Subscription, listener: Function): void => {
this.subscriptionManager.remove(subscription);
this.firebaseDevice.unsubscribeFromMetric(subscription);
this.firebaseDevice.removeMetricListener(subscription, listener);
}
};
}
public createAccount(credentials: EmailAndPassword) {
return this.firebaseUser.createAccount(credentials);
}
public deleteAccount() {
return this.firebaseUser.deleteAccount();
}
public createBluetoothToken(): Promise<string> {
return this.firebaseDevice.createBluetoothToken();
}
public createCustomToken(): Promise<CustomToken> {
return this.firebaseUser.createCustomToken();
}
public removeOAuthAccess(): Promise<OAuthRemoveResponse> {
return this.firebaseUser.removeOAuthAccess();
}
public onUserExperiments(): Observable<Experiment[]> {
return this.firebaseUser.onUserExperiments();
}
public deleteUserExperiment(experimentId: string): Promise<void> {
return this.firebaseUser.deleteUserExperiment(experimentId);
}
public get skills(): SkillsClient {
return {
get: async (bundleId: string): Promise<DeviceSkill> => {
return this.firebaseDevice.getSkill(bundleId);
}
};
}
public get timestamp(): number {
return this.options.timesync ? this.timesync.timestamp : Date.now();
}
public getTimesyncOffset(): number {
return this.timesync.offset;
}
public changeSettings(settings: ChangeSettings): Promise<void> {
return this.firebaseDevice.changeSettings(settings);
}
public goOffline() {
this.firebaseApp.goOffline();
}
public goOnline() {
this.firebaseApp.goOnline();
}
/**
* @internal
*/
public __getApp() {
return this.firebaseApp.app;
}
}