-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase-rules.txt
52 lines (46 loc) · 1.51 KB
/
firebase-rules.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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// Helper functions
function isAuthenticated() {
return request.auth != null;
}
function isOwner(userId) {
return request.auth.uid == userId;
}
function isAdmin() {
return exists(/databases/$(database)/documents/users/$(request.auth.uid)) &&
get(/databases/$(database)/documents/users/$(request.auth.uid)).data.role == 'admin';
}
// User settings
match /userSettings/{userId} {
allow read: if isAuthenticated() && isOwner(userId);
allow write: if isAuthenticated() && isOwner(userId);
}
// Users collection
match /users/{userId} {
allow read: if isAuthenticated();
allow write: if isAuthenticated() && (isOwner(userId) || isAdmin());
}
// Tickets collection
match /tickets/{ticketId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated();
allow update: if isAuthenticated() && (
resource.data.assignedTo == request.auth.uid ||
resource.data.createdBy == request.auth.uid ||
isAdmin()
);
allow delete: if isAuthenticated() && isAdmin();
}
// Comments subcollection in tickets
match /tickets/{ticketId}/comments/{commentId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated();
allow update, delete: if isAuthenticated() && (
resource.data.userId == request.auth.uid ||
isAdmin()
);
}
}
}