-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
421 lines (377 loc) Β· 8.56 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
const qs = require("qs");
class StrapiEz {
#baseURL; //store the Base URL
#endPoint; //store the endpoint
constructor() {
this.tmpFilter = {}; //store the condition
this.tmpObject = {}; //store the object
this.tmpKey = {}; //store the key
this.query = {
filters: {},
}; //store the query
}
/**
* Set the base url for the query.
* In case of using base url, the endpoint will be needed to the base url.
*
* @param {string} endpointPath The base URL to be set .
* @returns {this}
*/
baseURL(baseURL) {
this.#baseURL = baseURL;
return this;
}
/**
* Set the base endpoint for the query.
*
* @param {string} endpointPath The endpoint to be set .
* @returns {this}
*/
endpoint(endpointPath) {
this.#endPoint = endpointPath;
return this;
}
/**
* Queries can accept a `fields` parameter to select only some fields. By default, only the following types of fields are returned:
*
* `string` types: string, text, richtext, enumeration, email, password, and uid,
*
* `date` types: date, time, datetime, and timestamp,
*
* `number` types: integer, biginteger, float, and decimal,
*
* `generic` types: boolean, array, and JSON.
*
* Field selection does not work on relational, media, component, or dynamic zone fields.
*
* To populate these fields, use the populate parameter.
*
* @param {...string} fields
* @returns {this}
*/
fields(...fields) {
this.query.fields = fields;
return this;
}
/**
* Queries can accept a `populate` parameter to populate various field types
* To populate children entries, populate from parent first.
* @param {...string} fields
* @returns {this}
*/
populate(...fields) {
this.query.populate = fields;
if (fields.length === 1) this.query.populate = fields[0];
return this;
}
/**
* Queries can accept a `publicationState` parameter to fetch entries based on their publication state:
*
* `live`: returns only published entries (default)
*
* `preview`: returns both draft entries & published entries
*
* @param {("live"|"preview")} publicationState
* @returns {this}
*/
state(publicationState = "live") {
this.query.publicationState = publicationState;
return this;
}
/**
* Queries can accept a sort parameter that allows sorting on one or multiple fields.
* The sorting order can be defined with:
*
* `:asc` for ascending order (default order, can be omitted)
* or
* `:desc` for descending order.
*
* example: `title:desc`
*
* @param {...string} fields
* @returns {this}
*/
sort(...fields) {
this.query.sort = fields;
return this;
}
#condition(key = "$and", path) {
if (!this.query.filters[key]) {
this.query.filters[key] = [];
}
this.#clearFilters();
this.tmpFilter = this.query.filters[key];
let last = this.tmpObject;
for (let index = 0; index < path.length; index++) {
const element = path[index];
last[element] = {};
last = last[element];
}
this.tmpKey = last;
return this;
}
/**
* Joins the filters in an "and" expression
*
* @param {...string} path
* @returns {this}
*/
and(...path) {
return this.#condition("$and", path);
}
/**
* Joins the filters in an "or" expression
*
* @param {...string} path
* @returns {this}
*/
or(...path) {
return this.#condition("$or", path);
}
/**
* To paginate results by page, use the following parameters:
*
* @param {number} page Page number
* @param {number} pageSize Page size
* @param {boolean} withCount Adds the total numbers of entries and the number of pages to the response
* @returns {this}
*/
page(page = 1, pageSize = 25, withCount = true) {
if (!this.query.pagination) {
this.query.pagination = {};
}
this.query.pagination = {
page,
pageSize,
withCount,
};
return this;
}
/**
* To paginate results by offset, use the following parameters:
*
* @param {number} start Page number
* @param {number} limit Page size
* @param {boolean} withCount Adds the total numbers of entries and the number of pages to the response
* @returns {this}
*/
offset(start = 0, limit = 25, withCount = true) {
if (!this.query.pagination) {
this.query.pagination = {};
}
this.query.pagination = {
start,
limit,
withCount,
};
return this;
}
#filter(key = "$eq", fields) {
this.tmpKey[key] = fields;
this.tmpFilter.push(this.tmpObject);
this.#clearFilters();
return this;
}
/**
* Equal
*
* @param {...string} fields
* @returns {this}
*/
eq(...fields) {
return this.#filter("$eq", fields);
}
/**
* Equal (case-insensitive)
*
* @param {...string} fields
* @returns {this}
*/
eqi(...fields) {
return this.#filter("$eqi", fields);
}
/**
* Not equal
*
* @param {...string} fields
* @returns {this}
*/
ne(...fields) {
return this.#filter("$ne", fields);
}
/**
* Less than
*
* @param {...string} fields
* @returns {this}
*/
lt(...fields) {
return this.#filter("$lt", fields);
}
/**
* Less than or equal to
*
* @param {...string} fields
* @returns {this}
*/
lte(...fields) {
return this.#filter("$lte", fields);
}
/**
* Greater than
*
* @param {...string} fields
* @returns {this}
*/
gt(...fields) {
return this.#filter("$gt", fields);
}
/**
* Greater than or equal to
*
* @param {...string} fields
* @returns {this}
*/
gte(...fields) {
return this.#filter("$gte", fields);
}
/**
* Included in fields
*
* @param {...string} fields
* @returns {this}
*/
in(...fields) {
return this.#filter("$in", fields);
}
/**
* Not included in fields
*
* @param {...string} fields
* @returns {this}
*/
notIn(...fields) {
return this.#filter("$notIn", fields);
}
/**
* Contains
*
* @param {...string} fields
* @returns {this}
*/
contains(...fields) {
return this.#filter("$contains", fields);
}
/**
* Does not contain
*
* @param {...string} fields
* @returns {this}
*/
notContains(...fields) {
return this.#filter("$notContains", fields);
}
/**
* Contains (case-insensitive)
*
* @param {...string} fields
* @returns {this}
*/
containsi(...fields) {
return this.#filter("$containsi", fields);
}
/**
* Does not contain (case-insensitive)
*
* @param {...string} fields
* @returns {this}
*/
notContainsi(...fields) {
return this.#filter("$notContainsi", fields);
}
/**
* Is null
*
* @param {...string} fields
* @returns {this}
*/
null(...fields) {
return this.#filter("$null", fields);
}
/**
* Is not null
*
* @param {...string} fields
* @returns {this}
*/
notNull(...fields) {
return this.#filter("$notNull", fields);
}
/**
* Is between
*
* @param {...string} fields
* @returns {this}
*/
between(...fields) {
return this.#filter("$between", fields);
}
/**
* Starts with
*
* @param {...string} fields
* @returns {this}
*/
startsWith(...fields) {
return this.#filter("$startsWith", fields);
}
/**
* Starts with (case-insensitive)
*
* @param {...string} fields
* @returns {this}
*/
startsWithi(...fields) {
return this.#filter("$startsWithi", fields);
}
/**
* Ends with
*
* @param {...string} fields
* @returns {this}
*/
endsWith(...fields) {
return this.#filter("$endsWith", fields);
}
/**
* Ends with (case-insensitive)
*
* @param {...string} fields
* @returns {this}
*/
endsWithi(...fields) {
return this.#filter("$endsWithi", fields);
}
#clearFilters() {
this.tmpKey = {};
this.tmpFilter = {};
this.tmpObject = {};
}
/**
* Get query string
*
* @returns {string}
*/
get() {
const queryString = qs.stringify(this.query, {
encodeValuesOnly: true, // prettify URL
});
if (typeof this.#endPoint === "undefined") return queryString; // if endpoint is not set, return only query string.To use base url, endpoint must be set.
if (typeof this.#baseURL !== "undefined")
return `${this.#baseURL}${!this.#baseURL.includes("api") ? "/api" : ""}/${
this.#endPoint
}?${queryString}`; // Return base url + endpoint + query string.(full URL)
return `${this.#endPoint}?${queryString}`; // Return endpoint + query string.(full endpoint)
}
}
module.exports = StrapiEz;