Облачная функция Firebase отправляет ошибку уведомления - PullRequest
0 голосов
/ 08 мая 2019

Я пытаюсь отправить уведомление с использованием облачных функций Firebase всем пользователям, когда данные добавляются в определенную коллекцию в Firestore.

Вот мой код функции облака:

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

exports.makeUppercase = functions.firestore.document('messages/{messageId}')
.onCreate((snap, context) => {
    const value = snap.data().original;
    console.log('notifying ' + value);

    return Promise.all([value]).then(result => {
        const value = result[0].data().value;

        const payload = {
            notification: {
                title: "Added",
                body: "Data Added"
            }
        };

        admin.messaging().send(payload, false).then(result => {
            console.log("Notification sent!");
        });
    });
});

Когда я пытаюсь создать эту функцию, используя firebase deploy --only functions, я получаю сообщение об ошибке в консоли.

/Users/rachitgoyal/functions/index.js
  35:40  error  Each then() should return a value or throw  promise/always-return

✖ 1 problem (1 error, 0 warnings)

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! functions@ lint: `eslint .`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the functions@ lint script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/rachitgoyal/.npm/_logs/2019-05-08T08_36_48_838Z-debug.log

Error: functions predeploy error: Command terminated with non-zero exit code1

Дополнительные журналы от debug.log для справки:

0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/bin/node',
1 verbose cli   '/usr/local/bin/npm',
1 verbose cli   '--prefix',
1 verbose cli   '/Users/rachitgoyal/functions',
1 verbose cli   'run',
1 verbose cli   'lint' ]
2 info using npm@6.4.1
3 info using node@v10.15.3
4 verbose run-script [ 'prelint', 'lint', 'postlint' ]
5 info lifecycle functions@~prelint: functions@
6 info lifecycle functions@~lint: functions@
7 verbose lifecycle functions@~lint: unsafe-perm in lifecycle true
8 verbose lifecycle functions@~lint: PATH: /usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/Users/rachitgoyal/functions/node_modules/.bin:/Users/rachitgoyal/.npm-global/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
9 verbose lifecycle functions@~lint: CWD: /Users/rachitgoyal/functions
10 silly lifecycle functions@~lint: Args: [ '-c', 'eslint .' ]
11 silly lifecycle functions@~lint: Returned: code: 1  signal: null
12 info lifecycle functions@~lint: Failed to exec lint script
13 verbose stack Error: functions@ lint: `eslint .`
13 verbose stack Exit status 1
13 verbose stack     at EventEmitter.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/index.js:301:16)
13 verbose stack     at EventEmitter.emit (events.js:189:13)
13 verbose stack     at ChildProcess.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:55:14)
13 verbose stack     at ChildProcess.emit (events.js:189:13)
13 verbose stack     at maybeClose (internal/child_process.js:970:16)
13 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:259:5)
14 verbose pkgid functions@
15 verbose cwd /Users/rachitgoyal
16 verbose Darwin 18.5.0
17 verbose argv "/usr/local/bin/node" "/usr/local/bin/npm" "--prefix" "/Users/rachitgoyal/functions" "run" "lint"
18 verbose node v10.15.3
19 verbose npm  v6.4.1
20 error code ELIFECYCLE
21 error errno 1
22 error functions@ lint: `eslint .`
22 error Exit status 1
23 error Failed at the functions@ lint script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]

Забавно, что если я прокомментирую приведенный ниже код в моем index.js, развертывание будет работать нормально.

const payload = {
    notification: {
        title: "Added",
        body: "Data Added"
    }
};

admin.messaging().send(payload, false).then(result => {
    console.log("Notification sent!");
});

Итак, я предполагаю, что что-то не так с инициализацией уведомления. Или я не возвращаю значения в Promise должным образом. Любая помощь здесь будет принята с благодарностью.

1 Ответ

1 голос
/ 08 мая 2019

Promise.all() и admin.messaging().send() оба возвращают Обещание, поэтому вам нужно связать эти обещания.

Однако не понятно, почему вы делаете

const value = snap.data().original;
        console.log('notifying ' + value);

        return Promise.all([value])
        .then(result => {
            const value = result[0].data().value;
            ...

Если вы просто хотите использовать значение value в своем уведомлении, вам вообще не нужно использовать Promise.all(), и вы должны сделать следующее:

exports.makeUppercase = functions.firestore.document('messages/{messageId}')
.onCreate((snap, context) => {
    const value = snap.data().original;
    console.log('notifying ' + value);

     const payload = {
         notification: {
            title: "Added",
            body: value + "Data Added"  //Here we use value
         }
     };

    return admin.messaging().send(payload, false)
    .then(result => {  //Note that if you don't need the console.log you can get rid of this then()
         console.log("Notification sent!");
         return null;
    });
});
...