-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathBrowserDataManager.ts
More file actions
280 lines (247 loc) · 7.9 KB
/
BrowserDataManager.ts
File metadata and controls
280 lines (247 loc) · 7.9 KB
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
import {
BaseDataManager,
Configuration,
Context,
DataSourceErrorKind,
DataSourcePaths,
DataSourceState,
FlagManager,
httpErrorMessage,
internal,
LDEmitter,
LDHeaders,
LDIdentifyOptions,
makeRequestor,
Platform,
shouldRetry,
sleep,
} from '@launchdarkly/js-client-sdk-common';
import { readFlagsFromBootstrap } from './bootstrap';
import { BrowserIdentifyOptions } from './BrowserIdentifyOptions';
import { ValidatedOptions } from './options';
const logTag = '[BrowserDataManager]';
export default class BrowserDataManager extends BaseDataManager {
// If streaming is forced on or off, then we follow that setting.
// Otherwise we automatically manage streaming state.
private _forcedStreaming?: boolean = undefined;
private _automaticStreamingState: boolean = false;
private _secureModeHash?: string;
// +-----------+-----------+---------------+
// | forced | automatic | state |
// +-----------+-----------+---------------+
// | true | false | streaming |
// | true | true | streaming |
// | false | true | not streaming |
// | false | false | not streaming |
// | undefined | true | streaming |
// | undefined | false | not streaming |
// +-----------+-----------+---------------+
constructor(
platform: Platform,
flagManager: FlagManager,
credential: string,
config: Configuration,
private readonly _browserConfig: ValidatedOptions,
getPollingPaths: () => DataSourcePaths,
getStreamingPaths: () => DataSourcePaths,
baseHeaders: LDHeaders,
emitter: LDEmitter,
diagnosticsManager?: internal.DiagnosticsManager,
) {
super(
platform,
flagManager,
credential,
config,
getPollingPaths,
getStreamingPaths,
baseHeaders,
emitter,
diagnosticsManager,
);
this._forcedStreaming = _browserConfig.streaming;
}
private _debugLog(message: any, ...args: any[]) {
this.logger.debug(`${logTag} ${message}`, ...args);
}
override async identify(
identifyResolve: () => void,
identifyReject: (err: Error) => void,
context: Context,
identifyOptions?: LDIdentifyOptions,
): Promise<void> {
if (this.closed) {
this._debugLog('Identify called after data manager was closed.');
return;
}
this.context = context;
const browserIdentifyOptions = identifyOptions as BrowserIdentifyOptions | undefined;
if (browserIdentifyOptions?.hash) {
this.setConnectionParams({
queryParameters: [{ key: 'h', value: browserIdentifyOptions.hash }],
});
} else {
this.setConnectionParams();
}
this._secureModeHash = browserIdentifyOptions?.hash;
if (browserIdentifyOptions?.bootstrap) {
this._finishIdentifyFromBootstrap(context, browserIdentifyOptions.bootstrap, identifyResolve);
} else {
if (await this.flagManager.loadCached(context)) {
this._debugLog('Identify - Flags loaded from cache. Continuing to initialize via a poll.');
}
await this._finishIdentifyFromPoll(context, identifyResolve, identifyReject);
}
this._updateStreamingState();
}
/**
* A helper function for the initial poll request. This is mainly here to facilitate
* the retry logic.
*
* @param context - LDContext to request payload for.
* @returns Payload as a string.
*/
private async _requestPayload(context: Context): Promise<string> {
const plainContextString = JSON.stringify(Context.toLDContext(context));
const pollingRequestor = makeRequestor(
plainContextString,
this.config.serviceEndpoints,
this.getPollingPaths(),
this.platform.requests,
this.platform.encoding!,
this.baseHeaders,
[],
this.config.withReasons,
this.config.useReport,
this._secureModeHash,
);
// NOTE: We are currently hardcoding in 3 retries for the initial
// poll. We can make this configurable in the future.
const maxRetries = 3;
let lastError: any;
for (let attempt = 0; attempt <= maxRetries; attempt += 1) {
try {
// eslint-disable-next-line no-await-in-loop
return await pollingRequestor.requestPayload();
} catch (e: any) {
if (!shouldRetry(e)) {
throw e;
}
lastError = e;
// NOTE: current we are hardcoding the retry interval to 1 second.
// We can make this configurable in the future.
if (attempt < maxRetries) {
this._debugLog(httpErrorMessage(e, 'initial poll request', 'will retry'));
// eslint-disable-next-line no-await-in-loop
await sleep(1000);
}
}
}
throw lastError;
}
private async _finishIdentifyFromPoll(
context: Context,
identifyResolve: () => void,
identifyReject: (err: Error) => void,
) {
try {
this.dataSourceStatusManager.requestStateUpdate(DataSourceState.Initializing);
const payload = await this._requestPayload(context);
try {
const listeners = this.createStreamListeners(context, identifyResolve);
const putListener = listeners.get('put');
putListener!.processJson(putListener!.deserializeData(payload));
} catch (e: any) {
this.dataSourceStatusManager.reportError(
DataSourceErrorKind.InvalidData,
e.message ?? 'Could not parse poll response',
);
}
} catch (e: any) {
this.dataSourceStatusManager.reportError(
DataSourceErrorKind.NetworkError,
e.message ?? 'unexpected network error',
e.status,
);
identifyReject(e);
}
}
private _finishIdentifyFromBootstrap(
context: Context,
bootstrap: unknown,
identifyResolve: () => void,
) {
this.flagManager.setBootstrap(context, readFlagsFromBootstrap(this.logger, bootstrap));
this._debugLog('Identify - Initialization completed from bootstrap');
identifyResolve();
}
setForcedStreaming(streaming?: boolean) {
this._forcedStreaming = streaming;
this._updateStreamingState();
}
setAutomaticStreamingState(streaming: boolean) {
this._automaticStreamingState = streaming;
this._updateStreamingState();
}
private _updateStreamingState() {
const shouldBeStreaming =
this._forcedStreaming ||
(this._automaticStreamingState && this._forcedStreaming === undefined);
this._debugLog(
`Updating streaming state. forced(${this._forcedStreaming}) automatic(${this._automaticStreamingState})`,
);
if (shouldBeStreaming) {
this._startDataSource();
} else {
this._stopDataSource();
}
}
private _stopDataSource() {
if (this.updateProcessor) {
this._debugLog('Stopping update processor.');
}
this.updateProcessor?.close();
this.updateProcessor = undefined;
}
private _startDataSource() {
if (this.updateProcessor) {
this._debugLog('Update processor already active. Not changing state.');
return;
}
if (!this.context) {
this._debugLog('Context not set, not starting update processor.');
return;
}
this._debugLog('Starting update processor.');
this._setupConnection(this.context);
}
private _setupConnection(
context: Context,
identifyResolve?: () => void,
identifyReject?: (err: Error) => void,
) {
const rawContext = Context.toLDContext(context)!;
this.updateProcessor?.close();
const plainContextString = JSON.stringify(Context.toLDContext(context));
const pollingRequestor = makeRequestor(
plainContextString,
this.config.serviceEndpoints,
this.getPollingPaths(),
this.platform.requests,
this.platform.encoding!,
this.baseHeaders,
[],
this.config.withReasons,
this.config.useReport,
this._secureModeHash,
);
this.createStreamingProcessor(
rawContext,
context,
pollingRequestor,
identifyResolve,
identifyReject,
);
this.updateProcessor!.start();
}
}