-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
storage.rules
45 lines (41 loc) · 1.26 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
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
function pdf() {
return request.resource.size < 10 * 1024 * 1024
&& request.resource.contentType.matches('application/pdf');
}
function image() {
return request.resource.size < 500 * 1024
&& request.resource.contentType.matches('image/.*');
}
match /search/{allPaths=**} {
// Publicly readable, only written by the admin SDK
allow read: if true;
allow write: if false;
}
match /publishedAttachments/{id} {
// public, read-only
allow read: if true
allow write: if false
}
match /users/{uid} {
match /draftAttachments/{id} {
// private, only accessible by the user
// Only allow smallish pdf's
allow read: if request.auth.uid == uid
allow create, update: if request.auth.uid == uid && pdf()
allow delete: if request.auth.uid == uid
}
match /archivedAttachments/{id} {
// Not accessible by users, for record keeping.
allow read, write: if false
}
match /profileImage {
// publicly readable, writable by owner
allow read: if true
allow write: if request.auth.uid == uid && image()
}
}
}
}