-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.json
More file actions
426 lines (344 loc) · 15.6 KB
/
rules.json
File metadata and controls
426 lines (344 loc) · 15.6 KB
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
/**
* Firebase Security Rules
*
* This file becomes the security rule settings for the
* Simap firebase when it is deployed. It should ensure:
*
* * Users cannot read or write anyone's data but their own.
* * Users may not write improperly formed data.
*
*/
{
"rules": {
"userData": {
/**
* USER
*/
"user": {
"$uid": {
// A user may read and write only their own user data.
".read": "$uid === auth.uid",
".write": "$uid === auth.uid && newData.exists()",
// A user must have a uid, provider, providerUid, and displayName
".validate": "newData.hasChildren(['uid', 'provider', 'providerUid', 'displayName', 'createdAt', 'lastLogin'])",
// A user's provider, providerUid, and uid must be properly formed.
"provider": {
".validate": "auth.uid.contains(newData.val())"
},
"providerUid": {
".validate": "auth.uid.contains(newData.val())"
},
"uid": {
".validate": "newData.val() === auth.uid"
},
// A user's displayName must be a string.
"displayName": {
".validate": "newData.isString() && newData.val().length > 0"
},
// A user's created at time may not change.
"createdAt": {
".validate": "(!data.exists() || data.val() === newData.val()) && newData.val() <= now"
},
// A user's last login time can't be in the future.
"lastLogin": {
".validate": "newData.isNumber() && newData.val() <= now"
},
// A user's family and goal must be owned by them.
"familyId": {
".validate": "root.child('userData/family/' + newData.val()).exists() &&
root.child('userData/family/' + newData.val() + '/owner').val() === auth.uid"
},
"goalId": {
".validate": "root.child('userData/goal/' + newData.val()).exists() &&
root.child('userData/goal/' + newData.val() + '/owner').val() === auth.uid"
},
// A user's categories and items must be owned by them.
"categories": {
"$categoryId": {
".validate": "root.child('userData/category/' + $categoryId).exists() &&
root.child('userData/category/' + $categoryId + '/owner').val() === auth.uid"
}
},
"items": {
"$itemId": {
".validate": "root.child('userData/item/' + $itemId).exists() &&
root.child('userData/item/' + $itemId + '/owner').val() === auth.uid"
}
}
}
},
/**
* CATEGORIES
*/
"category": {
"$categoryId": {
// A category may be read only by the owner.
".read": "!data.exists() || root.child('userData/category/' + $categoryId + '/owner').val() === auth.uid",
// A category may be created by any user, but only modified by the owner.
".write": "!data.exists() || root.child('userData/category/' + $categoryId + '/owner').val() === auth.uid",
// A category must have an owner, a name, and a color.
".validate": "newData.hasChildren(['owner', 'name', 'color'])",
// But a new category must be owned by the current user.
"owner": {
".validate": "newData.val() === auth.uid"
},
// A category name must be a string from 1 to 48 characters long.
"name": {
".validate": "newData.isString() && newData.val().length > 0 && newData.val().length <= 48"
},
// A category color must be a string exactly 6 characters long and only containing hexadecimal digits.
"color": {
".validate": "newData.isString() && newData.val().matches(/^#[0-9A-Fa-f]{6}$/)"
}
}
},
/**
* FAMILY SIZES
*/
"family": {
"$familyId": {
// A family may be read by only the owner.
".read": "!data.exists() || root.child('userData/family/' + $familyId + '/owner').val() === auth.uid",
// A family may be created by any user, but only modified by the owner. A family may not be deleted.
".write": "(!data.exists() || root.child('userData/family/' + $familyId + '/owner').val() === auth.uid) &&
newData.exists()",
// A family must have owner, adults, and children.
".validate": "newData.hasChildren(['owner', 'adults', 'children'])",
// But it must be owned by the creator.
"owner": {
".validate": "newData.val() === auth.uid"
},
// A family must have a number of adults >= 0.
"adults": {
".validate": "newData.isNumber() && newData.val() >= 0"
},
// A family must have a number of children >= 0.
"children": {
".validate": "newData.isNumber() && newData.val() >= 0"
}
}
},
/**
* STORAGE GOALS
*/
"goal": {
"$goalId": {
// A goal may be read by only the owner.
".read": "!data.exists() || root.child('userData/goal/' + $goalId + '/owner').val() === auth.uid",
// A goal may be created by any user, but only modified by the owner.
".write": "(!data.exists() || root.child('userData/goal/' + $goalId + '/owner').val() === auth.uid) &&
newData.exists()",
// A goal must have an owner and days.
".validate": "newData.hasChildren(['owner', 'months', 'days'])",
// A goal must be owned by the creator.
"owner": {
".validate": "newData.val() === auth.uid"
},
// The number of months the goal is for must be a number >= 1
"months": {
".validate": "newData.isNumber() && newData.val() >= 1"
},
// The number of days the goal is for must be a number >= 1
"days": {
".validate": "newData.isNumber() && newData.val() >= 1"
}
}
},
/**
* ITEMS
*/
"item": {
"$itemId": {
// An item may only be read by the owner.
".read": "!data.exists() || root.child('userData/item/' + $itemId + '/owner').val() === auth.uid",
// An item may be created by any user, but only modified by the owner.
".write": "!data.exists() || root.child('userData/item/' + $itemId + '/owner').val() === auth.uid",
// An item must have an owner, name, color, category, amount, plan, units, and primaryUnitId
".validate": "newData.hasChildren(['owner', 'name', 'color', 'categoryId', 'amount', 'planId', 'units', 'primaryUnitId'])",
// An item must be owned by the creator.
"owner": {
".validate": "newData.val() === auth.uid"
},
// An item must have a name that is a string from 1 to 48 characters.
"name": {
".validate": "newData.isString() && newData.val().length > 0 && newData.val().length <= 48"
},
// An item must have a color that is a 6 digit hexadecimal string.
"color": {
".validate": "newData.isString() && newData.val().matches(/^#[0-9A-Fa-f]{6}$/)"
},
// An item must have a category assigned to it that exists, and is owned by the current user.
"categoryId": {
".validate": "root.child('userData/category/' + newData.val()).exists() &&
root.child('userData/category/' + newData.val() + '/owner').val() === auth.uid"
},
// An item must have an amount that is a number >= 0.
"amount": {
".validate": "newData.isNumber() && newData.val() >= 0"
},
// An item must have a storage plan that exists and is owned by the current user.
"planId": {
".validate": "root.child('userData/plan/' + newData.val()).exists() &&
root.child('userData/plan/' + newData.val() + '/owner').val() === auth.uid"
},
"units": {
// There must be at least one unit specified.
".validate": "newData.hasChildren()",
"$unitId": {
// Each unit must exist, and be owned by the current user.
".validate": "root.child('userData/unit/' + $unitId).exists() &&
root.child('userData/unit/' + $unitId + '/owner').val() === auth.uid"
}
},
// An item must have a primary unit that exists and is owned by the current user.
// root.child('userData/item/' + $itemId + '/units').hasChild(newData.val()) &&
"primaryUnitId": {
".validate": "root.child('userData/unit/' + newData.val()).exists() &&
root.child('userData/unit/' + newData.val() + '/owner').val() === auth.uid"
}
}
},
/**
* UNITS
*/
"unit": {
"$unitId": {
// A unit may be read only by its owner.
".read": "!data.exists() || root.child('userData/unit/' + $unitId + '/owner').val() === auth.uid",
// A unit may be created by an user, but only modified by the creator.
".write": "!data.exists() || root.child('userData/unit/' + $unitId + '/owner').val() === auth.uid",
// A unit must have an owner and a name
".validate": "newData.hasChildren(['owner', 'name'])",
// A unit must be owned by the creator.
"owner": {
".validate": "newData.val() === auth.uid"
},
// A unit must have a name that is a string from 1 to 16 characters.
"name": {
".validate": "newData.isString() && newData.val().length > 0 && newData.val().length <= 16"
}
}
},
/**
* UNIT CONVERSIONS
*/
"conversion": {
"$unitId": {
// A conversion object may be read only by its owner.
".read": "!data.exists() || root.child('userData/conversion/' + $unitId + '/owner').val() === auth.uid",
// A conversion may be created by any user, but only modified by the creator.
".write": "!data.exists() || root.child('userData/conversion/' + $unitId + '/owner').val() === auth.uid",
// A conversion must be for an existing unit that is owned by the user.
".validate": "newData.hasChildren(['owner']) &&
root.child('userData/unit/' + $unitId).exists() &&
root.child('userData/unit/' + $unitId + '/owner').val() === auth.uid",
// A conversion must be owned by the creator.
"owner": {
".validate": "newData.val() === auth.uid"
},
// otherUnitId represents the unit being converted TO, FROM unitId.
"$otherUnitId": {
// The unit being converted to must exist, be owned by the current user,
// and the conversion factor must be a number > 0.
".validate": "root.child('userData/unit/' + $otherUnitId).exists() &&
root.child('userData/unit/' + $otherUnitId + '/owner').val() === auth.uid &&
newData.isNumber() && newData.val() > 0"
}
}
},
/**
* STORAGE PLAN
*/
"plan": {
"$planId": {
// A plan may be read only by its owner
".read": "!data.exists() || root.child('userData/plan/' + $planId + '/owner').val() === auth.uid",
// A plan may be create by any user, but only modfied by the creator.
".write": "!data.exists() || root.child('userData/plan/' + $planId + '/owner').val() === auth.uid",
// A plan must have an owner, and a type.
".validate": "newData.hasChildren(['owner', 'type'])",
// A plan must be owned by the creator.
"owner": {
".validate": "newData.val() === auth.uid"
},
// A plan must have a type that is either 'ration' or 'baseline'
"type": {
".validate": "newData.val() === 'ration' || newData.val() === 'baseline'"
},
// BASELINE
"amount": {
// The amount must be a number greater than 0.
".validate": "newData.isNumber() && newData.val() > 0"
},
"unitId": {
// The unit must be owned by the current user.
".validate": "root.child('userData/unit/' + newData.val()).exists() &&
root.child('userData/unit/' + newData.val() + '/owner').val() === auth.uid"
},
// RATION
"adult": {
// Adult must have an amount, unit, and time.
// root.child('userData/plan/' + $planId + '/type').val() === 'ration' &&
".validate": "newData.hasChildren(['amount', 'unitId', 'time'])",
// The amount must be a number > 0.
"amount": {
".validate": "newData.isNumber() && newData.val() > 0"
},
// The unit must be a valid unit, and must be owned by the current user.
"unitId": {
".validate": "root.child('userData/unit/' + newData.val()).exists() &&
root.child('userData/unit/' + newData.val() + '/owner').val() === auth.uid"
},
// The time must be one of 'day', 'week', 'month', 'year'
"time": {
".validate": "newData.isString() &&
(newData.val() === 'day' || newData.val() === 'week' ||
newData.val() === 'month' || newData.val() === 'year')"
}
},
"child": {
// Child must have an amount, unit and time.
// root.child('userData/plan/' + $planId + '/type').val() === 'ration' &&
".validate": "newData.hasChildren(['amount', 'unitId', 'time'])",
// The amount must be a number > 0.
"amount": {
".validate": "newData.isNumber() && newData.val() > 0"
},
// The unit must be a valid unit, and must be owned by the current user.
"unitId": {
".validate": "root.child('userData/unit/' + newData.val()).exists() &&
root.child('userData/unit/' + newData.val() + '/owner').val() === auth.uid"
},
// The time must be one of 'day', 'week', 'month', 'year'
"time": {
".validate": "newData.isString() &&
(newData.val() === 'day' || newData.val() === 'week' ||
newData.val() === 'month' || newData.val() === 'year')"
}
}
}
},
/**
* HISTORY EVENTS
*/
"history": {
"$itemId": {
// History events for an item may only be read by the owner of the item.
".read": "!data.exists() || root.child('userData/item/' + $itemId + '/owner').val() === auth.uid",
// History can be deleted by the owner of the item
".write": "!newData.exists() && root.child('userData/item/' + $itemId + '/owner').val() === auth.uid",
"$eventId": {
// Events may be created by the owner of the item, but never modified.
".write": "!data.exists() && root.child('userData/item/' + $itemId + '/owner').val() === auth.uid",
// Events must have a timestamp.
".validate": "newData.hasChildren(['timestamp'])",
"timestamp": {
// The timestamp must match the current server timestamp.
".validate": "newData.val() === now"
}
}
}
}
}
}
}