如何从firestore数据库中读取没有index.js文件中的触发器功能的数据?

时间:2019-10-30 07:48:08

标签: javascript android firebase google-cloud-firestore google-cloud-functions

我已经在Firestore中存储了一些数据。有集合(书籍)可链接到文档(书籍ID),并且书籍ID具有名称,图像,位置,标题等字段。 我有另一个具有文档(用户ID),用户ID具有字段作为令牌ID的collection(Users)。每当书籍收藏中将有任何写操作时,我都必须使用令牌ID向所有用户发送通知。 如果我在firestore的index.js文件中具有硬编码的令牌ID,则可以向所有用户发送通知。 但是我必须动态发送通知。我无法从集合用户中读取用户ID。

'use-strict'

const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

    exports.sendNotification = functions.firestore.document("Books/{book_id}").onWrite((change, context) => {
const book_id = context.params.book_id;

console.log("Book ID: " + book_id);

return admin.firestore().collection("Users").doc(user_id).collection("Notifications").doc(notification_id).get().then(queryResult => {

      const tokenid= queryResult.data();

     const token_id='fOGd94em4ik:APA91bHyZBGBYvO_ZFlLO1lWL1LU-r-1JkuF3fuKieWvV4HuPDKAiG5hdn-BQrMPFeICBdKZ3UR2nkM2PMxClEzVI3V2C38OxoP-1w71Dz-GbO0sbDlg-nswCMZ';

     const payload = {
            notification : {
                title : 'Hi',
                body : 'New Books list is available in the database! Please check the book store',
                icon : "default"
            }
        };

        return admin.messaging().sendToDevice(token_id, payload).then(result => {
            //console.log("Notification sent");
            return 0;
        });

});
});

在上面的代码中,我想从集合用户中读取user_id。因为它没有与藏书联系在一起,所以我怎么读。我无法阅读。

1 个答案:

答案 0 :(得分:0)

如果我了解得很好,并且如果token_id是用户记录中的键,则可以尝试以下操作:

admin.firestore().collection('Users')
.where('token_id', '==', 'YOUR_TOKEN').get()
.then(snap => snap.docs.map(user => { 
   // iterate on your notification process
})