-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathfirestore.rules
53 lines (48 loc) · 1.29 KB
/
firestore.rules
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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read: if
true
}
function userIsLoggedIn(){
return request.auth != null
}
function isNewResource(){
return resource == null
}
function resourceBelongsToUser(){
return request.auth.uid == resource.data.userId
}
//threads
match /threads/{thread}{
function isOnlyAppendingPostAndContributor(){
return request.resource.data.diff(resource.data).affectedKeys().hasOnly(['posts', 'contributors'])
}
allow write: if
userIsLoggedIn() && (isNewResource() || resourceBelongsToUser())
allow update: if
isOnlyAppendingPostAndContributor()
}
//posts
match /posts/{post}{
allow write: if
userIsLoggedIn() && (isNewResource() || resourceBelongsToUser())
}
// forums
match /forums/{forum}{
function isOnlyAppendingThread(){
return request.resource.data.diff(resource.data).affectedKeys().hasOnly(['threads'])
}
allow update: if
userIsLoggedIn() && isOnlyAppendingThread()
}
// users
match /users/{user}{
allow create: if
true
allow update: if
request.auth.uid == resource.id
}
}
}