-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFirebaseRules.txt
67 lines (53 loc) · 1.47 KB
/
FirebaseRules.txt
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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /customers/{uid} {
allow read: if request.auth.uid == uid;
match /checkout_sessions/{id} {
allow read, write: if request.auth.uid == uid;
}
match /subscriptions/{id} {
allow read: if request.auth.uid == uid;
}
match /payments/{id} {
allow read: if request.auth.uid == uid;
}
}
match /products/{id} {
allow read: if true;
match /prices/{id} {
allow read: if true;
}
match /tax_rates/{id} {
allow read: if true;
}
}
match /users/{id}{
allow read,write:if true;
}
function isMemberOfChat(chatId){
return exists(/databases/$(database)/documents/chats/$(chatId)/members/$(request.auth.uid));
}
// Collection groups require special access
// https://stackoverflow.com/questions/56313459/collection-group-permissions-for-firestore
match /{path=**}/members/{memberId} {
allow read, write: if true;
}
match /chats {
allow read,write:if true;
}
match /chats/{chatId}{
allow read,write : if true;
match /members{
allow read,write;
}
match /members/{userId}{
allow read,write;
}
match /messages/{messageId}{
allow read;
allow write : if isMemberOfChat(chatId);
}
}
}
}