-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathunleash.ts
398 lines (342 loc) · 12 KB
/
unleash.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
import { tmpdir } from 'os';
import { EventEmitter } from 'events';
import Client from './client';
import Repository, { RepositoryInterface, SUPPORTED_SPEC_VERSION } from './repository';
import Metrics from './metrics';
import { Context } from './context';
import { Strategy, defaultStrategies } from './strategy';
import { EnhancedFeatureInterface, FeatureInterface } from './feature';
import { Variant, defaultVariant, VariantWithFeatureStatus } from './variant';
import {
FallbackFunction,
createFallbackFunction,
generateInstanceId,
generateHashOfConfig,
} from './helpers';
import { resolveBootstrapProvider } from './repository/bootstrap-provider';
import { ImpressionEvent, UnleashEvents } from './events';
import { UnleashConfig } from './unleash-config';
import FileStorageProvider from './repository/storage-provider-file';
import { resolveUrl } from './url-utils';
import { EventSource } from './event-source';
import { buildHeaders } from './request';
import { uuidv4 } from './uuidv4';
export { Strategy, UnleashEvents, UnleashConfig };
const BACKUP_PATH: string = tmpdir();
export interface StaticContext {
appName: string;
environment: string;
}
export class Unleash extends EventEmitter {
private static configSignature?: string;
private static instance?: Unleash;
private static instanceCount: number = 0;
private repository: RepositoryInterface;
private client: Client;
private metrics: Metrics;
private staticContext: StaticContext;
private synchronized: boolean = false;
private ready: boolean = false;
private started: boolean = false;
constructor({
appName,
environment = 'default',
projectName,
instanceId,
url,
refreshInterval = 15 * 1000,
metricsInterval = 60 * 1000,
metricsJitter = 0,
disableMetrics = false,
backupPath = BACKUP_PATH,
strategies = [],
repository,
namePrefix,
customHeaders,
customHeadersFunction,
timeout,
httpOptions,
tags,
bootstrap = {},
bootstrapOverride,
storageProvider,
disableAutoStart = false,
skipInstanceCountWarning = false,
experimentalMode = { type: 'polling', format: 'full' },
}: UnleashConfig) {
super();
Unleash.instanceCount++;
this.on(UnleashEvents.Error, (error) => {
// Only if there does not exist other listeners for this event.
if (this.listenerCount(UnleashEvents.Error) === 1) {
console.error(error);
}
});
if (!skipInstanceCountWarning && Unleash.instanceCount > 10) {
process.nextTick(() => {
const error = new Error('The unleash SDK has been initialized more than 10 times');
this.emit(UnleashEvents.Error, error);
});
}
if (!url) {
throw new Error('Unleash API "url" is required');
}
if (!appName) {
throw new Error('Unleash client "appName" is required');
}
const unleashUrl = this.cleanUnleashUrl(url);
const unleashInstanceId = generateInstanceId(instanceId);
const unleashConnectionId = uuidv4();
this.staticContext = { appName, environment };
const bootstrapProvider = resolveBootstrapProvider(bootstrap, appName, unleashInstanceId);
this.repository =
repository ||
new Repository({
projectName,
url: unleashUrl,
appName,
instanceId: unleashInstanceId,
connectionId: unleashConnectionId,
refreshInterval,
headers: customHeaders,
customHeadersFunction,
timeout,
httpOptions,
namePrefix,
tags,
bootstrapProvider,
bootstrapOverride,
mode: experimentalMode,
eventSource:
experimentalMode?.type === 'streaming'
? new EventSource(resolveUrl(unleashUrl, './client/streaming'), {
headers: buildHeaders({
appName,
instanceId: unleashInstanceId,
etag: undefined,
contentType: undefined,
custom: customHeaders,
specVersionSupported: SUPPORTED_SPEC_VERSION,
connectionId: unleashConnectionId,
}),
readTimeoutMillis: 60000, // start a new SSE connection when no heartbeat received in 1 minute
initialRetryDelayMillis: 2000,
maxBackoffMillis: 30000,
retryResetIntervalMillis: 60000,
jitterRatio: 0.5,
errorFilter: function () {
// retry all errors
return true;
},
})
: undefined,
storageProvider: storageProvider || new FileStorageProvider(backupPath),
});
this.repository.on(UnleashEvents.Ready, () => {
this.ready = true;
process.nextTick(() => {
this.emit(UnleashEvents.Ready);
});
});
this.repository.on(UnleashEvents.Error, (err) => {
// eslint-disable-next-line no-param-reassign
err.message = `Unleash Repository error: ${err.message}`;
this.emit(UnleashEvents.Error, err);
});
this.repository.on(UnleashEvents.Warn, (msg) => this.emit(UnleashEvents.Warn, msg));
this.repository.on(UnleashEvents.Unchanged, (msg) => this.emit(UnleashEvents.Unchanged, msg));
this.repository.on(UnleashEvents.Changed, (data) => {
this.emit(UnleashEvents.Changed, data);
// Only emit the fully synchronized event the first time.
if (!this.synchronized) {
this.synchronized = true;
process.nextTick(() => this.emit(UnleashEvents.Synchronized));
}
});
// setup client
const supportedStrategies = strategies.concat(defaultStrategies);
this.client = new Client(this.repository, supportedStrategies);
this.client.on(UnleashEvents.Error, (err) => this.emit(UnleashEvents.Error, err));
this.client.on(UnleashEvents.Impression, (e: ImpressionEvent) =>
this.emit(UnleashEvents.Impression, e),
);
this.metrics = new Metrics({
disableMetrics,
appName,
instanceId: unleashInstanceId,
connectionId: unleashConnectionId,
strategies: supportedStrategies.map((strategy: Strategy) => strategy.name),
metricsInterval,
metricsJitter,
url: unleashUrl,
headers: customHeaders,
customHeadersFunction,
timeout,
httpOptions,
});
this.metrics.on(UnleashEvents.Error, (err) => {
// eslint-disable-next-line no-param-reassign
err.message = `Unleash Metrics error: ${err.message}`;
this.emit(UnleashEvents.Error, err);
});
this.metrics.on(UnleashEvents.Warn, (msg) => this.emit(UnleashEvents.Warn, msg));
this.metrics.on(UnleashEvents.Sent, (payload) => this.emit(UnleashEvents.Sent, payload));
this.metrics.on(UnleashEvents.Count, (name, enabled) => {
this.emit(UnleashEvents.Count, name, enabled);
});
this.metrics.on(UnleashEvents.Registered, (payload) => {
this.emit(UnleashEvents.Registered, payload);
});
if (!disableAutoStart) {
process.nextTick(async () => this.start());
}
}
/**
* Will only give you an instance the first time you call the method,
* and then return the same instance.
* @param config The Unleash Config.
* @returns the Unleash instance
*/
static getInstance(config: UnleashConfig) {
const cleanConfig = {
...config,
// Remove complex objects
repository: undefined,
customHeadersFunction: undefined,
storageProvider: undefined,
};
const configSignature = generateHashOfConfig(cleanConfig);
if (Unleash.instance) {
if (configSignature !== Unleash.configSignature) {
throw new Error('You already have an Unleash instance with a different configuration.');
}
return Unleash.instance;
}
const instance = new Unleash(config);
Unleash.instance = instance;
Unleash.configSignature = configSignature;
return instance;
}
private cleanUnleashUrl(url: string): string {
let unleashUrl = url;
if (unleashUrl.endsWith('/features')) {
const oldUrl = unleashUrl;
process.nextTick(() =>
this.emit(
UnleashEvents.Warn,
`Unleash server URL "${oldUrl}" should no longer link directly to /features`,
),
);
unleashUrl = unleashUrl.replace(/\/features$/, '');
}
if (!unleashUrl.endsWith('/')) {
unleashUrl += '/';
}
return unleashUrl;
}
isSynchronized() {
return this.synchronized;
}
async start(): Promise<void> {
if (this.started) return;
this.started = true;
await Promise.all([this.repository.start(), this.metrics.start()]);
}
destroy() {
this.repository.stop();
this.metrics.stop();
Unleash.instance = undefined;
Unleash.configSignature = undefined;
Unleash.instanceCount--;
}
isEnabled(name: string, context?: Context, fallbackFunction?: FallbackFunction): boolean;
isEnabled(name: string, context?: Context, fallbackValue?: boolean): boolean;
isEnabled(name: string, context: Context = {}, fallback?: FallbackFunction | boolean): boolean {
const enhancedContext = { ...this.staticContext, ...context };
const fallbackFunc = createFallbackFunction(name, enhancedContext, fallback);
let result;
if (this.ready) {
result = this.client.isEnabled(name, enhancedContext, fallbackFunc);
} else {
result = fallbackFunc();
this.emit(
UnleashEvents.Warn,
`Unleash has not been initialized yet. isEnabled(${name}) defaulted to ${result}`,
);
}
this.count(name, result);
return result;
}
getVariant(
name: string,
context: Context = {},
fallbackVariant?: Variant,
): VariantWithFeatureStatus {
const enhancedContext = { ...this.staticContext, ...context };
let variant: VariantWithFeatureStatus;
if (this.ready) {
variant = this.client.getVariant(name, enhancedContext, fallbackVariant);
} else {
variant =
typeof fallbackVariant !== 'undefined'
? { ...fallbackVariant, feature_enabled: false, featureEnabled: false }
: { ...defaultVariant, featureEnabled: defaultVariant.feature_enabled! };
this.emit(
UnleashEvents.Warn,
`Unleash has not been initialized yet. isEnabled(${name}) defaulted to ${variant}`,
);
}
if (variant.name) {
this.countVariant(name, variant.name);
}
this.count(name, Boolean(variant.feature_enabled));
return variant;
}
forceGetVariant(name: string, context: Context = {}, fallbackVariant?: Variant): Variant {
const enhancedContext = { ...this.staticContext, ...context };
let variant: Variant;
if (this.ready) {
variant = this.client.forceGetVariant(name, enhancedContext, fallbackVariant);
} else {
variant =
typeof fallbackVariant !== 'undefined'
? { ...fallbackVariant, feature_enabled: false }
: defaultVariant;
this.emit(
UnleashEvents.Warn,
`Unleash has not been initialized yet. isEnabled(${name}) defaulted to ${variant}`,
);
}
if (variant.name) {
this.countVariant(name, variant.name);
}
this.count(name, variant.feature_enabled || false);
return variant;
}
getFeatureToggleDefinition(toggleName: string): FeatureInterface | undefined {
return this.repository.getToggle(toggleName);
}
getFeatureToggleDefinitions(): Array<FeatureInterface>;
getFeatureToggleDefinitions(withFullSegments: true): Array<EnhancedFeatureInterface>;
getFeatureToggleDefinitions(
withFullSegments?: any,
): Array<FeatureInterface | EnhancedFeatureInterface> {
if (withFullSegments === true) {
return this.repository.getTogglesWithSegmentData();
}
return this.repository.getToggles();
}
count(toggleName: string, enabled: boolean) {
this.metrics.count(toggleName, enabled);
}
countVariant(toggleName: string, variantName: string) {
this.metrics.countVariant(toggleName, variantName);
}
flushMetrics(): Promise<void> {
return this.metrics.sendMetrics();
}
async destroyWithFlush(): Promise<void> {
await this.flushMetrics();
this.destroy();
}
}