2014-02-24 11:26:30 +01:00
|
|
|
/*
|
|
|
|
* 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 ConnectAPI() {
|
|
|
|
|
2014-04-24 12:46:26 +02:00
|
|
|
// callbacks
|
|
|
|
this.refreshing; // I'm refreshing my list
|
2014-05-07 15:18:08 +02:00
|
|
|
this.listFailed; // list retrieval from connect.doodle3d.com failed
|
|
|
|
this.listSuccess; // list retrieval from connect.doodle3d.com succeeded
|
2014-04-24 12:46:26 +02:00
|
|
|
this.listUpdated; // the list of boxes is updated / changed
|
|
|
|
this.boxAppeared; // a new box appeared
|
|
|
|
this.boxDisapeared; // a box disappeared
|
|
|
|
//this.boxUpdated; // a box is updated / changed
|
|
|
|
|
2014-05-07 17:12:58 +02:00
|
|
|
this.checkLocal = true; // check for wired and access point boxes
|
|
|
|
|
2014-02-24 11:26:30 +01:00
|
|
|
var _apiURL = "http://connect.doodle3d.com/api";
|
2014-04-24 12:46:26 +02:00
|
|
|
var _networkAPI = new NetworkAPI();
|
2014-02-24 11:26:30 +01:00
|
|
|
var _timeoutTime = 3000;
|
|
|
|
|
2014-04-24 12:46:26 +02:00
|
|
|
var _refreshDelay;
|
2014-05-08 22:35:46 +02:00
|
|
|
var _refreshInterval = 5000;
|
2014-04-24 12:46:26 +02:00
|
|
|
var _running;
|
|
|
|
var _listChanged = false;
|
|
|
|
|
|
|
|
var _wiredBox = {localip:"192.168.5.1",wifiboxid:"Wired WiFi-Box"};
|
|
|
|
var _apBox = {localip:"192.168.10.1",wifiboxid:"WiFi-Box",link:"http://draw.doodle3d.com"};
|
|
|
|
|
|
|
|
var _boxTimeoutTime = 500;
|
|
|
|
var _numBoxesChecking = 0; // count how many boxes we are checking
|
|
|
|
var _numBoxesFound = 0; // count how many boxes responded
|
|
|
|
var _boxes = {}; // current list of boxes
|
|
|
|
var _numBoxes = 0; // current number of boxes
|
2014-05-12 16:54:16 +02:00
|
|
|
var _checkedWiredBox = false;
|
2014-02-24 11:26:30 +01:00
|
|
|
var _self = this;
|
|
|
|
|
|
|
|
this.list = function(completeHandler,failedHandler) {
|
|
|
|
//console.log("ConnectAPI:list");
|
|
|
|
$.ajax({
|
|
|
|
url: _apiURL + "/list.php",
|
|
|
|
type: "GET",
|
|
|
|
dataType: 'json',
|
|
|
|
timeout: _timeoutTime,
|
2014-05-08 22:35:46 +02:00
|
|
|
cache: false,
|
2014-02-24 11:26:30 +01:00
|
|
|
success: function(response){
|
|
|
|
//console.log("ConnectAPI:list response: ",response);
|
|
|
|
if(response.status == "error" || response.status == "fail") {
|
|
|
|
//console.log("ConnectAPI:list failed: ",response);
|
|
|
|
if(failedHandler) failedHandler(response);
|
|
|
|
} else {
|
2014-05-07 15:18:08 +02:00
|
|
|
if(_self.listSuccess) {_self.listSuccess(); }
|
2014-02-24 11:26:30 +01:00
|
|
|
completeHandler(response.data);
|
|
|
|
}
|
|
|
|
}
|
2017-07-13 15:34:30 +02:00
|
|
|
}).fail(function(failData) {
|
2014-02-24 11:26:30 +01:00
|
|
|
//console.log("ConnectAPI:list failed");
|
2017-07-13 15:34:30 +02:00
|
|
|
if(failedHandler) failedHandler(failData);
|
2014-05-07 15:18:08 +02:00
|
|
|
if(_self.listFailed) {_self.listFailed(); }
|
2014-02-24 11:26:30 +01:00
|
|
|
});
|
|
|
|
};
|
2014-04-24 12:46:26 +02:00
|
|
|
|
|
|
|
this.start = function(interval,listUpdated) {
|
|
|
|
if(interval) {
|
|
|
|
_refreshInterval = interval;
|
|
|
|
}
|
|
|
|
if(listUpdated) {
|
|
|
|
_self.listUpdated = listUpdated;
|
|
|
|
}
|
|
|
|
_running = true;
|
|
|
|
_self.refresh();
|
|
|
|
}
|
|
|
|
this.stop = function() {
|
|
|
|
_running = false;
|
|
|
|
clearTimeout(_refreshDelay);
|
|
|
|
}
|
|
|
|
this.refresh = function(listUpdated) {
|
2014-05-07 15:18:08 +02:00
|
|
|
if(listUpdated) { _self.listUpdated = listUpdated; }
|
|
|
|
if(_self.refreshing) { _self.refreshing(); }
|
2014-04-24 12:46:26 +02:00
|
|
|
|
|
|
|
_self.list(function(foundBoxes) {
|
|
|
|
//console.log(" foundBoxes: ",foundBoxes);
|
2014-05-07 17:12:58 +02:00
|
|
|
if(_self.checkLocal) {
|
|
|
|
foundBoxes.push(_wiredBox); // check for a wired box
|
|
|
|
}
|
2014-04-24 12:46:26 +02:00
|
|
|
updateList(foundBoxes);
|
|
|
|
if(_running) {
|
|
|
|
clearTimeout(_refreshDelay);
|
|
|
|
_refreshDelay = setTimeout(_self.refresh, _refreshInterval);
|
|
|
|
}
|
|
|
|
}, function() {
|
2014-05-07 15:18:08 +02:00
|
|
|
console.log("ConnectAPI list retrieve failed");
|
2014-05-07 17:12:58 +02:00
|
|
|
if(_self.checkLocal) {
|
|
|
|
// if web is not accessible try to find a box as an accesspoint
|
|
|
|
// if not found, we look for a wired box
|
|
|
|
_networkAPI.alive(_apBox.localip,_boxTimeoutTime,function() {
|
|
|
|
updateList([_apBox]);
|
|
|
|
}, function() {
|
|
|
|
updateList([_wiredBox]);
|
|
|
|
});
|
|
|
|
}
|
2014-04-24 12:46:26 +02:00
|
|
|
if(_running) {
|
|
|
|
clearTimeout(_refreshDelay);
|
|
|
|
_refreshDelay = setTimeout(_self.refresh, _refreshInterval);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateList(foundBoxes) {
|
|
|
|
//console.log("updateList");
|
|
|
|
_numBoxesChecking = 0;
|
|
|
|
_numBoxesFound = 0;
|
|
|
|
_listChanged = false;
|
|
|
|
|
|
|
|
// remove stored, but not found boxes
|
|
|
|
jQuery.each(_boxes, function (index,box) {
|
|
|
|
var found = false;
|
|
|
|
jQuery.each(foundBoxes, function (index,foundBox) {
|
|
|
|
if(foundBox.localip == box.localip &&
|
|
|
|
foundBox.wifiboxid == box.wifiboxid) found = true;
|
|
|
|
});
|
|
|
|
if(!found) removeBox(box.localip);
|
|
|
|
})
|
|
|
|
|
|
|
|
// check if all found boxes are alive
|
|
|
|
jQuery.each(foundBoxes, function (index,foundBox) {
|
2014-05-08 22:35:46 +02:00
|
|
|
if(foundBox === _apBox) { // don't recheck apBox
|
|
|
|
addBox(foundBox);
|
|
|
|
} else {
|
|
|
|
checkBox(foundBox);
|
|
|
|
}
|
2014-04-24 12:46:26 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if(foundBoxes.length == 0 && _self.listUpdated) {
|
|
|
|
_self.listUpdated(_boxes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function checkBox(boxData) {
|
|
|
|
//console.log(" checkBox: ",boxData.localip);
|
|
|
|
_numBoxesChecking++;
|
|
|
|
|
|
|
|
_networkAPI.alive(boxData.localip,_boxTimeoutTime,function() {
|
2014-05-12 16:54:16 +02:00
|
|
|
if(boxData.localip === _wiredBox.localip) {
|
|
|
|
// double check wired box (otherwise it shows up on switch to ap)
|
|
|
|
if(_checkedWiredBox) {
|
|
|
|
addBox(boxData);
|
|
|
|
_numBoxesFound++;
|
|
|
|
}
|
|
|
|
_checkedWiredBox = true;
|
|
|
|
} else {
|
|
|
|
addBox(boxData);
|
|
|
|
_numBoxesFound++;
|
|
|
|
}
|
2014-04-24 12:46:26 +02:00
|
|
|
}, function() {
|
|
|
|
removeBox(boxData.localip);
|
2014-05-12 16:54:16 +02:00
|
|
|
if(boxData === _wiredBox) {
|
|
|
|
_checkedWiredBox = false;
|
|
|
|
}
|
2014-04-24 12:46:26 +02:00
|
|
|
},function(){
|
|
|
|
_numBoxesChecking--;
|
|
|
|
if(_numBoxesChecking <= 0 && _listChanged && _self.listUpdated) {
|
|
|
|
_self.listUpdated(_boxes);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
function getBox(localip) {
|
|
|
|
return _boxes[localip];
|
|
|
|
}
|
|
|
|
function addBox(box) {
|
|
|
|
if(getBox(box.localip) !== undefined) return;
|
|
|
|
_boxes[box.localip] = box;
|
|
|
|
_numBoxes++;
|
|
|
|
if(_self.boxAppeared) _self.boxAppeared(box);
|
|
|
|
_listChanged = true;
|
|
|
|
}
|
|
|
|
function removeBox(localip) {
|
|
|
|
var box = getBox(localip);
|
|
|
|
if(box === undefined) return;
|
|
|
|
delete _boxes[localip];
|
|
|
|
_numBoxes--;
|
|
|
|
if(_self.boxDisapeared) _self.boxDisapeared(box);
|
|
|
|
_listChanged = true;
|
|
|
|
}
|
2014-02-24 11:26:30 +01:00
|
|
|
}
|