-
Notifications
You must be signed in to change notification settings - Fork 15
/
storage.rules
50 lines (40 loc) · 1.14 KB
/
storage.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
service firebase.storage {
match /b/{bucket}/o {
match /tanam/{siteId} {
match /images/{allPaths=**} {
allow read: if hasAnyRole();
allow write: if false;
}
match /themes/{allPaths=**} {
allow read: if hasAnyRole();
allow write: if isPublisher();
}
match /upload/{allPaths=**} {
allow read: if isPublisher();
allow create: if isPublisher();
allow update, delete: if false;
}
function hasUserRole(role) {
return isSignedIn() && role in request.auth.token.tanam[siteId];
}
function hasAnyRole() {
return isSignedIn() && request.auth.token.tanam[siteId].size() > 0;
}
function isSuperAdmin() {
return hasUserRole("superAdmin");
}
function isAtLeastManager() {
return isSuperAdmin() || hasUserRole("admin");
}
function isPublisher() {
return isAtLeastManager() || hasUserRole("publisher");
}
}
function isSignedIn() {
return request.auth != null;
}
function isSignedInAs(uid) {
return isSignedIn() && request.auth.uid == uid;
}
}
}