-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathindex.ts
634 lines (556 loc) · 19.2 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
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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
import { TinyEmitter } from 'tiny-emitter';
import Metrics from './metrics';
import type IStorageProvider from './storage-provider';
import InMemoryStorageProvider from './storage-provider-inmemory';
import LocalStorageProvider from './storage-provider-local';
import EventsHandler from './events-handler';
import {
computeContextHashValue,
parseHeaders,
urlWithContextAsQuery,
} from './util';
import { uuidv4 } from './uuidv4';
const DEFINED_FIELDS = [
'userId',
'sessionId',
'remoteAddress',
'currentTime',
] as const;
type DefinedField = (typeof DEFINED_FIELDS)[number];
interface IStaticContext {
appName: string;
environment?: string;
}
interface IMutableContext {
userId?: string;
sessionId?: string;
remoteAddress?: string;
currentTime?: string;
properties?: {
[key: string]: string;
};
}
type IContext = IStaticContext & IMutableContext;
const isDefinedContextField = (field: string): field is DefinedField => {
return DEFINED_FIELDS.includes(field as DefinedField);
};
interface IConfig extends IStaticContext {
url: URL | string;
clientKey: string;
disableRefresh?: boolean;
refreshInterval?: number;
metricsInterval?: number;
metricsIntervalInitial?: number;
disableMetrics?: boolean;
storageProvider?: IStorageProvider;
context?: IMutableContext;
fetch?: any;
createAbortController?: () => AbortController | null;
bootstrap?: IToggle[];
bootstrapOverride?: boolean;
headerName?: string;
customHeaders?: Record<string, string>;
impressionDataAll?: boolean;
usePOSTrequests?: boolean;
experimental?: IExperimentalConfig;
}
interface IExperimentalConfig {
togglesStorageTTL?: number;
}
interface IVariant {
name: string;
enabled: boolean;
feature_enabled?: boolean;
payload?: {
type: string;
value: string;
};
}
interface IToggle {
name: string;
enabled: boolean;
variant: IVariant;
impressionData: boolean;
}
export const EVENTS = {
INIT: 'initialized',
ERROR: 'error',
READY: 'ready',
UPDATE: 'update',
IMPRESSION: 'impression',
SENT: 'sent',
RECOVERED: 'recovered',
};
const IMPRESSION_EVENTS = {
IS_ENABLED: 'isEnabled',
GET_VARIANT: 'getVariant',
};
const defaultVariant: IVariant = {
name: 'disabled',
enabled: false,
feature_enabled: false,
};
const storeKey = 'repo';
export const lastUpdateKey = 'repoLastUpdateTimestamp';
type SdkState = 'initializing' | 'healthy' | 'error';
type LastUpdateTerms = {
key: string;
timestamp: number;
};
export const resolveFetch = () => {
try {
if (typeof window !== 'undefined' && 'fetch' in window) {
return fetch.bind(window);
}
if ('fetch' in globalThis) {
return fetch.bind(globalThis);
}
} catch (e) {
console.error('Unleash failed to resolve "fetch"', e);
}
return undefined;
};
const resolveAbortController = () => {
try {
if (typeof window !== 'undefined' && 'AbortController' in window) {
return () => new window.AbortController();
}
if ('fetch' in globalThis) {
return () => new globalThis.AbortController();
}
} catch (e) {
console.error('Unleash failed to resolve "AbortController" factory', e);
}
};
export class UnleashClient extends TinyEmitter {
private toggles: IToggle[] = [];
private impressionDataAll: boolean;
private context: IContext;
private timerRef?: any;
private storage: IStorageProvider;
private refreshInterval: number;
private url: URL;
private clientKey: string;
private etag = '';
private metrics: Metrics;
private ready: Promise<void>;
private fetch: any;
private createAbortController?: () => AbortController | null;
private abortController?: AbortController | null;
private bootstrap?: IToggle[];
private bootstrapOverride: boolean;
private headerName: string;
private eventsHandler: EventsHandler;
private customHeaders: Record<string, string>;
private readyEventEmitted = false;
private fetchedFromServer = false;
private usePOSTrequests = false;
private started = false;
private sdkState: SdkState;
private lastError: any;
private experimental: IExperimentalConfig;
private lastRefreshTimestamp: number;
private connectionId: string;
constructor({
storageProvider,
url,
clientKey,
disableRefresh = false,
refreshInterval = 30,
metricsInterval = 30,
metricsIntervalInitial = 2,
disableMetrics = false,
appName,
environment = 'default',
context,
fetch = resolveFetch(),
createAbortController = resolveAbortController(),
bootstrap,
bootstrapOverride = true,
headerName = 'Authorization',
customHeaders = {},
impressionDataAll = false,
usePOSTrequests = false,
experimental,
}: IConfig) {
super();
// Validations
if (!url) {
throw new Error('url is required');
}
if (!clientKey) {
throw new Error('clientKey is required');
}
if (!appName) {
throw new Error('appName is required.');
}
this.eventsHandler = new EventsHandler();
this.impressionDataAll = impressionDataAll;
this.toggles = bootstrap && bootstrap.length > 0 ? bootstrap : [];
this.url = url instanceof URL ? url : new URL(url);
this.clientKey = clientKey;
this.headerName = headerName;
this.customHeaders = customHeaders;
this.storage =
storageProvider ||
(typeof window !== 'undefined'
? new LocalStorageProvider()
: new InMemoryStorageProvider());
this.refreshInterval = disableRefresh ? 0 : refreshInterval * 1000;
this.context = { appName, environment, ...context };
this.usePOSTrequests = usePOSTrequests;
this.sdkState = 'initializing';
this.experimental = { ...experimental };
if (
experimental?.togglesStorageTTL &&
experimental?.togglesStorageTTL > 0
) {
this.experimental.togglesStorageTTL =
experimental.togglesStorageTTL * 1000;
}
this.lastRefreshTimestamp = 0;
this.ready = new Promise((resolve) => {
this.init()
.then(resolve)
.catch((error) => {
console.error(error);
this.sdkState = 'error';
this.emit(EVENTS.ERROR, error);
this.lastError = error;
resolve();
});
});
if (!fetch) {
console.error(
'Unleash: You must either provide your own "fetch" implementation or run in an environment where "fetch" is available.'
);
}
if (!createAbortController) {
console.error(
'Unleash: You must either provide your own "AbortController" implementation or run in an environment where "AbortController" is available.'
);
}
this.fetch = fetch;
this.createAbortController = createAbortController;
this.bootstrap =
bootstrap && bootstrap.length > 0 ? bootstrap : undefined;
this.bootstrapOverride = bootstrapOverride;
this.connectionId = uuidv4();
this.metrics = new Metrics({
onError: this.emit.bind(this, EVENTS.ERROR),
onSent: this.emit.bind(this, EVENTS.SENT),
appName,
metricsInterval,
disableMetrics,
url: this.url,
clientKey,
fetch,
headerName,
customHeaders,
metricsIntervalInitial,
connectionId: this.connectionId,
});
}
public getAllToggles(): IToggle[] {
return [...this.toggles];
}
public isEnabled(toggleName: string): boolean {
const toggle = this.toggles.find((t) => t.name === toggleName);
const enabled = toggle ? toggle.enabled : false;
this.metrics.count(toggleName, enabled);
if (toggle?.impressionData || this.impressionDataAll) {
const event = this.eventsHandler.createImpressionEvent(
this.context,
enabled,
toggleName,
IMPRESSION_EVENTS.IS_ENABLED,
toggle?.impressionData ?? undefined
);
this.emit(EVENTS.IMPRESSION, event);
}
return enabled;
}
public getVariant(toggleName: string): IVariant {
const toggle = this.toggles.find((t) => t.name === toggleName);
const enabled = toggle?.enabled || false;
const variant = toggle ? toggle.variant : defaultVariant;
if (variant.name) {
this.metrics.countVariant(toggleName, variant.name);
}
this.metrics.count(toggleName, enabled);
if (toggle?.impressionData || this.impressionDataAll) {
const event = this.eventsHandler.createImpressionEvent(
this.context,
enabled,
toggleName,
IMPRESSION_EVENTS.GET_VARIANT,
toggle?.impressionData ?? undefined,
variant.name
);
this.emit(EVENTS.IMPRESSION, event);
}
return { ...variant, feature_enabled: enabled };
}
public async updateToggles() {
if (this.timerRef || this.fetchedFromServer) {
await this.fetchToggles();
} else if (this.started) {
await new Promise<void>((resolve) => {
const listener = () => {
this.fetchToggles().then(() => {
this.off(EVENTS.READY, listener);
resolve();
});
};
this.once(EVENTS.READY, listener);
});
}
}
public async updateContext(context: IMutableContext): Promise<void> {
// @ts-expect-error Give the user a nicer error message when
// including static fields in the mutable context object
if (context.appName || context.environment) {
console.warn(
"appName and environment are static. They can't be updated with updateContext."
);
}
const staticContext = {
environment: this.context.environment,
appName: this.context.appName,
sessionId: this.context.sessionId,
};
this.context = { ...staticContext, ...context };
await this.updateToggles();
}
public getContext() {
return { ...this.context };
}
public setContextField(field: string, value: string) {
if (isDefinedContextField(field)) {
this.context = { ...this.context, [field]: value };
} else {
const properties = { ...this.context.properties, [field]: value };
this.context = { ...this.context, properties };
}
this.updateToggles();
}
public removeContextField(field: string): void {
if (isDefinedContextField(field)) {
this.context = { ...this.context, [field]: undefined };
} else if (typeof this.context.properties === 'object') {
delete this.context.properties[field];
}
this.updateToggles();
}
private setReady() {
this.readyEventEmitted = true;
this.emit(EVENTS.READY);
}
private async init(): Promise<void> {
const sessionId = await this.resolveSessionId();
this.context = { sessionId, ...this.context };
this.toggles = (await this.storage.get(storeKey)) || [];
this.lastRefreshTimestamp = await this.getLastRefreshTimestamp();
if (
this.bootstrap &&
(this.bootstrapOverride || this.toggles.length === 0)
) {
await this.storage.save(storeKey, this.bootstrap);
this.toggles = this.bootstrap;
this.sdkState = 'healthy';
// Indicates that the bootstrap is fresh, and avoid the initial fetch
await this.storeLastRefreshTimestamp();
this.setReady();
}
this.sdkState = 'healthy';
this.emit(EVENTS.INIT);
}
public async start(): Promise<void> {
this.started = true;
if (this.timerRef) {
console.error(
'Unleash SDK has already started, if you want to restart the SDK you should call client.stop() before starting again.'
);
return;
}
await this.ready;
this.metrics.start();
const interval = this.refreshInterval;
await this.initialFetchToggles();
if (interval > 0) {
this.timerRef = setInterval(() => this.fetchToggles(), interval);
}
}
public stop(): void {
if (this.timerRef) {
clearInterval(this.timerRef);
this.timerRef = undefined;
}
this.metrics.stop();
}
public isReady(): boolean {
return this.readyEventEmitted;
}
public getError() {
return this.sdkState === 'error' ? this.lastError : undefined;
}
public sendMetrics() {
return this.metrics.sendMetrics();
}
private async resolveSessionId(): Promise<string> {
if (this.context.sessionId) {
return this.context.sessionId;
}
let sessionId = await this.storage.get('sessionId');
if (!sessionId) {
sessionId = Math.floor(Math.random() * 1_000_000_000);
await this.storage.save('sessionId', sessionId.toString(10));
}
return sessionId.toString(10);
}
private getHeaders() {
return parseHeaders({
clientKey: this.clientKey,
connectionId: this.connectionId,
appName: this.context.appName,
customHeaders: this.customHeaders,
headerName: this.headerName,
etag: this.etag,
isPost: this.usePOSTrequests,
});
}
private async storeToggles(toggles: IToggle[]): Promise<void> {
this.toggles = toggles;
this.emit(EVENTS.UPDATE);
await this.storage.save(storeKey, toggles);
}
private isTogglesStorageTTLEnabled(): boolean {
return !!(
this.experimental?.togglesStorageTTL &&
this.experimental.togglesStorageTTL > 0
);
}
private isUpToDate(): boolean {
if (!this.isTogglesStorageTTLEnabled()) {
return false;
}
const now = Date.now();
const ttl = this.experimental?.togglesStorageTTL || 0;
return (
this.lastRefreshTimestamp > 0 &&
this.lastRefreshTimestamp <= now &&
now - this.lastRefreshTimestamp <= ttl
);
}
private async getLastRefreshTimestamp(): Promise<number> {
if (this.isTogglesStorageTTLEnabled()) {
const lastRefresh: LastUpdateTerms | undefined =
await this.storage.get(lastUpdateKey);
const contextHash = await computeContextHashValue(this.context);
return lastRefresh?.key === contextHash ? lastRefresh.timestamp : 0;
}
return 0;
}
private async storeLastRefreshTimestamp(): Promise<void> {
if (this.isTogglesStorageTTLEnabled()) {
this.lastRefreshTimestamp = Date.now();
const lastUpdateValue: LastUpdateTerms = {
key: await computeContextHashValue(this.context),
timestamp: this.lastRefreshTimestamp,
};
await this.storage.save(lastUpdateKey, lastUpdateValue);
}
}
private initialFetchToggles() {
if (this.isUpToDate()) {
if (!this.fetchedFromServer) {
this.fetchedFromServer = true;
this.setReady();
}
return;
}
return this.fetchToggles();
}
private async fetchToggles() {
if (this.fetch) {
if (this.abortController) {
this.abortController.abort();
}
this.abortController = this.createAbortController?.();
const signal = this.abortController
? this.abortController.signal
: undefined;
try {
const isPOST = this.usePOSTrequests;
const url = isPOST
? this.url
: urlWithContextAsQuery(this.url, this.context);
const method = isPOST ? 'POST' : 'GET';
const body = isPOST
? JSON.stringify({ context: this.context })
: undefined;
const response = await this.fetch(url.toString(), {
method,
cache: 'no-cache',
headers: this.getHeaders(),
body,
signal,
});
if (this.sdkState === 'error' && response.status < 400) {
this.sdkState = 'healthy';
this.emit(EVENTS.RECOVERED);
}
if (response.ok) {
this.etag = response.headers.get('ETag') || '';
const data = await response.json();
await this.storeToggles(data.toggles);
if (this.sdkState !== 'healthy') {
this.sdkState = 'healthy';
}
if (!this.fetchedFromServer) {
this.fetchedFromServer = true;
this.setReady();
}
this.storeLastRefreshTimestamp();
} else if (response.status === 304) {
this.storeLastRefreshTimestamp();
} else {
console.error(
'Unleash: Fetching feature toggles did not have an ok response'
);
this.sdkState = 'error';
this.emit(EVENTS.ERROR, {
type: 'HttpError',
code: response.status,
});
this.lastError = {
type: 'HttpError',
code: response.status,
};
}
} catch (e) {
if (
!(
typeof e === 'object' &&
e !== null &&
'name' in e &&
e.name === 'AbortError'
)
) {
console.error(
'Unleash: unable to fetch feature toggles',
e
);
this.sdkState = 'error';
this.emit(EVENTS.ERROR, e);
this.lastError = e;
}
} finally {
this.abortController = null;
}
}
}
}
// export storage providers from root module
export { type IStorageProvider, LocalStorageProvider, InMemoryStorageProvider };
export type { IConfig, IContext, IMutableContext, IVariant, IToggle };