首页 > 解决方案 > firestore:让用户更新,只删除自己的数据

问题描述

这些是我当前的安全规则:

service cloud.firestore {
  match /databases/{database}/documents {
  match /tournaments/{tournament=**} {
    allow update, delete: if request.auth.uid == resource.data.author;
    allow create: if request.auth.uid != null;
    allow read: if true;
  }
  }
}

一切正常,由于“缺少或权限不足”,只有更新或删除不起作用

这是我的代码

            mDocRef
                .update(key, score)
                .addOnSuccessListener(new OnSuccessListener<Void>() {
                    @Override
                    public void onSuccess(Void aVoid) {
                        Log.d(TAG, "DocumentSnapshot successfully updated!");
                    }
                })
                .addOnFailureListener(new OnFailureListener() {
                    @Override
                    public void onFailure(@NonNull Exception e) {
                        Log.w(TAG, "Error updating document", e);
                    }
                });

mDocRef 引用路径为“tournaments/tournamentID/aColletion/aDocument”的文档

以下是创建 mDocRef 的代码:

            mTournamentDocRef = mTournamentColRef.document();
            mDocRef = mTournamentDocRef.collection("aCollection").document();

需要注意的一些事项:

谢谢您的帮助!

标签: androidfirebasefirebase-authenticationgoogle-cloud-firestorefirebase-security

解决方案


我检查了文档,这些是您正在寻找的规则:

match /users/{userId} {
  allow read, update, delete: if request.auth.uid == userId;
  allow create: if request.auth.uid != null;
}

以及作为参考的文档链接:https ://firebase.google.com/docs/firestore/security/rules-conditions?authuser=0


推荐阅读