gpt4 book ai didi

javascript - 使用 firestore 创建安全的类 REST API

转载 作者:行者123 更新时间:2023-11-30 15:00:37 24 4
gpt4 key购买 nike

我想在 firebase 中存储一对多关系 firestore .假设我有一个作者,并且有属于这个作者的书。我可以将它存储在嵌套关系中:

author/
authorId1 : {
books: [{...}, {...}]
}

但我还需要一种列出所有书籍的方法,最好不要遍历每个作者(afaik 需要实时数据库),所以我想我应该这样做

author/
authorId1 : {
books: [bookId1, bookId2]
}
books/
bookId1: {...}
bookId2: {...}

但出于安全和性能原因,我宁愿不在前端进行过滤。我发现可以编写查询:

const bookRef = fireStore.collection('books');
debtorsRef.where('author', '==', authorId).then(...);

这有望消除性能问题,但它并不安全,因为有可能从客户端获取其他作者的书籍。另外,我宁愿将关系存储在作者文档中,而不是相反。

在使用 Django Rest Framework 的 restful API 上,我将查询集限制为仅返回属于给定用户的书籍。 IIUC 可以使用 IAM但根据示例,我不太确定如何。

所以,只有当它的 id 在作者的 books 属性中列出时,我才想退还这本书。理论上,一本书可以属于多个作者。

我想这是重复的,很多人都有这个顾虑,但我找不到这个特定用例的明确答案。

最佳答案

你可以写Security Rules正确保护您的查询:

service cloud.firestore {
match /databases/{database}/documents {
match /books/{bookId} {
allow read: if request.resource.data.author == resource.data.author
}
}
}

请注意,目前我们仅支持等式约束 (==),不支持不等式约束(!=<<= 等)

您可以扩展此概念以在每本书的子集合中维护所有者列表,并进行存在性检查(使用 exists() 函数):

service cloud.firestore {
match /databases/{database}/documents {
match /books/{bookId} {
allow read: if exists(/databases/$(database)/documents/books/$(bookId)/owners/$(request.auth.uid))
match /owners/{ownerId} {
// Include other conditions that provide for ownership checks
allow write: if request.auth.uid == ownerId;
}
}
}
}

关于javascript - 使用 firestore 创建安全的类 REST API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46590838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com