-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfirestore.rules
More file actions
132 lines (105 loc) · 4.48 KB
/
Copy pathfirestore.rules
File metadata and controls
132 lines (105 loc) · 4.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// ---------------------------------------------------------
// 🛡️ HELPER FUNCTIONS (FIXED & SAFE)
// ---------------------------------------------------------
// Define path helper
function getUserProfilePath(uid) {
return /databases/$(database)/documents/artifacts/default-app-id/users/$(uid)/userProfile/profile;
}
// Added exists() check to prevent Login Crash
function isAdmin() {
return request.auth != null &&
exists(getUserProfilePath(request.auth.uid)) &&
get(getUserProfilePath(request.auth.uid)).data.role == "admin";
}
// Added exists() check
function ownsDevice(deviceId) {
return request.auth != null &&
exists(getUserProfilePath(request.auth.uid)) &&
get(getUserProfilePath(request.auth.uid)).data.deviceId == deviceId;
}
function isAdminUpdatingUserProfile(userId) {
return isAdmin() && exists(/databases/$(database)/documents/artifacts/default-app-id/users/$(userId));
}
// ---------------------------------------------------------
// 📦 FIRMWARE RELEASES
// ---------------------------------------------------------
match /firmware_releases/{releaseId} {
allow read: if request.auth != null;
allow write: if isAdmin();
}
// ---------------------------------------------------------
// 🔌 DEVICES & SUBCOLLECTIONS
// ---------------------------------------------------------
match /devices/{deviceId} {
allow read, write: if isAdmin() || ownsDevice(deviceId);
}
// Added '|| isAdmin()' to ALL subcollections below.
// Without this, your Admin Dashboard charts will be empty/error out.
match /devices/{deviceId}/realtime_readings/{readingId} {
allow read: if ownsDevice(deviceId) || isAdmin(); // User writes via IoT, Admin reads for metrics
}
match /devices/{deviceId}/appliances/{applianceId} {
allow read: if ownsDevice(deviceId) || isAdmin();
}
match /devices/{deviceId}/daily_summaries/{dateId} {
allow read: if ownsDevice(deviceId) || isAdmin();
}
match /devices/{deviceId}/appliance_predictions/{predictionId} {
allow read, write: if ownsDevice(deviceId) || isAdmin();
}
match /devices/{deviceId}/models/{modelId} {
allow read: if ownsDevice(deviceId) || isAdmin();
}
match /devices/{deviceId}/clusters/{clusterId} {
allow read, write: if ownsDevice(deviceId) || isAdmin();
}
match /devices/{deviceId}/confirmed_appliances/{applianceId} {
allow read, write: if ownsDevice(deviceId) || isAdmin();
}
match /devices/{deviceId}/predictions/{predictionId} {
allow read, write: if ownsDevice(deviceId) || isAdmin();
}
// ---------------------------------------------------------
// 👤 USERS & PROFILES
// ---------------------------------------------------------
match /artifacts/{appId}/public/data/{collection}/{documentId} {
allow read: if request.auth != null;
}
match /artifacts/{appId}/users/{userId} {
allow delete, update, read: if isAdmin();
}
match /artifacts/{appId}/users/{userId}/userProfile/{docId} {
allow read, write: if request.auth != null && request.auth.uid == userId;
// Allow Admin to Create/Write profiles (needed for Create User modal)
allow read, write: if isAdmin();
}
// Allow users to manage their own notifications
match /artifacts/{appId}/users/{userId}/notifications/{notificationId} {
allow read, write, create, delete: if request.auth != null && request.auth.uid == userId;
}
// 🔑 Admin collectionGroup rule
match /{path=**}/userProfile/{docId} {
allow read: if isAdmin();
}
// ---------------------------------------------------------
// 📝 FEEDBACK
// ---------------------------------------------------------
match /feedback/{feedbackId} {
// Admins can read and update all feedback for the management page.
// Users create feedback via a secure backend endpoint, so they don't need direct write access here.
allow read, write: if isAdmin();
}
// ---------------------------------------------------------
// ⚙️ SYSTEM / ADMIN
// ---------------------------------------------------------
match /admin/models/{modelId} {
allow write: if isAdmin();
}
match /{document=**} {
allow read, write: if false;
}
}
}