NEWS
Mehrere requests syncron laufen lassen
-
Hallo Leute, ich sitze gerade an einem neuen Adapter wo ich 6 http requests abwarten muss bis ich alle Daten habe um weiter zu machen. wie kann ich das am besten umsetzen mit cb finde ich ein bisschen unelegant da dann am ende da die dann ja alle ineinander verschachtelt sind. mit timeout ist auch nicht so schön, gibt es hier was elegantes wo ich nicht drauf komme? mfg Tobi
mqttcloud.userdata = function (cb) { _get('GET', 'users/me', function (data) { console.log(JSON.stringify(data)) ownData = data; if (typeof cb === "function") cb(data); return data }); } mqttcloud.userdevices = function (cb) { _get('GET', 'product-items', function (data) { ownDevices = data; console.log(JSON.stringify(data)) if (typeof cb === "function") cb(data); }); } mqttcloud.usercert = function (cb) { _get('GET', 'users/certificate', function (data) { ownCert = data; console.log(JSON.stringify(data)) if (typeof cb === "function") cb(data); }); } mqttcloud.devices = function (cb) { _get('GET', 'products', function (data) { deviceList = data; console.log(JSON.stringify(data)) if (typeof cb === "function") cb(data); }); } mqttcloud.boards = function (cb) { _get('GET', 'boards', function (data) { boardList = data; console.log(JSON.stringify(data)) if (typeof cb === "function") cb(data); }); } function _get(method, path, cb) { if (ACCESS_TOKEN === '' || ACCESS_TYPE === '') { _getticket(function () { _get(method, path, cb) }); return; } var headers = { "Content-Type": "application/json", "Authorization": ACCESS_TYPE + " " + ACCESS_TOKEN, }; var options = { host: URL, path: PATH + path, port: 443, method: method, headers: headers }; var req = https.request(options, function (res) { var body = ""; res.setEncoding('utf8'); res.on('data', function (d) { body += d }); res.on('end', function () { cb(JSON.parse(body)) }); }); req.on('error', function (e) { this.adapter.log.error("api errror " + e) }); req.end(); };hier mal die request funktionen