forked from Aditya948351/DevPath-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirestore.rules
More file actions
216 lines (192 loc) · 10.5 KB
/
Copy pathfirestore.rules
File metadata and controls
216 lines (192 loc) · 10.5 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
function isSuperAdmin() {
return request.auth != null && (
request.auth.token.email == 'devpathind.community@gmail.com' ||
exists(/databases/$(database)/documents/super_admins/$(request.auth.token.email))
);
}
function isAdmin() {
return request.auth != null && exists(/databases/$(database)/documents/admins/$(request.auth.token.email));
}
// ─── Admins ──────────────────────────────────────────────────────────────
match /admins/{adminId} {
allow read: if true;
allow write: if isSuperAdmin() || (request.auth != null && (request.auth.token.email == adminId || request.auth.uid == adminId));
allow update: if request.auth != null && (
request.auth.token.email == adminId ||
request.auth.uid == adminId ||
isSuperAdmin() ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['followers']) ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['following'])
);
match /github_repos/{repoId} {
allow read: if true;
allow write: if isSuperAdmin() || (request.auth != null && request.auth.token.email == adminId);
}
match /projects/{projectId} {
allow read: if true;
allow create: if request.auth != null;
allow update: if request.auth != null && (
request.auth.token.email == adminId ||
isSuperAdmin() ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['stars', 'likes', 'starCount'])
);
allow delete: if request.auth != null && (request.auth.token.email == adminId || isSuperAdmin());
}
match /badges/{badgeId} {
allow read: if true;
allow write: if isSuperAdmin() || (request.auth != null && request.auth.token.email == adminId);
}
}
// ─── Super Admins ─────────────────────────────────────────────────────────
match /super_admins/{email} {
allow read: if isSuperAdmin();
allow write: if isSuperAdmin();
}
// ─── Members ──────────────────────────────────────────────────────────────
match /members/{userId} {
allow read: if true;
allow create, delete: if (request.auth != null && request.auth.uid == userId) || isSuperAdmin();
allow update: if request.auth != null && (
(request.auth.uid == userId && !request.resource.data.diff(resource.data).affectedKeys().hasAny(['role', 'isAdmin', 'isSuperAdmin', 'points', 'badges'])) ||
isSuperAdmin() ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['followers']) ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['following']) ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['starredResources'])
);
match /projects/{projectId} {
allow read: if true;
allow create: if request.auth != null;
allow update: if request.auth != null && (
request.auth.uid == userId ||
isSuperAdmin() ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['stars', 'likes', 'starCount']) ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['followers'])
);
allow delete: if request.auth != null && (request.auth.uid == userId || isSuperAdmin());
}
match /progress/{progressId} {
allow read, write: if request.auth != null && request.auth.uid == userId;
}
match /badges/{badgeId} {
allow read: if true;
allow write: if isSuperAdmin() || (request.auth != null && request.auth.uid == userId);
}
match /github_repos/{repoId} {
allow read: if true;
allow write: if request.auth != null && (request.auth.uid == userId || isSuperAdmin());
}
match /notifications/{notificationId} {
allow read: if request.auth != null && (request.auth.uid == userId || isSuperAdmin());
allow create: if isSuperAdmin() || isAdmin();
allow update, delete: if request.auth != null && (request.auth.uid == userId || isSuperAdmin());
}
// ── 🆕 Gamification subcollection ──────────────────────────────────────
// Stores XP, streak data, earned badges, and activity calendar per user.
// xp and earnedBadges are protected — only super admin or Cloud Functions
// should increment them. Users can write activityDates and streakFreezes.
match /gamification/{docId} {
allow read: if true; // Public so leaderboard components can read
allow create: if request.auth != null && request.auth.uid == userId;
allow update: if request.auth != null && (
isSuperAdmin() ||
// Users can only update non-sensitive fields (streak calendar, freeze usage)
(request.auth.uid == userId &&
!request.resource.data.diff(resource.data).affectedKeys().hasAny(['xp', 'earnedBadges', 'weeklyXP', 'monthlyXP']))
);
allow delete: if isSuperAdmin();
}
}
// ─── Earned Badges ────────────────────────────────────────────────────────
match /earned_badges/{badgeId} {
allow read: if true;
allow write: if isSuperAdmin();
}
// ─── Leaderboard ──────────────────────────────────────────────────────────
// Updated: super admin or a Cloud Function (via admin SDK) should write xp/points.
// Direct user writes are blocked for score fields to prevent cheating.
match /leaderboard/{userId} {
allow read: if true;
allow create, delete: if (request.auth != null && request.auth.uid == userId) || isSuperAdmin();
allow update: if request.auth != null && (
(request.auth.uid == userId &&
!request.resource.data.diff(resource.data).affectedKeys().hasAny(['points', 'xp', 'weeklyXP', 'monthlyXP'])) ||
isSuperAdmin()
);
}
// ─── Resources ───────────────────────────────────────────────────────────
match /resources/{resourceId} {
allow read: if true;
allow write: if isSuperAdmin();
allow update: if request.auth != null && (
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['starCount']) ||
isSuperAdmin()
);
}
// ─── Superadmin / Admin Keys ──────────────────────────────────────────────
match /superadmin_keys/{keyId} {
allow read: if isSuperAdmin();
allow write: if isSuperAdmin();
}
match /admin_keys/{keyId} {
allow read: if isSuperAdmin();
allow write: if isSuperAdmin();
}
// ─── Roles ───────────────────────────────────────────────────────────────
match /roles/{roleId} {
allow read: if true;
allow write: if isSuperAdmin();
}
// ─── Projects (top-level) ────────────────────────────────────────────────
match /projects/{projectId} {
allow read: if true;
allow create: if request.auth != null;
allow update: if request.auth != null && (
request.auth.uid == resource.data.userId ||
isSuperAdmin() ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['stars', 'likes', 'starCount'])
);
allow delete: if request.auth != null && (request.auth.uid == resource.data.userId || isSuperAdmin());
}
// ─── Discussions ─────────────────────────────────────────────────────────
match /discussions/{discussionId} {
allow read: if true;
allow create: if request.auth != null;
allow update: if request.auth != null && (
resource.data.authorId == request.auth.uid ||
isSuperAdmin() ||
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['reactions', 'replyCount'])
);
allow delete: if request.auth != null && (resource.data.authorId == request.auth.uid || isSuperAdmin());
match /replies/{replyId} {
allow read: if true;
allow create: if request.auth != null;
allow update, delete: if request.auth != null && (resource.data.authorId == request.auth.uid || isSuperAdmin());
}
}
// ─── Collection Group: Projects ──────────────────────────────────────────
match /{path=**}/projects/{projectId} {
allow read: if true;
}
// ─── Events ──────────────────────────────────────────────────────────────
match /events/{eventId} {
allow read: if true;
allow write: if isSuperAdmin() || isAdmin();
}
// ─── Notifications (admin/system) ────────────────────────────────────────
match /notifications/{notificationId} {
allow read: if isSuperAdmin() || isAdmin();
allow create: if isSuperAdmin() || isAdmin();
}
match /admin_notifications/{notificationId} {
allow read, write: if isSuperAdmin() || isAdmin();
}
// ─── Settings ────────────────────────────────────────────────────────────
match /settings/{settingId} {
allow read: if true;
allow write: if isSuperAdmin();
}
}
}