-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirestore.rules
45 lines (40 loc) · 1.31 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 {
// Helper functions
function isAuthenticated() {
return request.auth != null;
}
function isOwner(userId) {
return isAuthenticated() && request.auth.uid == userId;
}
function hasRole(role) {
return isAuthenticated() && get(/databases/$(database)/documents/users/$(request.auth.uid)).data.role == role;
}
// Users collection
match /users/{userId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated() && request.resource.data.role == 'agent';
allow update: if isOwner(userId) || hasRole('owner');
allow delete: if hasRole('owner');
}
// Submissions collection
match /submissions/{submissionId} {
allow read: if isAuthenticated() && (
isOwner(resource.data.agentId) ||
hasRole('owner')
);
allow create: if isAuthenticated() && request.resource.data.agentId == request.auth.uid;
allow update: if isAuthenticated() && (
isOwner(resource.data.agentId) ||
hasRole('owner')
);
allow delete: if hasRole('owner');
}
// Agencies collection
match /agencies/{agencyId} {
allow read: if isAuthenticated();
allow write: if hasRole('owner');
}
}
}