-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity-rules.json
150 lines (133 loc) · 4.16 KB
/
security-rules.json
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
{
"rules": {
"admins": {
// readable by the world
".read": true,
// NOT writable by the world
".write": false,
"$uid": {
".validate": "newData.hasChildren(['scope'])"
}
},
"public_profile": {
".read": true,
"$uid": {
".write": "auth.uid === $uid"
}
},
"profile": {
".read": false,
"$uid": {
".read": "auth.uid === $uid",
".write": "auth.uid === $uid",
"uid": {
".validate": "newData.isString() && newData.val().length > 1"
},
"username": {
".validate": "newData.isString() && newData.val().length > 1"
}
}
},
// Post records -- body of posts
"posts": {
".read": true,
".write": false,
"$parentId": {
"$childId": {
// must be admin or post owner to modify a post... TODO: admin scope is not well defined
".write": "data.exists() ? ( auth.uid === data.child('author').child('uid').val() || root.child('admins').child(auth.uid).child('scope').val() === '*' ) : true",
".validate": "newData.hasChildren(['threadId', 'text', 'author']) && newData.child('timestamp').val() > 1",
"author": {
".validate": "newData.child('uid').isString()"
},
"threadId": {
".validate": "newData.isString()"
},
"text": {
".validate": "newData.isString()"
}
}
}
},
// Thread records
"threads": {
".read": true,
// TODO: admin scope is not a well defined notion yet
// ".write": "root.child('admins').child(auth.uid).child('scope').val() === '*'",
// Alternative: allow any authenticated user to create a thread
".write": "auth != null",
// Validation
"$threadId": {
".validate": "newData.hasChildren(['threadId', 'title', 'href', 'created'])",
// must be admin or post owner to modify a post... TODO: admin scope is not well defined
".write": "data.exists() ? ( auth.uid === data.child('owner').child('uid').val() || root.child('admins').child(auth.uid).child('scope').val() === '*' ) : true",
"timestamp": {
".validate": "newData.isNumber() && newData.val() > 1"
},
"owner": {
".validate": "newData.child('uid').isString()"
},
"threadId": {
".validate": "newData.isString() && newData.val().length > 1"
},
"title": {
".validate": "newData.isString() && newData.val().length > 1"
},
"href": {
".validate": "newData.isString() && newData.val().length > 1"
}
}
},
// Public Vote counts for posts
"postvotes": {
// READ: ALL
".read": true,
// WRITE: Authenticated
".write": "auth != null",
// parentId -> childId -> { up, down, timestamp }
"$parentId": {
"$childId": {
".validate": "newData.hasChildren(['down', 'up', 'timestamp'])",
"timestamp": {
".validate": "newData.isNumber() && newData.val() > 1"
},
"up": {
".validate": "newData.isNumber()"
},
"down": {
".validate": "newData.isNumber()"
}
}
}
},
// Private Vote tallies for each user
"uservotes": {
// READ/WRITE: false by default
".read": false,
".write": false,
// Allow users to read/write under their own area
"$uid": {
".read": "auth.uid === $uid",
".write": "auth.uid === $uid",
// Validate vote structure
// uid -> parentId -> childId -> { up, down, timestamp }
"$parentId": {
"$childId": {
".validate": "newData.hasChildren(['down', 'up', 'timestamp'])",
"timestamp": {
".validate": "newData.isNumber() && newData.val() > 1"
},
"up": {
".validate": "newData.isBoolean()"
},
"down": {
".validate": "newData.isBoolean()"
}
}
}
}
},
// Don't let users post to other fields
"$other": {".validate": false}
}
}