0
我已閱讀Firebase雲端函數reference,guides和sample code,試圖確定爲什麼我的功能被觸發兩次,但尚未找到成功的解決方案。我還試用了Firebase-Queue作爲解決方法,但是其最新更新表明雲功能是一種方法。Firebase HTTPS雲端功能觸發兩次
總之,我使用request-promise
檢索來自外部API的通知,檢查這些通知是否符合我在數據庫中已有的通知,以及何時識別出新通知,並將其發佈到所述數據庫。然後通過參考新通知更新相應的場地。代碼如下:
'use strict';
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const request = require('request');
const rp = require('request-promise');
admin.initializeApp(functions.config().firebase);
const db = admin.database();
const venues = db.ref("/venues/");
exports.getNotices = functions.https.onRequest((req, res) => {
var options = {
uri: 'https://xxxxx.xxxxx',
qs: {
format: 'json',
type: 'venue',
...
},
json: true
};
rp(options).then(data => {
processNotices(data);
console.log(`venues received: ${data.length}`);
res.status(200).send('OK');
})
.catch(error => {
console.log(`Caught Error: ${error}`);
res.status(`${error.statusCode}`).send(`Error: ${error.statusCode}`);
});
});
function processNotices(data) {
venues.once("value").then(snapshot => {
snapshot.forEach(childSnapshot => {
var existingKey = childSnapshot.val().key;
for (var i = 0; i < data.length; i++) {
var notice = data[i];
var noticeKey = notice.key;
if (noticeKey !== existingKey) {
console.log(`New notice identified: ${noticeKey}`)
postNotice(notice);
}
}
return true;
});
});
}
function postNotice(notice) {
var ref = venues.push();
var key = ref.key;
var loc = notice.location;
return ref.set(notice).then(() => {
console.log('notice posted...');
updateVenue(key, loc);
});
}
function updateVenue(key, location) {
var updates = {};
updates[key] = "true";
var venueNoticesRef = db.ref("/venues/" + location + "/notices/");
return venueNoticesRef.update(updates).then(() => {
console.log(`${location} successfully updated with ${key}`);
});
}
有關如何糾正雙觸發的任何建議將不勝感激。提前致謝!
你是如何調用它,使它只應執行一次?日誌顯示了什麼? –
另請注意,您正在執行異步數據庫工作而無需等待它在processNotices()中完成。它應該返回一個承諾,以便在向客戶端發送響應之前,調用者可以知道數據庫的工作何時完全完成。 –
感謝您的提示,@DougStevenson。我找到了一個解決方案(詳見下文)。 – donovki