This repository was archived by the owner on Jan 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
1577 lines (1292 loc) · 49.1 KB
/
index.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
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
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
var _ = _interopDefault(require('lodash'));
// primitive graphql types
var PRIMITIVES = ['String', 'Int', 'Float', 'Boolean', 'ID'];
function defaultBefore() {
return Promise.resolve();
}
function isPrimitive(type) {
if (_.isArray(type)) {
if (type.length !== 1) return false;
type = type[0];
}
return _.includes(PRIMITIVES, type);
}
function getType(fieldDef) {
if (_.isArray(fieldDef) && fieldDef.length === 1 || _.isString(fieldDef)) return fieldDef;else if (_.has(fieldDef, 'type')) return fieldDef.type;
}
function makeFieldDef(fieldDef) {
var newDef = _.merge({}, _.isObject(fieldDef) ? fieldDef : {});
var type = getType(fieldDef);
if (type) newDef.type = type;
return newDef;
}
function computeUniques(fields) {
var mixed = {},
uniques = [];
_.forEach(fields, function (fieldDef, field) {
var type = _.isArray(fieldDef.type) ? _.get(fieldDef, 'type[0]') : fieldDef.type;
if (fieldDef.unique === true) {
uniques.push([{ field: field, type: type }]);
} else if (_.isString(fieldDef.uniqueWith)) {
if (!_.isArray(mixed[fieldDef.uniqueWith])) mixed[fieldDef.uniqueWith] = [{ field: field, type: type }];else mixed[fieldDef.uniqueWith].push({ field: field, type: type });
}
});
_.forEach(mixed, function (compound) {
return uniques.push(compound);
});
return _.uniq(uniques);
}
function getArgs(opType, definition) {
var _this = this;
var args = {};
var fields = definition.fields,
_backend = definition._backend;
if (opType === 'query') {
args.limit = { type: 'Int' };
}
// examine each field
_.forEach(fields, function (fieldDef, fieldName) {
var type = getType(fieldDef);
var typeName = _.isArray(type) && type.length === 1 ? type[0] : type;
if (!type) return true;
fieldDef = fields[fieldName] = makeFieldDef(fieldDef);
if (isPrimitive(type)) {
args[fieldName] = { type: type };
} else {
var fieldTypeBackend = _.get(_this._types, '["' + typeName + '"]._backend');
if (fieldDef.resolve !== false && opType === 'query' && fieldTypeBackend) {
fieldDef.resolve = fieldDef.resolve || 'read' + type;
} else {
// add args for related types
if (fieldDef.belongsTo) {
args[fieldName] = { type: 'String' };
} else if (fieldDef.has) {
args[fieldName] = _.isArray(fieldDef.type) ? ['String'] : 'String';
} else {
args[fieldName] = { type: type };
}
}
}
});
return args;
}
// updates definitions with relationship data
function makeRelations() {
var _this2 = this;
_.forEach(this._types, function (definition, name) {
var fields = definition.fields,
_backend = definition._backend;
// examine each field
_.forEach(fields, function (fieldDef, fieldName) {
var type = getType(fieldDef);
var typeName = _.isArray(type) ? type[0] : type;
if (!type) return true;
fieldDef = fields[fieldName] = makeFieldDef(fieldDef);
var _fieldDef = fieldDef,
belongsTo = _fieldDef.belongsTo,
has = _fieldDef.has;
// add belongsTo relationship to the current type
if (belongsTo) {
_.forEach(belongsTo, function (bCfg, bType) {
_.forEach(bCfg, function (bKey, bField) {
var foreignFieldDef = _.get(_this2._types, '["' + bType + '"].fields["' + bField + '"]');
_.set(_backend, 'computed.relations.belongsTo["' + bType + '"]["' + bField + '"]', {
primary: fieldName,
foreign: bKey,
many: _.isArray(getType(foreignFieldDef))
});
});
});
}
// add a has relationship to the nested type. this is because the nested types resolve
// will determine how it returns data
if (has) {
_.set(_this2._types, '["' + typeName + '"]._backend.computed.relations.has["' + name + '"]["' + fieldName + '"]', {
foreign: has,
many: _.isArray(type)
});
}
});
});
}
function make() {
var _this3 = this;
// analyze each type and construct graphql schemas
_.forEach(this._types, function (definition, tname) {
var fields = definition.fields,
_backend = definition._backend;
_this3._definition.types[tname] = definition;
// verify that the type at least has fields
// also check for a backend object config, if one doesnt exist this type is done
if (!_.isObject(fields) || !_.isObject(_backend)) return true;
// get deconstruct the backend config
var schema = _backend.schema,
table = _backend.table,
collection = _backend.collection,
store = _backend.store,
db = _backend.db,
mutation = _backend.mutation,
query = _backend.query;
// allow the collection to be specified as the collection or table field
collection = '' + _this3._prefix + (collection || table);
store = store || db || _this3.defaultStore;
// check that the type has a schema identified, otherwise create a schema with the namespace
var schemaName = _.isString(schema) ? schema : _this3.namespace;
var queryName = schemaName + 'Query';
var mutationName = schemaName + 'Mutation';
// get the primary key name
var primary = _this3.getPrimary(fields);
var primaryKey = _backend.primaryKey || _.isArray(primary) ? _.camelCase(primary.join('-')) : primary;
// get the uniques
var uniques = computeUniques(fields);
// update the backend
_backend.computed = {
primary: primary,
primaryKey: primaryKey,
schemaName: schemaName,
queryName: queryName,
mutationName: mutationName,
collection: collection,
store: store,
uniques: uniques,
before: {}
};
// add to the queries
if (query !== false && collection) {
_.set(_this3._definition.schemas, schemaName + '.query', queryName);
query = _.isObject(query) ? query : {};
if (!query.read && query.read !== false) query.read = true;
// add each query method
_.forEach(query, function (q, qname) {
var queryFieldName = qname === 'read' ? '' + qname + tname : qname;
_.set(_this3._definition.types, queryName + '.fields.' + queryFieldName, {
type: q.type || [tname],
args: q.args || getArgs.call(_this3, 'query', definition, q, qname),
resolve: q.resolve ? q.resolve : '' + queryFieldName
});
if (q === true || !_.has(q, 'resolve')) {
_.set(_this3._definition, 'functions.' + queryFieldName, _this3._read(tname));
} else if (_.isFunction(_.get(q, 'resolve'))) {
_.set(_this3._definition, 'functions.' + queryFieldName, q.resolve);
}
// check for before stub
var before = _.isFunction(q.before) ? q.before.bind(_this3) : defaultBefore;
_.set(_backend, 'computed.before["' + queryFieldName + '"]', before);
});
}
// add to the mutations
if (mutation !== false && collection) {
_.set(_this3._definition.schemas, schemaName + '.mutation', mutationName);
mutation = _.isObject(mutation) ? mutation : {};
if (!mutation.create && mutation.create !== false) mutation.create = true;
if (!mutation.update && mutation.update !== false) mutation.update = true;
if (!mutation.delete && mutation.delete !== false) mutation.delete = true;
// add each mutation method
_.forEach(mutation, function (m, mname) {
var mutationFieldName = _.includes(['create', 'update', 'delete'], mname) ? '' + mname + tname : mname;
_.set(_this3._definition.types, mutationName + '.fields.' + mutationFieldName, {
type: mname === 'delete' && !m.type ? 'Boolean' : m.type || tname,
args: m.args || getArgs.call(_this3, 'mutation', definition, m, mname),
resolve: m.resolve ? m.resolve : '' + mutationFieldName
});
// check for mutation resolve
if (m === true || !_.has(m, 'resolve')) {
_.set(_this3._definition, 'functions.' + mutationFieldName, _this3['_' + mname](tname));
} else if (_.isFunction(_.get(m, 'resolve'))) {
_.set(_this3._definition, 'functions.' + mutationFieldName, m.resolve);
}
// check for before stub
var before = _.isFunction(m.before) ? m.before.bind(_this3) : defaultBefore;
_.set(_backend, 'computed.before["' + mutationFieldName + '"]', before);
});
}
});
// update the definitions with relations
makeRelations.call(this);
// finally add args to sub fields for list types
_.forEach(this._types, function (typeDef, typeName) {
_.forEach(typeDef.fields, function (fieldDef, fieldName) {
var fieldType = getType(fieldDef);
var queryName = _.get(typeDef, '_backend.computed.queryName');
if (queryName && _.isArray(fieldType) && fieldType.length === 1 && fieldDef.args === undefined) {
var type = fieldType[0];
var field = _.get(_this3._definition.types, '["' + queryName + '"].fields["read' + type + '"]', {});
if (field.resolve === 'read' + type && _.isObject(field.args)) {
_.set(_this3._definition.types, '["' + typeName + '"].fields["' + fieldName + '"].args', field.args);
}
}
});
});
}
function isPromise(obj) {
return _.isFunction(_.get(obj, 'then')) && _.isFunction(_.get(obj, 'catch'));
}
function createPromiseMap(list, values) {
return _.map(list, function (value, key) {
if (isPromise(value)) return value.then(function (result) {
return values[key] = result;
});else return Promise.resolve(value).then(function (result) {
return values[key] = result;
});
});
}
function promiseMap(list) {
var map = [];
return Promise.all(createPromiseMap(list, map)).then(function () {
return map;
});
}
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
return typeof obj;
} : function (obj) {
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
};
var classCallCheck = function (instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
};
var createClass = function () {
function defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
return function (Constructor, protoProps, staticProps) {
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
return Constructor;
};
}();
var defineProperty = function (obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
};
var inherits = function (subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
enumerable: false,
writable: true,
configurable: true
}
});
if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
};
var possibleConstructorReturn = function (self, call) {
if (!self) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return call && (typeof call === "object" || typeof call === "function") ? call : self;
};
/*
* Options
* {
* store: 'store name to default to'
* }
*/
// base class for factory backend, all backends should extend this class
var GraphQLFactoryBaseBackend = function () {
function GraphQLFactoryBaseBackend(namespace, graphql, factory) {
var _this = this;
var config = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var crud = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};
classCallCheck(this, GraphQLFactoryBaseBackend);
this.type = 'GraphQLFactoryBaseBackend';
// check for namespace, graphql
if (!_.isString(namespace)) throw new Error('a namespace is required');
if (!graphql) throw new Error('an instance of graphql is required');
if (!factory) throw new Error('an instance of graphql-factory is required');
if (!_.isObject(config.types)) throw new Error('no types were found in the configuration');
if (!crud.create || !crud.read || !crud.update || !crud.delete) throw new Error('missing CRUD operation');
// get any plugins, the backend will be merged into these plugins before it is exported
var _plugin = _.get(config, 'plugin', []);
// get collection prefix
this._prefix = _.get(config, 'options.prefix', '');
// set crud methods
this._create = crud.create.bind(this);
this._read = crud.read.bind(this);
this._update = crud.update.bind(this);
this._delete = crud.delete.bind(this);
this.initStore = crud.initStore.bind(this);
this.filter = crud.filter;
this.util = crud.util(this);
this.q = crud.q(this);
// check the config object
this._plugin = _.isArray(_plugin) ? _plugin : [_plugin];
this._types = _.get(config, 'types', {});
this._functions = _.get(config, 'functions', {});
this._globals = _.get(config, 'globals', {});
this._fields = _.get(config, 'fields', {});
this._externalTypes = _.get(config, 'externalTypes', {});
this._installData = {};
// set mandatory properties
this.options = _.get(config, 'options', {});
this.namespace = namespace;
this.graphql = graphql;
this.factory = factory(this.graphql);
this.queries = {};
this.defaultStore = this.options.store || this.defaultStore || 'test';
// tools
this.util.isPromise = isPromise;
// factory properties
this._definition = {
globals: _.merge(this._globals, defineProperty({}, namespace, { config: config })),
types: {},
schemas: {},
fields: this._fields,
functions: this._functions,
externalTypes: this._externalTypes
};
// make graphql-factory definitions
make.call(this);
// add methods if they do not conflict with existing properties
_.forEach(config.methods, function (method, name) {
if (!_.has(_this, name) && _.isFunction(method)) _this[name] = method.bind(_this);
});
}
createClass(GraphQLFactoryBaseBackend, [{
key: 'addInstallData',
value: function addInstallData(data) {
if (!_.isObject(data)) return;
this._installData = _.merge({}, this._installData, data);
}
}, {
key: 'addQuery',
value: function addQuery(fn, name) {
if (_.isString(name) && _.isFunction(fn)) _.set(this.queries, name, fn.bind(this));
}
}, {
key: 'addQueries',
value: function addQueries(queries) {
var _this2 = this;
_.forEach(queries, function (fn, name) {
return _this2.addQuery(fn, name);
});
}
}, {
key: 'addFunction',
value: function addFunction(fn, name) {
if (_.isString(name) && _.isFunction(fn)) _.set(this._definition.functions, name, fn(this));
}
}, {
key: 'addFunctions',
value: function addFunctions(functions) {
var _this3 = this;
_.forEach(functions, function (fn, name) {
return _this3.addFunction(fn, name);
});
}
}, {
key: 'addGlobal',
value: function addGlobal(obj, path) {
if (_.isString(path) && obj) _.set(this._definition.globals, path, obj);
}
}, {
key: 'addField',
value: function addField(def, name) {
if (_.isString(name) && _.isObject(def)) _.set(this._definition.fields, name, def);
}
}, {
key: 'addExternalType',
value: function addExternalType(type, name) {
if (_.isString(name) && _.isObject(type)) _.set(this._definition.externalTypes, name, type);
}
// returns a graphql-factory plugin
}, {
key: 'getPrimary',
// get the primary key or keys
value: function getPrimary(fields) {
var primary = _(fields).pickBy(function (v) {
return v.primary === true;
}).keys().value();
return !primary.length ? 'id' : primary.length === 1 ? primary[0] : primary.sort();
}
// create a unique args object
}, {
key: 'getUniqueArgs',
value: function getUniqueArgs(type, args) {
var filters = [];
var _getTypeBackend = this.getTypeBackend(type),
uniques = _getTypeBackend.computed.uniques;
_.forEach(uniques, function (unique) {
var ufields = _.map(unique, function (u) {
return u.field;
});
if (_.intersection(_.keys(args), ufields).length === ufields.length) {
filters.push(_.map(unique, function (u) {
return _.merge({}, u, { value: _.get(args, u.field) });
}));
}
});
return filters;
}
// determine if the resolve is nested
}, {
key: 'isNested',
value: function isNested(info) {
// support for current and previous graphql info objects
var infoPath = _.get(info, 'path', []);
return _.isArray(infoPath) ? infoPath.length > 1 : infoPath.prev !== undefined;
}
// get parent type
}, {
key: 'getParentType',
value: function getParentType(info) {
return _.get(info, 'parentType');
}
// current path
}, {
key: 'getCurrentPath',
value: function getCurrentPath(info) {
// support for current and previous graphql info objects
var infoPath = _.get(info, 'path');
return _.isArray(infoPath) ? _.last(infoPath) : infoPath.key;
}
// get type definition
}, {
key: 'getTypeDefinition',
value: function getTypeDefinition(type) {
return _.get(this._types, type, {});
}
// get type backend
}, {
key: 'getTypeBackend',
value: function getTypeBackend(type) {
return _.get(this.getTypeDefinition(type), '_backend');
}
// get type fields
}, {
key: 'getTypeFields',
value: function getTypeFields(type) {
return _.get(this.getTypeDefinition(type), 'fields');
}
// get computed
}, {
key: 'getTypeComputed',
value: function getTypeComputed(type) {
return _.get(this.getTypeDefinition(type), '_backend.computed');
}
// get relations
}, {
key: 'getRelations',
value: function getRelations(type, info) {
var _backend = this.getTypeBackend(type);
var parentType = this.getParentType(info);
var cpath = this.getCurrentPath(info);
var belongsTo = _.get(_backend, 'computed.relations.belongsTo["' + parentType.name + '"]["' + cpath + '"]', {});
var has = _.get(_backend, 'computed.relations.has["' + parentType.name + '"]["' + cpath + '"]', {});
return { has: has, belongsTo: belongsTo };
}
// get related values
}, {
key: 'getRelatedValues',
value: function getRelatedValues(type, args) {
var _this4 = this;
var values = [];
var _getTypeDefinition = this.getTypeDefinition(type),
fields = _getTypeDefinition.fields;
_.forEach(args, function (arg, name) {
var fieldDef = _.get(fields, name, {});
var related = _.has(fieldDef, 'has') || _.has(fieldDef, 'belongsTo');
var fieldType = _.get(fieldDef, 'type', fieldDef);
var isList = _.isArray(fieldType);
var typeName = isList && fieldType.length === 1 ? fieldType[0] : fieldType;
var typeDef = _.get(_this4._types, typeName, {});
var computed = _.get(typeDef, '_backend.computed');
if (computed && related) {
(function () {
var store = computed.store,
collection = computed.collection;
values = _.union(values, _.map(isList ? arg : [arg], function (id) {
return { store: store, collection: collection, id: id };
}));
})();
}
});
return values;
}
// get type info
}, {
key: 'getTypeInfo',
value: function getTypeInfo(type, info) {
var _getTypeDefinition2 = this.getTypeDefinition(type),
_backend = _getTypeDefinition2._backend,
fields = _getTypeDefinition2.fields;
var _backend$computed = _backend.computed,
primary = _backend$computed.primary,
primaryKey = _backend$computed.primaryKey,
collection = _backend$computed.collection,
store = _backend$computed.store,
before = _backend$computed.before;
var nested = this.isNested(info);
var currentPath = this.getCurrentPath(info);
var _getRelations = this.getRelations(type, info),
belongsTo = _getRelations.belongsTo,
has = _getRelations.has;
return {
_backend: _backend,
before: before,
collection: collection,
store: store,
fields: fields,
primary: primary,
primaryKey: primaryKey,
nested: nested,
currentPath: currentPath,
belongsTo: belongsTo,
has: has
};
}
// get primary args as a single value
}, {
key: 'getPrimaryFromArgs',
value: function getPrimaryFromArgs(type, args) {
var _getTypeComputed = this.getTypeComputed(type),
primary = _getTypeComputed.primary;
if (!primary) throw 'Unable to obtain primary';
var pk = _.map(_.isArray(primary) ? primary : [primary], function (k) {
return _.get(args, k);
});
return pk.length === 1 ? pk[0] : pk;
}
// update the args with potential compound primary
}, {
key: 'updateArgsWithPrimary',
value: function updateArgsWithPrimary(type, args) {
var newArgs = _.cloneDeep(args);
var _getTypeComputed2 = this.getTypeComputed(type),
primary = _getTypeComputed2.primary,
primaryKey = _getTypeComputed2.primaryKey;
var pk = this.getPrimaryFromArgs(type, args);
if (primary.length > 1 && _.without(pk, undefined).length === primary.length) {
newArgs = _.merge(newArgs, defineProperty({}, primaryKey, pk));
}
return newArgs;
}
// maps promise results
}, {
key: 'mapPromise',
value: function mapPromise(list) {
return promiseMap(list);
}
// init all stores
}, {
key: 'initAllStores',
value: function initAllStores(rebuild, seedData) {
var _this5 = this;
if (!_.isBoolean(rebuild)) {
seedData = _.isObject(rebuild) ? rebuild : {};
rebuild = false;
}
// only init definitions with a collection and store specified
var canInit = function canInit() {
return _.pickBy(_this5._types, function (t) {
return _.has(t, '_backend.computed.collection') && _.has(t, '_backend.computed.store');
});
};
var ops = _.map(canInit(), function (t, type) {
var data = _.get(seedData, type, []);
return _this5.initStore(type, rebuild, _.isArray(data) ? data : []);
});
return promiseMap(ops);
}
// returns a lib object lazily, make it only once
}, {
key: 'plugin',
get: function get() {
var _plugin = {},
obj = {};
// merge all plugins
_.forEach(this._plugin, function (p) {
return _.merge(_plugin, p);
});
// create current backend plugin
_.forEach(this._definition, function (def, field) {
if (_.keys(def).length) {
// if (field === 'types') obj[field] = _.mapValues(def, (v) => _.omit(v, '_backend'))
// else obj[field] = def
obj[field] = def;
}
});
// return a merged backend and plugin
return _.merge(_plugin, obj);
}
}, {
key: 'lib',
get: function get() {
if (!this._lib) this._lib = this.factory.make(this.plugin);
return this._lib;
}
}]);
return GraphQLFactoryBaseBackend;
}();
var GraphQLFactoryBaseBackend$1 = function (namespace, graphql, factory) {
var config = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var crud = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};
return new GraphQLFactoryBaseBackend(namespace, graphql, factory, config, crud);
};
function create() {
return function () {};
}
function read() {
return function () {};
}
function update$1() {
return function () {};
}
function del() {
return function () {};
}
var crud = { create: create, read: read, update: update$1, delete: del };
// extended backend class for RethinkDB
var GraphQLFactoryKnexBackend = function (_GraphQLFactoryBaseBa) {
inherits(GraphQLFactoryKnexBackend, _GraphQLFactoryBaseBa);
function GraphQLFactoryKnexBackend(namespace, graphql, factory, knex, config) {
classCallCheck(this, GraphQLFactoryKnexBackend);
var _this = possibleConstructorReturn(this, (GraphQLFactoryKnexBackend.__proto__ || Object.getPrototypeOf(GraphQLFactoryKnexBackend)).call(this, namespace, graphql, factory, config, crud));
_this.type = 'GraphQLFactoryKnexBackend';
// check for a top-level rethinkdb namespace
if (!knex) throw new Error('an instance of knex is required');
// store database objects
_this.knex = knex;
// add values to the globals namespace
_.merge(_this._definition.globals, defineProperty({}, namespace, { knex: knex }));
return _this;
}
return GraphQLFactoryKnexBackend;
}(GraphQLFactoryBaseBackend$1);
// helper function to instantiate a new backend
var knex = function (namespace, graphql, factory, knex, config) {
return new GraphQLFactoryKnexBackend(namespace, graphql, factory, knex, config);
};
function create$2() {
return function () {};
}
function read$1() {
return function () {};
}
function update$2() {
return function () {};
}
function del$1() {
return function () {};
}
var crud$1 = { create: create$2, read: read$1, update: update$2, delete: del$1 };
// extended backend class for RethinkDB
var GraphQLFactoryMongoDBBackend = function (_GraphQLFactoryBaseBa) {
inherits(GraphQLFactoryMongoDBBackend, _GraphQLFactoryBaseBa);
function GraphQLFactoryMongoDBBackend(namespace, graphql, factory, db, config, connection) {
classCallCheck(this, GraphQLFactoryMongoDBBackend);
var _this = possibleConstructorReturn(this, (GraphQLFactoryMongoDBBackend.__proto__ || Object.getPrototypeOf(GraphQLFactoryMongoDBBackend)).call(this, namespace, graphql, factory, config, crud$1));
_this.type = 'GraphQLFactoryMongoDBBackend';
// check for a top-level rethinkdb namespace
if (!db) throw new Error('a MongoDB connection is required');
// store database objects
_this.db = db;
// add values to the globals namespace
_.merge(_this._definition.globals, defineProperty({}, namespace, { db: db }));
return _this;
}
return GraphQLFactoryMongoDBBackend;
}(GraphQLFactoryBaseBackend$1);
// helper function to instantiate a new backend
var mongodb = function (namespace, graphql, factory, db, config, connection) {
return new GraphQLFactoryMongoDBBackend(namespace, graphql, factory, db, config, connection);
};
function create$4(type) {
var backend = this;
return function (source, args) {
var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var info = arguments[3];
var r = backend.r,
connection = backend.connection,
util = backend.util,
q = backend.q;
var _backend$getTypeInfo = backend.getTypeInfo(type, info),
collection = _backend$getTypeInfo.collection,
store = _backend$getTypeInfo.store,
before = _backend$getTypeInfo.before;
var table = r.db(store).table(collection);
var beforeHook = _.get(before, 'create' + type);
// main query
var query = function query() {
var filter = backend.filter.violatesUnique(type, backend, args, table).branch(r.error('unique field violation'), q.type(type).insert(args, { exists: backend.getRelatedValues(type, args) }).value());
// do the update
return filter.run(connection);
};
// run before stub
var resolveBefore = beforeHook(source, args, _.merge({}, { factory: this }, context), info);
if (util.isPromise(resolveBefore)) return resolveBefore.then(query);
return query();
};
}
function read$2(type) {
var backend = this;
return function (source, args) {
var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var info = arguments[3];
var r = backend.r,
connection = backend.connection,
util = backend.util;
var _backend$getTypeInfo = backend.getTypeInfo(type, info),
collection = _backend$getTypeInfo.collection,
store = _backend$getTypeInfo.store,
before = _backend$getTypeInfo.before;
var table = r.db(store).table(collection);
var _backend$filter$getRe = backend.filter.getRelationFilter(type, backend, source, info, table),
filter = _backend$filter$getRe.filter,
many = _backend$filter$getRe.many;
var beforeHook = _.get(before, 'read' + type);
// main query
var query = function query() {
// filter args
filter = backend.filter.getArgsFilter(type, backend, args, filter);
// add standard query modifiers
if (_.isNumber(args.limit)) filter = filter.limit(args.limit);
// if not a many relation, return only a single result or null
if (!many) {
filter = filter.coerceTo('array').do(function (objs) {
return objs.count().eq(0).branch(r.expr(null), r.expr(objs).nth(0));
});
}
// run the query
return filter.run(connection);
};
// run before stub
var resolveBefore = beforeHook(source, args, _.merge({}, { factory: this }, context), info);
if (util.isPromise(resolveBefore)) return resolveBefore.then(query);
return query();
};
}
function update$3(type) {
var backend = this;
return function (source, args) {
var context = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var info = arguments[3];
var r = backend.r,
connection = backend.connection,
util = backend.util,
q = backend.q;