简体   繁体   English

Firebase 云函数 - 连接错误

[英]Firebase Cloud Functions - connection-error

I get Function execution took 5910 ms, finished with status: 'connection error' in the logs whenever I invoke my cloud function.每当我调用我的云 function 时,我得到Function execution took 5910 ms, finished with status: 'connection error' I believe it is something to do with promises and returning or .d.exists but I haven't been able to narrow it down further than that.我相信这与承诺和返回或.d.exists ,但我无法进一步缩小范围。

Function: Function:

exports.useInvite = functions.https.onCall((data, context) => {
  if (context.auth) {
    throw new functions.https.HttpsError('failed-precondition', "cannot be authenticated");
  }

  if (!data.code) {
    throw new functions.https.HttpsError('failed-precondition', "must provide an invite code");
  }

  console.log("Code: ", data.code);

  return admin.firestore().collection("invites").doc(data.code).get().then(d => {
    console.log("Exists: ", d.exists);
    if (!d.exists) {
      throw new functions.https.HttpsError('failed-precondition', "invalid invite code");
    }

    const added = new Date(d.data().created.seconds * 1000);

    const week = 60 * 60 * 24 * 7 * 1000;

    if ((new Date() - added) < week) {
      return admin.firestore().collection("invites").doc(data.code).update({
        validated: true
      }).then(() => {
        return null
      }).catch(() => {
        throw new functions.https.HttpsError('failed-precondition', "invalid invite code");
      });
    } else {
      console.log("Expired!");
      throw new functions.https.HttpsError('failed-precondition', "invite code expired");
    }
  }).catch(e => {
    console.log(e);
    throw new functions.https.HttpsError('failed-precondition', "invalid invite code");
  });
});

The following changes should do the trick:以下更改应该可以解决问题:

exports.useInvite = functions.https.onCall((data, context) => {

    class ExpiredCodeError extends Error {
        constructor(message) {
            super(message);
            this.message = message;
            this.type = 'ExpiredCodeError';
        }
    }

    class InvalidCodeError extends Error {
        constructor(message) {
            super(message);
            this.message = message;
            this.type = 'InvalidCodeError';
        }
    }

    if (context.auth) {
        throw new functions.https.HttpsError('failed-precondition', "cannot be authenticated");
    }

    if (!data.code) {
        throw new functions.https.HttpsError('failed-precondition', "must provide an invite code");
    }

    console.log("Code: ", data.code);

    return admin.firestore().collection("invites").doc(data.code).get()
        .then(d => {
            console.log("Exists: ", d.exists);
            if (!d.exists) {
                throw new InvalidCodeError("invalid invite code");
            }

            const added = new Date(d.data().created.seconds * 1000);

            const week = 60 * 60 * 24 * 7 * 1000;

            if ((new Date() - added) < week) {
                return admin.firestore().collection("invites").doc(data.code).update({
                    validated: true
                })
            } else {
                console.log("Expired!");
                throw new ExpiredCodeError("invite code expired");
            }
        })
        .then(() => {
            return { status: "OK" }
        })
        .catch(e => {
            console.log(e);

            if (e.type === 'ExpiredCodeError') {
                throw new functions.https.HttpsError('precondition', e.message);
            } else if (e.type === 'InvalidCodeError') {
                //May be merged with the above clause...
                throw new functions.https.HttpsError('precondition', e.message);
            } else {
                throw new functions.https.HttpsError('internal', e.message);
            }

        });
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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