-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfirestore.rules
74 lines (74 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
rules_version = '2';
function adminControl() {
return request.auth.token.admin == true;
}
function isLogin() {
return request.auth.uid != null;
}
function onlyIdentityUser(userId) {
return request.auth.uid == userId;
}
service cloud.firestore {
match /databases/{database}/documents {
match /secretUsers/{userId} {
allow read: if onlyIdentityUser(userId);
allow write: if onlyIdentityUser(userId);
}
match /publicUsers/{userId} {
allow read: if true;
allow write: if onlyIdentityUser(userId);
}
match /publicUsers/{userId}/bookmarks/{bookmarkId} {
allow read: if true;
allow write: if onlyIdentityUser(userId);
}
match /publicUsers/{userId}/settings/{settingId} {
allow read: if true;
allow write: if onlyIdentityUser(userId);
}
match /comments/{commentId} {
allow read: if true;
allow write: if isLogin();
}
match /questions/{questionId} {
allow read: if true;
allow write: if isLogin();
}
match /questions/{questionId}/body/{bodyId} {
allow read: if true;
allow write: if isLogin();
}
match /questionsTopic/{questionsTopicId} {
allow read: if true;
allow write: if isLogin();
}
match /questionsFollow/{questionsFollowId} {
allow read: if true;
allow write: if isLogin();
}
match /answers/{answerId} {
allow read: if true;
allow write: if isLogin();
}
match /bookmarks/{bookmarkId} {
allow read: if isLogin();
allow write: if isLogin();
}
match /thanks/{thankId} {
allow read: if isLogin();
allow write: if isLogin();
}
match /upvotes/{upvoteId} {
allow read: if true;
allow write: if isLogin();
}
match /questionUpvotes/{upvoteId} {
allow read: if true;
allow write: if isLogin();
}
match /upvoteAnswerRanking/{rankingId} {
allow read: if true;
allow write: if isLogin();
}
}
}