-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirestore.rules
More file actions
50 lines (42 loc) · 1.46 KB
/
Copy pathfirestore.rules
File metadata and controls
50 lines (42 loc) · 1.46 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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
function isSignedIn() {
return request.auth != null;
}
function isSelf(userId) {
return isSignedIn() && request.auth.uid == userId;
}
function userDoc() {
return get(/databases/$(database)/documents/users/$(request.auth.uid));
}
function isAdmin() {
return isSignedIn() && userDoc().data.role == 'admin' && userDoc().data.approved == true;
}
function isStaff() {
return isSignedIn() && userDoc().data.role == 'staff' && userDoc().data.approved == true;
}
function isStudent() {
return isSignedIn() && userDoc().data.role == 'student';
}
// Logged-in users can read their own profile.
// Admin can read/write all user profiles.
match /users/{userId} {
allow read: if isSelf(userId) || isAdmin();
allow create: if isSelf(userId) || isAdmin();
allow update: if isSelf(userId) || isAdmin();
allow delete: if isAdmin();
}
// Menu is readable by authenticated users; only admin/staff can edit.
match /mess_menu/{docId} {
allow read: if isSignedIn();
allow write: if isAdmin() || isStaff();
}
// Complaints/reports and other collections used by the app.
// Keep broad authenticated access for now to unblock app login/flows;
// tighten later if needed per role/action.
match /{document=**} {
allow read, write: if isSignedIn();
}
}
}