-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirestore.rules
More file actions
381 lines (318 loc) · 14.3 KB
/
Copy pathfirestore.rules
File metadata and controls
381 lines (318 loc) · 14.3 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// Common helper functions
function isAuthenticated() {
return request.auth != null;
}
function isOwner(userId) {
return isAuthenticated() && request.auth.uid == userId;
}
function isChannelAdmin(channelId) {
return isAuthenticated() && channelId != null &&
exists(/databases/$(database)/documents/channels/$(channelId)) &&
get(/databases/$(database)/documents/channels/$(channelId)).data.admins.hasAny([request.auth.uid]);
}
function isChannelMember(channelId) {
return isAuthenticated() && channelId != null &&
exists(/databases/$(database)/documents/channels/$(channelId)) &&
get(/databases/$(database)/documents/channels/$(channelId)).data.members.hasAny([request.auth.uid]);
}
function isEventAdmin(eventId) {
// Return false if eventId is null or document doesn't exist
return isAuthenticated() && eventId != null &&
exists(/databases/$(database)/documents/events/$(eventId)) &&
(
// Check if admins field exists and contains the user
(("admins" in get(/databases/$(database)/documents/events/$(eventId)).data) &&
get(/databases/$(database)/documents/events/$(eventId)).data.admins.hasAny([request.auth.uid])) ||
// Check if createdBy field exists and matches the user
(("createdBy" in get(/databases/$(database)/documents/events/$(eventId)).data) &&
get(/databases/$(database)/documents/events/$(eventId)).data.createdBy == request.auth.uid)
);
}
function isEventAttendee(eventId) {
// Return false if eventId is null or document doesn't exist
return isAuthenticated() && eventId != null &&
exists(/databases/$(database)/documents/events/$(eventId)) &&
// Check if attendees field exists and contains the user
("attendees" in get(/databases/$(database)/documents/events/$(eventId)).data) &&
get(/databases/$(database)/documents/events/$(eventId)).data.attendees.hasAny([request.auth.uid]);
}
function isSiteAdmin() {
return isAuthenticated() &&
(request.auth.uid == "ADMIN_UID_1" ||
request.auth.uid == "ADMIN_UID_2");
}
function isChannelPublic(channelId) {
return channelId != null &&
exists(/databases/$(database)/documents/channels/$(channelId)) &&
get(/databases/$(database)/documents/channels/$(channelId)).data.isPublic == true;
}
function isEventPublic(eventId) {
// Return false if eventId is null or document doesn't exist
return eventId != null &&
exists(/databases/$(database)/documents/events/$(eventId)) &&
// Check if isPublic field exists and is true
("isPublic" in get(/databases/$(database)/documents/events/$(eventId)).data) &&
get(/databases/$(database)/documents/events/$(eventId)).data.isPublic == true;
}
function canSeeChannel(channelId) {
return isAuthenticated() && channelId != null &&
exists(/databases/$(database)/documents/channels/$(channelId)) &&
(isChannelPublic(channelId) ||
isChannelMember(channelId) ||
isChannelAdmin(channelId));
}
function canSeeEvent(eventId) {
// Anyone can see events now
return true;
}
// DEBUG MODE - Set to false before deploying to production
function isDebugMode() {
return true; // Temporarily set to true for troubleshooting
}
// User profiles
match /users/{userId} {
allow read: if isAuthenticated();
allow write: if isOwner(userId) || isDebugMode() || isSiteAdmin();
}
// Posts
match /posts/{postId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated() && (
isDebugMode() ||
(request.resource.data.userId == request.auth.uid &&
(request.resource.data.channelId == null ||
canSeeChannel(request.resource.data.channelId)))
);
allow update: if isAuthenticated() && (
isDebugMode() ||
// Post creator can update their own post
resource.data.userId == request.auth.uid ||
// Channel admins can update any post in their channel
(resource.data.channelId != null && isChannelAdmin(resource.data.channelId)) ||
// Any user who can see the channel can update likes
(resource.data.channelId != null &&
canSeeChannel(resource.data.channelId) &&
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['likes', 'likeCount']))
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.userId == request.auth.uid ||
(resource.data.channelId != null && isChannelAdmin(resource.data.channelId))
);
// Comments subcollection
match /comments/{commentId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated() && (
isDebugMode() ||
(request.resource.data.userId == request.auth.uid &&
(get(/databases/$(database)/documents/posts/$(postId)).data.channelId == null ||
canSeeChannel(get(/databases/$(database)/documents/posts/$(postId)).data.channelId)))
);
allow update: if isAuthenticated() && (
isDebugMode() ||
// Comment creator can update their own comment
resource.data.userId == request.auth.uid ||
// Channel admins can update any comment
(get(/databases/$(database)/documents/posts/$(postId)).data.channelId != null &&
isChannelAdmin(get(/databases/$(database)/documents/posts/$(postId)).data.channelId)) ||
// Any user who can see the channel can update likes only
(get(/databases/$(database)/documents/posts/$(postId)).data.channelId != null &&
canSeeChannel(get(/databases/$(database)/documents/posts/$(postId)).data.channelId) &&
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['likes', 'likeCount']))
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.userId == request.auth.uid ||
get(/databases/$(database)/documents/posts/$(postId)).data.userId == request.auth.uid ||
(get(/databases/$(database)/documents/posts/$(postId)).data.channelId != null &&
isChannelAdmin(get(/databases/$(database)/documents/posts/$(postId)).data.channelId))
);
}
}
// Channels
match /channels/{channelId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated();
allow update: if isAuthenticated() && (
isDebugMode() ||
// Original creator can do anything
resource.data.createdBy == request.auth.uid ||
// Channel admins can update most fields
resource.data.admins.hasAny([request.auth.uid]) ||
// Any authenticated user can update certain fields
request.resource.data.diff(resource.data).affectedKeys()
.hasOnly(['lastActivity', 'messages', 'lastMessage', 'messageCount']) ||
// Special case for joining a channel (for both public and private channels)
(
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['members']) &&
// Only the requesting user should be added to members
request.resource.data.members.hasAll(resource.data.members) &&
request.resource.data.members.removeAll(resource.data.members).hasOnly([request.auth.uid])
)
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.createdBy == request.auth.uid ||
resource.data.admins.hasAny([request.auth.uid])
);
// Channel messages subcollection
match /messages/{messageId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated() && (
isDebugMode() ||
isChannelMember(channelId)
);
allow update: if isAuthenticated() && (
isDebugMode() ||
resource.data.authorId == request.auth.uid ||
isChannelAdmin(channelId)
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.authorId == request.auth.uid ||
isChannelAdmin(channelId)
);
}
// Ban history subcollection
match /banHistory/{banId} {
allow read: if isAuthenticated() && (
isDebugMode() ||
isChannelAdmin(channelId)
);
allow create, update, delete: if isAuthenticated() && (
isDebugMode() ||
isChannelAdmin(channelId)
);
}
}
// Channel messages (top-level collection)
match /channelMessages/{messageId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated() && (
isDebugMode() ||
(request.resource.data.userId == request.auth.uid &&
canSeeChannel(request.resource.data.channelId))
);
allow update: if isAuthenticated() && (
isDebugMode() ||
// Message creator can update their own message
resource.data.userId == request.auth.uid ||
// Channel admins can update any message
isChannelAdmin(resource.data.channelId) ||
// Any user who can see the channel can update likes/reactions
(canSeeChannel(resource.data.channelId) &&
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['likes', 'reactions', 'readBy']))
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.userId == request.auth.uid ||
(resource.data.channelId != null && isChannelAdmin(resource.data.channelId))
);
}
// Message likes/reactions
match /messageLikes/{likeId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated() && (
isDebugMode() ||
(request.resource.data.userId == request.auth.uid &&
(request.resource.data.channelId == null ||
canSeeChannel(request.resource.data.channelId)))
);
allow update, delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.userId == request.auth.uid
);
}
// Standalone comments collection
match /comments/{commentId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated() && (
isDebugMode() ||
(request.resource.data.userId == request.auth.uid &&
(request.resource.data.channelId == null ||
canSeeChannel(request.resource.data.channelId)))
);
allow update: if isAuthenticated() && (
isDebugMode() ||
// Comment creator can update their own comment
resource.data.userId == request.auth.uid ||
// Channel admins can update any comment in their channel
(resource.data.channelId != null && isChannelAdmin(resource.data.channelId)) ||
// Any user who can see the channel can update likes only
(resource.data.channelId != null &&
canSeeChannel(resource.data.channelId) &&
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['likes', 'likeCount']))
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.userId == request.auth.uid ||
(resource.data.postId != null &&
get(/databases/$(database)/documents/posts/$(resource.data.postId)).data.userId == request.auth.uid) ||
(resource.data.channelId != null && isChannelAdmin(resource.data.channelId)) ||
(resource.data.postId != null &&
get(/databases/$(database)/documents/posts/$(resource.data.postId)).data.channelId != null &&
isChannelAdmin(get(/databases/$(database)/documents/posts/$(resource.data.postId)).data.channelId))
);
}
// Image uploads
match /images/{imageId} {
allow read: if isAuthenticated();
allow create: if isAuthenticated();
allow update, delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.userId == request.auth.uid
);
}
// Events
match /events/{eventId} {
// Allow anyone to read events (no authentication required)
allow read: if true;
allow create: if isAuthenticated();
allow update: if isAuthenticated() && (
isDebugMode() ||
isEventAdmin(eventId) ||
// Special case for joining an event (adding self to attendees)
(
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['attendees']) &&
request.resource.data.attendees.hasAll(resource.data.attendees) &&
request.resource.data.attendees.removeAll(resource.data.attendees).hasOnly([request.auth.uid])
)
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
isEventAdmin(eventId)
);
// Event comments
match /comments/{commentId} {
// Allow anyone to read event comments (no authentication required)
allow read: if true;
allow create: if isAuthenticated() && (
isDebugMode() ||
isEventAttendee(eventId)
);
allow update: if isAuthenticated() && (
isDebugMode() ||
resource.data.createdBy == request.auth.uid ||
// Allow updating likes only - removed canSeeEvent check since it's always true now
request.resource.data.diff(resource.data).affectedKeys().hasOnly(['likes', 'likeCount'])
);
allow delete: if isAuthenticated() && (
isDebugMode() ||
resource.data.createdBy == request.auth.uid ||
isEventAdmin(eventId)
);
}
}
// User subscriptions to channels
match /channelSubscriptions/{subscriptionId} {
allow read: if isAuthenticated();
allow write: if isAuthenticated() && (
isDebugMode() ||
request.resource.data.userId == request.auth.uid
);
}
}
}