-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
Copy path_abstract.js
416 lines (352 loc) · 11.9 KB
/
_abstract.js
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
import _ from 'lodash';
import angular from 'angular';
import 'ui/promises';
import { RequestQueueProvider } from '../_request_queue';
import { ErrorHandlersProvider } from '../_error_handlers';
import { FetchProvider } from '../fetch';
import { FieldWildcardProvider } from '../../field_wildcard';
import { getHighlightRequest } from '../../../../core_plugins/kibana/common/highlight';
import { BuildESQueryProvider } from './build_query';
export function AbstractDataSourceProvider(Private, Promise, PromiseEmitter, config) {
const requestQueue = Private(RequestQueueProvider);
const errorHandlers = Private(ErrorHandlersProvider);
const courierFetch = Private(FetchProvider);
const buildESQuery = Private(BuildESQueryProvider);
const { fieldWildcardFilter } = Private(FieldWildcardProvider);
const getConfig = (...args) => config.get(...args);
function SourceAbstract(initialState, strategy) {
const self = this;
self._instanceid = _.uniqueId('data_source');
self._state = (function () {
// state can be serialized as JSON, and passed back in to restore
if (initialState) {
if (typeof initialState === 'string') {
return JSON.parse(initialState);
} else {
return _.cloneDeep(initialState);
}
} else {
return {};
}
}());
// set internal state values
self._methods.forEach(function (name) {
self[name] = function (val) {
if (val == null) {
delete self._state[name];
} else {
self._state[name] = val;
}
return self;
};
});
self.history = [];
self._fetchStrategy = strategy;
self._requestStartHandlers = [];
}
/*****
* PUBLIC API
*****/
/**
* Get values from the state
* @param {string} name - The name of the property desired
* @return {any} - the value found
*/
SourceAbstract.prototype.get = function (name) {
let self = this;
while (self) {
if (self._state[name] !== void 0) return self._state[name];
self = self.getParent();
}
};
/**
* Get the value from our own state, don't traverse up the chain
* @param {string} name - The name of the property desired
* @return {any} - the value found
*/
SourceAbstract.prototype.getOwn = function (name) {
if (this._state[name] !== void 0) return this._state[name];
};
/**
* Change the entire state of a SourceAbstract
* @param {object|string} state - The SourceAbstract's new state, or a
* string of the state value to set
*/
SourceAbstract.prototype.set = function (state, val) {
const self = this;
if (typeof state === 'string') {
// the getter and setter methods check for undefined explicitly
// to identify getters and null to identify deletion
if (val === undefined) {
val = null;
}
self[state](val);
} else {
self._state = state;
}
return self;
};
/**
* Create a new dataSource object of the same type
* as this, which inherits this dataSource's properties
* @return {SourceAbstract}
*/
SourceAbstract.prototype.extend = function () {
return (new this.Class()).inherits(this);
};
/**
* return a simple, encodable object representing the state of the SourceAbstract
* @return {[type]} [description]
*/
SourceAbstract.prototype.toJSON = function () {
return _.clone(this._state);
};
/**
* Create a string representation of the object
* @return {[type]} [description]
*/
SourceAbstract.prototype.toString = function () {
return angular.toJson(this.toJSON());
};
/**
* Put a request in to the courier that this Source should
* be fetched on the next run of the courier
* @return {Promise}
*/
SourceAbstract.prototype.onResults = function (handler) {
const self = this;
return new PromiseEmitter(function (resolve, reject) {
const defer = Promise.defer();
defer.promise.then(resolve, reject);
self._createRequest(defer);
}, handler);
};
/**
* Noop
*/
SourceAbstract.prototype.getParent = function () {
return this._parent;
};
/**
* similar to onResults, but allows a seperate loopy code path
* for error handling.
*
* @return {Promise}
*/
SourceAbstract.prototype.onError = function (handler) {
const self = this;
return new PromiseEmitter(function (resolve, reject) {
const defer = Promise.defer();
defer.promise.then(resolve, reject);
errorHandlers.push({
source: self,
defer: defer
});
}, handler);
};
/**
* Fetch just this source ASAP
*
* ONLY USE IF YOU WILL BE USING THE RESULTS
* provided by the returned promise, otherwise
* call #fetchQueued()
*
* @async
*/
SourceAbstract.prototype.fetch = function () {
const self = this;
let req = _.first(self._myStartableQueued());
if (!req) {
req = self._createRequest();
}
courierFetch.these([req]);
return req.getCompletePromise();
};
/**
* Fetch this source and reject the returned Promise on error
*
* Otherwise behaves like #fetch()
*
* @async
*/
SourceAbstract.prototype.fetchAsRejectablePromise = function () {
const self = this;
let req = _.first(self._myStartableQueued());
if (!req) {
req = self._createRequest();
}
req.setErrorHandler((request, error) => {
request.defer.reject(error);
request.abort();
});
courierFetch.these([req]);
return req.getCompletePromise();
};
/**
* Fetch all pending requests for this source ASAP
* @async
*/
SourceAbstract.prototype.fetchQueued = function () {
return courierFetch.these(this._myStartableQueued());
};
/**
* Cancel all pending requests for this dataSource
* @return {undefined}
*/
SourceAbstract.prototype.cancelQueued = function () {
requestQueue
.get(this._fetchStrategy)
.filter(req => req.source === this)
.forEach(req => req.abort());
};
/**
* Completely destroy the SearchSource.
* @return {undefined}
*/
SourceAbstract.prototype.destroy = function () {
this.cancelQueued();
this._requestStartHandlers.length = 0;
};
/**
* Add a handler that will be notified whenever requests start
* @param {Function} handler
* @return {undefined}
*/
SourceAbstract.prototype.onRequestStart = function (handler) {
this._requestStartHandlers.push(handler);
};
/**
* Called by requests of this search source when they are started
* @param {Courier.Request} request
* @return {Promise<undefined>}
*/
SourceAbstract.prototype.requestIsStarting = function (request) {
this.activeFetchCount = (this.activeFetchCount || 0) + 1;
this.history = [request];
return Promise
.map(this._requestStartHandlers, fn => fn(this, request))
.then(_.noop);
};
/**
* Called by requests of this search source when they are done
* @param {Courier.Request} request
* @return {undefined}
*/
SourceAbstract.prototype.requestIsStopped = function (/* request */) {
this.activeFetchCount -= 1;
};
/*****
* PRIVATE API
*****/
SourceAbstract.prototype._myStartableQueued = function () {
return requestQueue
.getStartable(this._fetchStrategy)
.filter(req => req.source === this);
};
SourceAbstract.prototype._createRequest = function () {
throw new Error('_createRequest must be implemented by subclass');
};
/**
* Walk the inheritance chain of a source and return it's
* flat representaion (taking into account merging rules)
* @returns {Promise}
* @resolved {Object|null} - the flat state of the SourceAbstract
*/
SourceAbstract.prototype._flatten = function () {
const type = this._getType();
// the merged state of this dataSource and it's ancestors
const flatState = {};
// function used to write each property from each state object in the chain to flat state
const root = this;
// start the chain at this source
let current = this;
// call the ittr and return it's promise
return (function ittr() {
// itterate the _state object (not array) and
// pass each key:value pair to source._mergeProp. if _mergeProp
// returns a promise, then wait for it to complete and call _mergeProp again
return Promise.all(_.map(current._state, function ittr(value, key) {
if (Promise.is(value)) {
return value.then(function (value) {
return ittr(value, key);
});
}
const prom = root._mergeProp(flatState, value, key);
return Promise.is(prom) ? prom : null;
}))
.then(function () {
// move to this sources parent
const parent = current.getParent();
// keep calling until we reach the top parent
if (parent) {
current = parent;
return ittr();
}
});
}())
.then(function () {
if (type === 'search') {
// This is down here to prevent the circular dependency
flatState.body = flatState.body || {};
const computedFields = flatState.index.getComputedFields();
flatState.body.stored_fields = computedFields.storedFields;
flatState.body.script_fields = flatState.body.script_fields || {};
flatState.body.docvalue_fields = flatState.body.docvalue_fields || [];
_.extend(flatState.body.script_fields, computedFields.scriptFields);
flatState.body.docvalue_fields = _.union(flatState.body.docvalue_fields, computedFields.docvalueFields);
if (flatState.body._source) {
// exclude source fields for this index pattern specified by the user
const filter = fieldWildcardFilter(flatState.body._source.excludes);
flatState.body.docvalue_fields = flatState.body.docvalue_fields.filter(filter);
}
// if we only want to search for certain fields
const fields = flatState.fields;
if (fields) {
// filter out the docvalue_fields, and script_fields to only include those that we are concerned with
flatState.body.docvalue_fields = _.intersection(flatState.body.docvalue_fields, fields);
flatState.body.script_fields = _.pick(flatState.body.script_fields, fields);
// request the remaining fields from both stored_fields and _source
const remainingFields = _.difference(fields, _.keys(flatState.body.script_fields));
flatState.body.stored_fields = remainingFields;
_.set(flatState.body, '_source.includes', remainingFields);
}
flatState.body.query = buildESQuery(flatState.index, flatState.query, flatState.filters);
if (flatState.highlightAll != null) {
if (flatState.highlightAll && flatState.body.query) {
flatState.body.highlight = getHighlightRequest(flatState.body.query, getConfig);
}
delete flatState.highlightAll;
}
/**
* Translate a filter into a query to support es 3+
* @param {Object} filter - The filter to translate
* @return {Object} the query version of that filter
*/
const translateToQuery = function (filter) {
if (!filter) return;
if (filter.query) {
return filter.query;
}
return filter;
};
// re-write filters within filter aggregations
(function recurse(aggBranch) {
if (!aggBranch) return;
Object.keys(aggBranch).forEach(function (id) {
const agg = aggBranch[id];
if (agg.filters) {
// translate filters aggregations
const filters = agg.filters.filters;
Object.keys(filters).forEach(function (filterId) {
filters[filterId] = translateToQuery(filters[filterId]);
});
}
recurse(agg.aggs || agg.aggregations);
});
}(flatState.body.aggs || flatState.body.aggregations));
}
return flatState;
});
};
return SourceAbstract;
}