For the life of me, I cannot understand why the following is resulting in a false
for allowing writes. Assume my users
collection is empty to start, and I am writing a document of the following form from my Angular frontend:
{
displayName: 'FooBar',
email: 'foo.bar@example.com'
}
My current security rules:
service cloud.firestore {
match /databases/{database}/documents {
match /users/{userId} {
function isAdmin() {
return resource.data.role == 'ADMIN';
}
function isEditingRole() {
return request.resource.data.role != null;
}
function isEditingOwnRole() {
return isOwnDocument() && isEditingRole();
}
function isOwnDocument() {
return request.auth.uid == userId;
}
allow read: if isOwnDocument() || isAdmin();
allow write: if !isEditingOwnRole() && (isOwnDocument() || isAdmin());
}
}
}
In general, I want no users to be able to edit their own role. Regular users can edit their own document otherwise, and admins can edit anyone's.
Stubbing isEditingRole()
for false
gives the expected result, so I've narrowed it down to that expression.
The write keeps coming back false, and I cannot determine why. Any ideas or fixes would be helpful!
Edit 1
Things I've tried:
function isEditingRole() {
return request.resource.data.keys().hasAny(['role']);
}
and
function isEditingRole() {
return 'role' in request.resource.data;
}
and
function isEditingRole() {
return 'role' in request.resource.data.keys();
}
Edit 2
Note that eventually, admins will set a role for users, so a role could eventually exist on a document. This means that, according to the Firestore docs below, the request will have a role
key, even if wasn't in the original request.
Fields not provided in the request which exist in the resource are added to
request.resource.data
. Rules can test whether a field is modified by comparingrequest.resource.data.foo
toresource.data.foo
knowing that every field in theresource
will also be present inrequest.resource
even if it was not submitted in the write request.
According to that, I think the three options from "Edit 1" are ruled out. I did try the suggestion of request.resource.data.role != resource.data.role
and that's not working either... I'm at a loss and am beginning to wonder if there's actually a bug in Firestore.
request.resource.keys.hasAny() is probably your best bet here. It allows you to check if a particular request.resource has any of the keys specified. By the negating the logic you can ensure that write requests do not have your blacklisted keys. For example:
So in the end, it seems I was assuming that
resource.data.nonExistentField == null
would returnfalse
, when it actually returns anError
(according to this and my tests). So my original solution may have been running into that. This is puzzling because the opposite should work according to the docs, but maybe the docs are referring to a value being "non-existent", rather than the key -- a subtle distinction.I still don't have 100% clarity, but this is what I ended up with that worked:
Another thing that still puzzles me is that, according to the docs, I shouldn't need the
&& 'role' in request.resource.data
part inisChangingRole()
, because it should be inserted automatically by Firestore. Though this didn't seem to be the case, as removing it causes my write to fail for permissions issues.It could likely be clarified/improved by breaking the write out into the
create
,update
, anddelete
parts, instead of justallow write: if !isEditingOwnRole() && (isOwnDocument() || isAdmin());
.I solved it by using
writeFields
. Please try this rule.In my case, I use
list
to restrict updating fields. It works, too.Since reference to writeFields in documentation has disappeared, I had to come up new way to do what we could do with writeFields.
In order to enforce fields that are readonly in the client, use
writeFields
(https://firebase.google.com/docs/reference/rules/rules.firestore.Request#writeFields). gekijin suggested this, but got the syntax slightly wrong.Firestore will populate the writeFields for you, so the above check is always safe to do in your
update
&create
rules.EDIT 9 Oct 2018
@dls101 Was kind enough to inform that Google seem to have removed any mention of
writeFields
from the docs. So be careful using this solution.With this single function you can check if a fields are/aren't being created/modified.
Usage: