-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirestore.rules
More file actions
51 lines (42 loc) · 1.87 KB
/
firestore.rules
File metadata and controls
51 lines (42 loc) · 1.87 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 {
// Helper function to check if user is authenticated
function isAuthenticated() {
return request.auth != null;
}
// Helper function to check if user owns the resource
function isOwner(userId) {
return isAuthenticated() && request.auth.uid == userId;
}
// Users collection - users can only read/write their own data
match /users/{userId} {
allow read, write: if isOwner(userId);
}
// Faces collection - users can only read/write their own faces
match /faces/{faceId} {
// Allow read if the face belongs to the authenticated user
allow read: if isAuthenticated() &&
(resource.data.userId == request.auth.uid ||
resource.data.userId == 'default');
// Allow create if the face is being created for the authenticated user
allow create: if isAuthenticated() &&
request.resource.data.userId == request.auth.uid;
// Allow update/delete if the face belongs to the authenticated user
allow update, delete: if isAuthenticated() &&
resource.data.userId == request.auth.uid;
}
// Interactions collection - users can only read/write their own interactions
match /interactions/{interactionId} {
// Allow read if the interaction belongs to the authenticated user
allow read: if isAuthenticated() &&
resource.data.userId == request.auth.uid;
// Allow create if the interaction is being created for the authenticated user
allow create: if isAuthenticated() &&
request.resource.data.userId == request.auth.uid;
// Allow update/delete if the interaction belongs to the authenticated user
allow update, delete: if isAuthenticated() &&
resource.data.userId == request.auth.uid;
}
}
}