Cloud Firestore安全规则 - 文档中的单个受保护字段

时间:2017-12-21 09:42:06

标签: firebase firebase-security google-cloud-firestore

我希望在suspendedProfile文档中有一个名为user的只读属性,其中所有其他属性都具有当前登录用户的读/写访问权限。有没有办法用简单的安全规则来做到这一点?

我想到了两个解决方案:

  1. 禁止写入修改属性,如allow write: if request.resource.data.suspendedProfile == null;
  2. /secure文档中包含allow read;的{​​{1}}集合
  3. 我认为第一个选项是更好的所有与用户相关的属性都在一个文档中,但我很想听听你的想法。有没有其他更简单的方法来实现这一目标?

1 个答案:

答案 0 :(得分:5)

我想我设法为自己的答案找到了解决方案using Firebase documentation

// A user can update a product reviews, but they can't change
// the headline.
// Also, they should only be able up update their own product review,
// and they still have to list themselves as an author
allow update: if request.resource.data.headline == resource.data.headline
                    && resource.data.authorID == request.auth.userID
                    && request.resource.data.authorID == request.auth.userID;

所以在我的情况下,我只会allow update: if request.resource.data.suspendedProfile == resource.data.suspendedProfile