-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirestore.rules
45 lines (36 loc) · 1.08 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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /games/{token} {
allow get: if true
allow list: if authenticated()
allow update, delete: if isGameMaster(token)
allow create: if request.auth.uid == request.resource.data.master.uid
}
match /games/{token}/players/{pid} {
allow get, create, update, delete: if true
allow list: if isGameMaster(token)
}
match /players/{playerId} {
allow create, read: if true
}
match /config/{config=**} {
allow read: if true
}
function isGameMaster(token) {
return request.auth.uid == get(/databases/$(database)/documents/games/$(token)).data.master.uid
}
function authenticated() {
return request.auth != null
}
function matchUid(uid) {
return authenticated() && request.auth.uid == uid
}
match /users/{uid} {
allow create: if matchUid(uid)
match /messages/{mid} {
allow create: if authenticated() && request.resource.data.sender == request.auth.uid
}
}
}
}