-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathentry_queryable.dart
285 lines (270 loc) · 9.96 KB
/
entry_queryable.dart
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
// ignore_for_file: lines_longer_than_80_chars, unnecessary_lambdas
import 'package:contentstack/constant.dart';
import 'package:contentstack/src/enums/include.dart';
import 'package:contentstack/src/enums/include_type.dart';
/// Applies Queries on [Entry](https://www.contentstack.com/docs/developers/apis/content-delivery-api/#entries)
class EntryQueryable {
Map<String, Object?> parameter = <String, Object?>{};
//sanitize
String sanitizeInput(String input) {
return input.replaceAll(RegExp(r'[^a-zA-Z0-9-_.]'), '');
}
///
/// This method adds key and value to an Entry.
/// [key] The key as string which needs to be added to an Entry
/// [value] The value as string which needs to be added to an Entry
/// [EntryQueryable] object, so you can chain this call.
///
/// Example:
///
/// ```dart
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry.addParam(key, value);
/// ```
void addParam(String key, String value) {
if (key.isNotEmpty && value.isNotEmpty) {
parameter[key] = value.toString();
}
}
///
/// Specifies list of field uids that would be excluded from the response.
/// [fieldUid] field uid which get excluded from the response.
/// [EntryQueryable] object, so you can chain this call.
///
/// Example:
///
/// ```dart
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// fieldUid is String type of List
/// entry.except(fieldUid);
/// ```
///
void except(List<String> fieldUid) {
if (fieldUid.isNotEmpty) {
final List<String> referenceArray = fieldUid.map((item) => sanitizeInput(item)).toList();
parameter['except[BASE][]'] = referenceArray.toString();
}
}
///
/// Include Content Type of all
/// returned objects along with objects themselves.
/// return, [EntryQueryable] so you can chain this call.
///
/// Example:
/// ```dart
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry.includeContentType();
/// ```
///
void includeContentType() {
parameter['include_content_type'] = 'true';
parameter['include_global_field_schema'] = 'true';
}
///
/// Retrieve the published content of the fallback locale if an entry is not
/// localized in specified locale.
/// ```dart
/// final stack = contentstack.Stack('apiKey, 'deliveryKey', 'environment);
/// final entry = stack.contentType('contentType').entry()..includeFallback();
/// ```
///
void includeFallback() {
parameter['include_fallback'] = 'true';
}
///
/// includeEmbeddedItems instance of Entry
/// Include Embedded Objects (Entries and Assets) along with entry/entries details
///
/// Example:
/// ```
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry = entry.includeEmbeddedItems()
/// ```
///
void includeEmbeddedItems() {
parameter['include_embedded_items[]'] = 'BASE';
}
///
/// Includes branch in the Entry response
/// Example:
/// ```
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry = entry.includeBranch()
/// ```
///
void includeBranch() {
parameter['include_branch'] = true.toString();
}
///
/// Include Reference:
/// When you fetch an entry of a content type that has a reference field,
/// by default, the content of the referred entry is not fetched.
/// It only fetches the UID of the referred entry, along with the content of
/// the specified entry.
///
/// If you wish to fetch the content of the entry that is included in
/// the reference field, you need to use the include[] parameter,
/// and specify the UID of the reference field as value.
/// This informs Contentstack that the request also includes
/// fetching the entry used in the specified reference field.
/// Add a constraint that requires a particular reference key details.
/// includeReference provides three options, none, only and except
/// i.e accepts list of fieldUid
/// referenceFieldUid Key who has reference to some other class object.
/// Array of the only reference keys to be included in response.
///
/// Example 1:
/// Reference type None
///
/// ```dart
/// final stack = contentstack.Stack("apiKey", "deliveryKey", "environment");
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry.includeReference("referenceFieldUid",
/// IncludeReference.none(fieldUidList: null));
/// response = await entry.fetch();
/// prints(response)
/// ```
///
/// Example 2:
/// Reference type only
///
///
/// ```dart
/// final stack = contentstack.Stack("apiKey", "deliveryKey", "environment");
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// final fieldUid = list of string type;
/// entry.includeReference("referenceFieldUid",
/// IncludeReference.only(fieldUidList: fieldUid));
/// response = await entry.fetch();
/// prints(response)
/// ```
///
/// Example 3:
/// Reference type except
/// ```dart
/// final stack = contentstack.Stack("apiKey", "deliveryKey", "environment");
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry.includeReference("referenceFieldUid",
/// IncludeReference.except(fieldUidList: fieldUid));
/// response = await entry.fetch();
/// prints(response)
/// ```
///
void includeReference(referenceFieldUid, {IncludeClass? includeReferenceField}) {
if (referenceFieldUid != null && referenceFieldUid.isNotEmpty) {
final List referenceArray = [];
if (includeReferenceField != null) {
switch(includeReferenceField.includeType) {
case IncludeType.None:
if (referenceFieldUid.runtimeType == List) {
for (var uid in referenceFieldUid) {
referenceArray.add(sanitizeInput(uid));
}
} else if (referenceFieldUid.runtimeType == String) {
referenceArray.add(sanitizeInput(referenceFieldUid));
}
if (includeReferenceField.fieldUidList.isNotEmpty) {
for (final item in includeReferenceField.fieldUidList) {
referenceArray.add(sanitizeInput(item));
}
}
parameter['include[]'] = referenceArray.toString();
break;
case IncludeType.Only:
final Map<String, dynamic> referenceOnlyParam = <String, dynamic>{};
if (includeReferenceField.fieldUidList.isNotEmpty) {
for (final item in includeReferenceField.fieldUidList) {
referenceArray.add(sanitizeInput(item));
}
}
referenceOnlyParam[referenceFieldUid] = referenceArray;
includeReference(referenceFieldUid);
parameter['only'] = referenceOnlyParam.toString();
break;
case IncludeType.Except:
final Map<String, dynamic> referenceOnlyParam = <String, dynamic>{};
if (includeReferenceField.fieldUidList.isNotEmpty) {
for (final item in includeReferenceField.fieldUidList) {
referenceArray.add(sanitizeInput(item));
}
}
referenceOnlyParam[referenceFieldUid] = referenceArray;
includeReference(referenceFieldUid);
parameter['except'] = referenceOnlyParam.toString();
break;
}
} else {
parameter['include[]'] = referenceFieldUid;
}
}
}
/// This method also includes the content type
/// UIDs of the referenced entries returned in the response
/// return [EntryQueryable] so you can chain this call
///
/// Example:
///
/// ```dart
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry.includeReferenceContentTypeUID();
/// ```
///
void includeReferenceContentTypeUID() {
parameter['include_reference_content_type_uid'] = 'true';
}
///
/// [locale] is code of the `language` of which the
/// entries needs to be included.
/// Only the entries published in this locale will be fetched.
///
/// Example:
///
/// ```dart
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// entry.locale('en-eu');
/// ```
///
void locale(String locale) {
parameter['locale'] = locale;
}
/// Specifies an array of only keys in BASE object that
/// would be included in the response.
/// [fieldUid] Array of the only reference keys to be included in response.
/// [EntryQueryable] object, so you can chain this call.
///
/// Example:
///
/// ```dart
/// final stack = contentstack.Stack('apiKey','deliveryToken','environment');
/// final entry = stack.contentType("contentTypeUid").entry("entryUid");
/// fieldUid is String type of List
/// entry.only(fieldUid);
/// ```
///
void only(List<String> fieldUid) {
if (fieldUid.isNotEmpty) {
final List<String> referenceArray = fieldUid.map((item) => sanitizeInput(item)).toList();
parameter['only[BASE][]'] = referenceArray.toString();
}
}
void validateLivePreview(preview, _client, _contentTypeUid) {
if (preview != null && preview['enable']) {
ifLivePreviewEnable(_client);
if (_contentTypeUid == preview['content_type_uid']) {
if (preview.containsKey('live_preview') &&
preview['live_preview'].toString().isNotEmpty) {
parameter['live_preview'] = preview['live_preview'];
} else {
parameter['live_preview'] = 'init';
}
}
}
}
}