mirror of
https://github.com/Doodle3D/doodle3d-connect.git
synced 2024-11-05 07:03:24 +01:00
116 lines
3.0 KiB
JavaScript
116 lines
3.0 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 PrinterAPI() {
|
|
|
|
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.listAll = function(completeHandler,failedHandler) {
|
|
console.log("listAll",_wifiboxURL);
|
|
|
|
$.ajax({
|
|
url: _wifiboxURL + "/printer/listall",
|
|
type: "GET",
|
|
dataType: 'json',
|
|
timeout: _timeoutTime,
|
|
success: function(response){
|
|
if(response.status == "error" || response.status == "fail") {
|
|
if(failedHandler) failedHandler(response);
|
|
} else {
|
|
completeHandler(response.data.printers);
|
|
}
|
|
}
|
|
}).fail(function() {
|
|
if(failedHandler) failedHandler();
|
|
});
|
|
};
|
|
|
|
this.fetch = function(data, completeHandler,failedHandler) {
|
|
console.log("fetch",_wifiboxURL,data);
|
|
|
|
$.ajax({
|
|
url: _wifiboxURL + "/printer/fetch",
|
|
type: "POST",
|
|
dataType: 'json',
|
|
data: data,
|
|
timeout: _timeoutTime,
|
|
success: function(response){
|
|
console.log("printerAPI.fetch response=",response);
|
|
if(response.status == "error" || response.status == "fail") {
|
|
if (failedHandler) failedHandler(response);
|
|
} else {
|
|
if (completeHandler) completeHandler(response.data);
|
|
}
|
|
}
|
|
}).fail(function() {
|
|
if(failedHandler) failedHandler();
|
|
});
|
|
};
|
|
|
|
this.print = function(data, completeHandler,failedHandler) {
|
|
// data = { "gcode": gcode, "first": first, "start": start },
|
|
console.log("print",_wifiboxURL,data);
|
|
|
|
$.ajax({
|
|
url: _wifiboxURL + "/printer/print",
|
|
type: "POST",
|
|
dataType: 'json',
|
|
data: data,
|
|
timeout: _timeoutTime,
|
|
success: function(response){
|
|
console.log("printerAPI.print response=",response);
|
|
if(response.status == "error" || response.status == "fail") {
|
|
if (failedHandler) failedHandler(response);
|
|
} else {
|
|
if (completeHandler) completeHandler(response.data);
|
|
}
|
|
}
|
|
}).fail(function() {
|
|
if (failedHandler) failedHandler();
|
|
});
|
|
};
|
|
|
|
this.stop = function(data, completeHandler, failedHandler) {
|
|
console.log("stop",_wifiboxURL,data);
|
|
|
|
$.ajax({
|
|
url: _wifiboxURL + "/printer/stop",
|
|
type: "POST",
|
|
dataType: 'json',
|
|
data: data,
|
|
timeout: _timeoutTime,
|
|
success: function(response){
|
|
console.log("printerAPI.stop response=",response);
|
|
if(response.status == "error" || response.status == "fail") {
|
|
if (failedHandler) failedHandler(response);
|
|
} else {
|
|
if (completeHandler) completeHandler(response.data);
|
|
}
|
|
}
|
|
}).fail(function() {
|
|
if (failedHandler) failedHandler();
|
|
});
|
|
};
|
|
} |