-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirestore.rules
More file actions
51 lines (45 loc) · 1.4 KB
/
Copy pathfirestore.rules
File metadata and controls
51 lines (45 loc) · 1.4 KB
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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// Helper functions
function isAuthenticated() {
return request.auth != null;
}
function isAdmin() {
return isAuthenticated() &&
get(/databases/$(database)/documents/users/$(request.auth.uid)).data.role == 'ADMIN';
}
function isOwner(userId) {
return isAuthenticated() && request.auth.uid == userId;
}
// User rules
match /users/{userId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated();
allow update, delete: if isAdmin() || isOwner(userId);
}
// Booking rules
match /bookings/{bookingId} {
allow read: if isAuthenticated() && (
isAdmin() ||
request.auth.uid == resource.data.userId
);
allow create: if isAuthenticated();
allow update: if isAuthenticated() && (
isAdmin() ||
(request.auth.uid == resource.data.userId &&
resource.data.status == "confirmed")
);
allow delete: if isAdmin();
}
// Event rules
match /events/{eventId} {
allow read: if true;
allow create: if isAuthenticated() && (isAdmin() || request.resource.data.organizerId == request.auth.uid);
allow update, delete: if isAuthenticated() && (
isAdmin() ||
resource.data.organizerId == request.auth.uid
);
}
}
}