-
Notifications
You must be signed in to change notification settings - Fork 0
/
firestore.rules
52 lines (41 loc) · 1.28 KB
/
firestore.rules
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
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /shopping-carts/{document=**} {
allow read,write:if true;
}
match /users/{userId} {
allow read:if isSignedIn() && (belongsTo(userId) || isAdmin());
}
match /products/{productId} {
allow read:if true;
allow create, update, delete:if isAdmin();
}
match /customers/{customerId} {
allow read,write:if isAdmin();
}
match /orders/{orderId} {
allow create,get, update:if true;
allow list:if isSignedIn() && (isCustomer() || isAdmin());
allow delete:if isSignedIn() && isAdmin();
}
function isSignedIn() {
return request.auth != null;
}
function belongsTo(userId) {
return request.auth.uid == userId;
}
function isAdmin() {
return getUserData().type == 'admin';
}
function isOwner() {
return request.auth.uid == resource.data.uid;
}
function isCustomer() {
return request.auth.token.email == resource.data.email;
}
function getUserData() {
return get(/databases/$(database)/documents/users/$(request.auth.uid)).data;
}
}
}