-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirestore.rules
33 lines (31 loc) · 1.17 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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /users/{userId} {
allow read, write: if request.auth.uid == userId;
}
function isMember(workspaceId) {
return exists(/databases/$(database)/documents/workspaces/$(workspaceId)/members/$(request.auth.uid));
}
match /workspaces/{workspaceId} {
allow delete: if request.auth.uid == resource.data.ownerId;
allow read, update: if isMember(workspaceId);
allow list;
match /members/{memberId} {
allow write: if request.auth.uid == memberId && (request.resource.data.role == "owner" && request.auth.uid == get(/databases/$(database)/documents/workspaces/$(workspaceId)).data.ownerId) || (request.resource.data.role in ["viewer", "editor"]);
}
match /tables/{tableId} {
allow read, update: if isMember(workspaceId);
match /columns/{columnId} {
allow read, update: if isMember(workspaceId);
}
match /rows/{rowId} {
allow read, update: if isMember(workspaceId);
}
match /cells/{rowId} {
allow read, update: if isMember(workspaceId);
}
}
}
}
}