forked from erickoledadevrel/parsedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParseDbInstance.gs
274 lines (249 loc) · 6.32 KB
/
ParseDbInstance.gs
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
var ParseDbInstance_ = function(applicationId, restApiKey, class) {
this.applicationId_ = applicationId;
this.restApiKey_ = restApiKey;
this.class_ = class;
};
ParseDbInstance_.DEFAULT_CLASS_ = 'item';
ParseDbInstance_.BATCH_SIZE_ = 50;
ParseDbInstance_.prototype.ASCENDING = 'ASCENDING';
ParseDbInstance_.prototype.DESCENDING = 'DESCENDING';
ParseDbInstance_.prototype.LEXICAL = 'LEXICAL';
ParseDbInstance_.prototype.NUMERIC = 'NUMERIC';
ParseDbInstance_.prototype.anyOf = function(mutationResults) {
for (var i = 0; i < mutationResults.length; i++) {
var result = mutationResults[i];
if (result.success && !result.success()) {
return false;
}
}
return true;
};
ParseDbInstance_.prototype.anyOf = function(values) {
return {
'$in': values
};
};
ParseDbInstance_.prototype.anyValue = function() {
return {
'$exists': true
};
};
ParseDbInstance_.prototype.between = function(value1, value2) {
return {
'$gte': value1,
'$lt': value2
};
};
ParseDbInstance_.prototype.count = function(query) {
return this.query(query).getSize();
};
ParseDbInstance_.prototype.greaterThan = function(value) {
return {
'$gt': value
};
};
ParseDbInstance_.prototype.greaterThanOrEqualTo = function(value) {
return {
'$gte': value
};
};
ParseDbInstance_.prototype.lessThan = function(value) {
return {
'$lt': value
};
};
ParseDbInstance_.prototype.lessThanOrEqualTo = function(value) {
return {
'$lte': value
};
};
ParseDbInstance_.prototype.load = function(ids) {
if (ids instanceof Array) {
var result = this.query({
objectId: this.anyOf(ids)
});
var items = {};
while (result.hasNext()) {
var item = result.next();
items[item.getId()] = item;
}
return ids.map(function(id) {
return items[id];
});
} else {
try {
var item = this.call_({
id: ids
});
return new ParseDbMap_(item);
} catch (e) {
return null;
}
}
};
ParseDbInstance_.prototype.not = function(value) {
return {
'$ne': value
};
}
ParseDbInstance_.prototype.query = function(query) {
return new ParseDbResult_(this, query);
};
ParseDbInstance_.prototype.remove = function(item) {
if (!item.getId) {
throw 'Not a ParseDB object.';
}
this.removeById(item.getId());
};
ParseDbInstance_.prototype.removeBatch = function(items, atomic) {
var ids = items.map(function(item) {
if (!item.getId) {
throw 'Not a ParseDB object.';
}
return item.getId();
});
return this.removeByIdBatch(ids, atomic);
};
ParseDbInstance_.prototype.removeById = function(id) {
this.call_({
id: id,
method: 'delete'
});
};
ParseDbInstance_.prototype.removeByIdBatch = function(ids, atomic) {
var self = this;
if (atomic) {
throw 'Atomic saves not supported.';
}
var start = 0;
var results = [];
do {
var batch = ids.slice(start, start + ParseDbInstance_.BATCH_SIZE_);
var requests = batch.map(function(id) {
return {
method: 'DELETE',
path: '/1/classes/' + self.class_ + '/' + id
};
});
var response = this.call_({
url: 'https://api.parse.com/1/batch',
method: 'post',
payload: {
requests: requests
}
});
results = results.concat(response.map(function(result, i) {
return {
success: function() {
return Boolean(result.success);
}
};
}));
start += ParseDbInstance_.BATCH_SIZE_;
} while(start < ids.length);
return results;
};
ParseDbInstance_.prototype.save = function(item) {
var result;
if (item.getId) {
result = this.call_({
id: item.getId(),
method: 'put',
payload: item
});
} else {
result = this.call_({
method: 'post',
payload: item
});
}
item = _.extend(_.clone(item), result);
return new ParseDbMap_(item);
};
ParseDbInstance_.prototype.saveBatch = function(items, atomic) {
var self = this;
if (atomic) {
throw 'Atomic saves not supported.';
}
var start = 0;
var results = [];
do {
var batch = items.slice(start, start + ParseDbInstance_.BATCH_SIZE_);
var requests = batch.map(function(item) {
if (item.getId) {
return {
method: 'PUT',
path: '/1/classes/' + self.class_ + '/' + item.getId(),
body: item
};
} else {
return {
method: 'POST',
path: '/1/classes/' + self.class_,
body: item
};
}
});
var response = this.call_({
url: 'https://api.parse.com/1/batch',
method: 'post',
payload: {
requests: requests
}
});
var updateItems = response.map(function(result, i) {
if (result.success) {
var item = _.extend(_.clone(batch[i]), result.success);
return new ParseDbMap_(item);
} else {
return {
success: function() {
return false;
}
}
}
});
results = results.concat(updateItems);
start += ParseDbInstance_.BATCH_SIZE_;
} while(start < items.length);
return results;
};
/**
* Makes a call to the Parse API, using the arguments provided.
* @param {Object} args The arguments to use.
* @param {string} args.id The ID of the object to operate on (optional).
* @param {Object} args.params The URL parameters to incude (optional).
* @param {string} args.method The HTTP method to use (optional).
* @param {Object} args.payload The payload of the request (optional).
* @param {string} args.url The API URL to make the request to.
* @return {Object} The parsed JSON response from the API.
*/
ParseDbInstance_.prototype.call_ = function(args) {
args = args || {};
var url = args.url || 'https://api.parse.com/1/classes/' + this.class_;
if (args.id) {
url += '/' + args.id;
}
var params = args.params || {};
url = buildUrl_(url, params);
var options = {
headers: {
'X-Parse-Application-Id': this.applicationId_,
'X-Parse-REST-API-Key': this.restApiKey_
},
muteHttpExceptions: true
};
if (args.method) {
options.method = args.method;
}
if (args.payload) {
options.payload = JSON.stringify(args.payload);
options.contentType = 'application/json';
}
var content = UrlFetchApp.fetch(url, options).getContentText();
var response = JSON.parse(content);
if (response.error) {
throw response.error;
}
return response;
};