-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirestore.rules
60 lines (47 loc) · 1.59 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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
function isAuthed() {
return request.auth.uid != null && request.auth.token.email_verified == true;
}
function isAdmin() {
return isAuthed() && request.auth.token.role == 'Administrator';
}
function isEditor() {
return isAuthed() && request.auth.token.role == 'Content Editor';
}
function isEditorOrAdmin() {
return isEditor() || isAdmin();
}
function attachedEntityExists(entityType, entityId) {
return exists(/databases/$(database)/documents/$(entityType)/$(entityId));
}
match /users/{id} {
allow read, write: if isAdmin();
}
match /affiliates/{affiliateId} {
allow read, write: if isEditorOrAdmin();
}
match /occupations/{occupationId} {
allow read, write: if isEditorOrAdmin();
}
match /attachments/{attachmentId} {
allow write: if isEditorOrAdmin()
&& ('entityType' in request.resource.data)
&& (request.resource.data.entityType == 'occupations' || request.resource.data.entityType == 'affiliates')
&& ('entityId' in request.resource.data)
&& attachedEntityExists(request.resource.data.entityType, request.resource.data.entityId);
allow read: if isEditorOrAdmin();
allow delete: if isEditorOrAdmin();
}
match /invites/{attachmentId} {
allow read, write: if isAdmin();
}
match /statistics/{statisticId} {
allow read: if isEditorOrAdmin();
}
match /{document=**} {
allow read, write: if false;
}
}
}