mirror of
https://github.com/Doodle3D/doodle3d-connect.git
synced 2024-11-05 07:03:24 +01:00
79 lines
2.2 KiB
JavaScript
79 lines
2.2 KiB
JavaScript
/*
|
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
|
*
|
|
* Copyright (c) 2013, Doodle3D
|
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
|
*/
|
|
|
|
function InfoAPI() {
|
|
|
|
var _apiPath = "/d3dapi";
|
|
var _apiCGIPath = "/cgi-bin"+_apiPath;
|
|
var _wifiboxURL;
|
|
var _wifiboxCGIBinURL;
|
|
|
|
var _timeoutTime = 3000;
|
|
|
|
var _configAPI = new ConfigAPI(); // needed for wifiboxid workaround
|
|
|
|
var _self = this;
|
|
|
|
this.init = function(wifiboxURL) {
|
|
console.log("InfoAPI:init");
|
|
|
|
_wifiboxURL = wifiboxURL+_apiPath;
|
|
_wifiboxCGIBinURL = wifiboxURL+_apiCGIPath;
|
|
_configAPI.init(wifiboxURL);
|
|
}
|
|
this.getInfo = function(completeHandler,failedHandler) {
|
|
$.ajax({
|
|
url: _wifiboxURL + "/info",
|
|
type: "GET",
|
|
dataType: 'json',
|
|
timeout: _timeoutTime,
|
|
success: function(response){
|
|
if(response.status == "error" || response.status == "fail") {
|
|
if(failedHandler) failedHandler(response);
|
|
} else {
|
|
var infoData = response.data;
|
|
// Versions older than 0.10.2 don't include wifiboxid in info response
|
|
// so we use a workaround (saving to config to retrieve substituted_wifiboxid or substituted_ssid)
|
|
if(infoData.wifiboxid === undefined) {
|
|
_configAPI.save({},function(saveResponseData) {
|
|
infoData.wifiboxid = saveResponseData.substituted_wifiboxid;
|
|
// when no wifiboxid is available we could use the substituted_ssid to compare
|
|
infoData.substituted_ssid = saveResponseData.substituted_ssid;
|
|
completeHandler(infoData);
|
|
},function() {
|
|
failedHandler();
|
|
});
|
|
} else {
|
|
completeHandler(infoData);
|
|
}
|
|
|
|
}
|
|
}
|
|
}).fail(function() {
|
|
if(failedHandler) failedHandler();
|
|
});
|
|
};
|
|
|
|
this.getStatus = function(completeHandler,failedHandler) {
|
|
$.ajax({
|
|
url: _wifiboxURL + "/info/status",
|
|
type: "GET",
|
|
dataType: 'json',
|
|
timeout: _timeoutTime,
|
|
success: function(response){
|
|
if (response.status == "error" || response.status == "fail") {
|
|
if (failedHandler) failedHandler(response);
|
|
} else {
|
|
if (completeHandler) completeHandler(response.data);
|
|
}
|
|
}
|
|
}).fail(function() {
|
|
if (failedHandler) failedHandler();
|
|
});
|
|
};
|
|
} |