简体   繁体   中英

How to access multiple documents from Firestore in a cloud function

I have a cloud function that is triggered on a document write. The cloud function needs to check multiple documents based on the trigger and execute if/else statements.

I've created a function that accesses all documents with a Promise.all, but this errors when trying to access all the document information if not yet available.

    export function onTriggered(change, context) {
        const userPrevData = change.before.data();
        const userNewData  = change.after.data();

        const promises = [];

        // Get the uid
        const uid = context.params.userId;
        // User DocRef
        const userDoc        = firestoreInstance.collection('users').doc(uid).get();
        // User Session DocRef
        const userSessionDoc = firestoreInstance.collection('sessions').doc(uid).get();
        // Solution DocRef
        const solutionDoc    = firestoreInstance.collection('solution').doc('solutionId').get();

        promises.push(userDoc, userSessionDoc, solutionDoc);

        return Promise.all(promises).then((snapshots) => {
            // Use Promise.all with snapshot.docs.map to combine+return Promise context
            return Promise.all(snapshots.map((doc) => {
                // At this point, each document and their Ids print to the console.
                console.log('docId:::', doc.id);
                console.log('docData:::', doc.data());

                const solutionDocData = getSolutionDocData(doc);
                // This will print as 'undefined' until the correct document data is processed
                console.log('solutionDocData:::', solutionDocData);
                // This will print as 'undefined' until the correct document data is processed
                const clientSeed = doc.get('clientSeed');

                // Check to see if the Users' Guess is the same as the solution
                if (userNewData.guess.color === solutionDocData.guess.color && userNewData.guess.number === userNewData.guess.number) {
                    console.log('User solution is correct');
                }

            }));

        })
    }

    function getSolutionDocData(doc) {
        if (doc.id === 'solutionId') { return doc.data(); }
    }

I expect 'User solution is correct' if the condition is satisfied. But, I get an error because data is undefined.

The solution was to move most of the logic a .then()

    return Promise.all(promises).then((snapshots) => {
        // Use Promise.all with snapshot.docs.map to combine+return Promise context
        return Promise.all(snapshots.map((doc) => {
            // At this point, each document and their Ids print to the console.
            console.log('docId:::', doc.id);
            console.log('docData:::', doc.data());

            return doc.data();
        })).then(data => { 
        console.log('data:::', data);

        let userDocDetails = {};
        let userSessionDocDetails = {};
        let solutionDocDetails = {};

        data.forEach(document => {
            if (document.uid === uid)           { userDocDetails = document }
            if (document.serverSeedEncrypted)   { userSessionDocDetails = document }
            if (document.solutionId)            { solutionDocDetails = document }
        });


        });

    })

I am unsure if the data will always be returned in the order of the original promise array, so I used a forEach statement to identify unique properties and assign them accordingly.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM