90 lines
2.5 KiB
JavaScript
90 lines
2.5 KiB
JavaScript
|
/**
|
||
|
* AJAX utility functions for cah. Core library. Individual handlers should be elsewhere.
|
||
|
*
|
||
|
* @author ajanata
|
||
|
*/
|
||
|
|
||
|
cah.ajax = {};
|
||
|
cah.ajax.ErrorHandlers = {};
|
||
|
cah.ajax.SuccessHandlers = {};
|
||
|
|
||
|
// TODO run a timer to see if we have more than X pending requests and delay further ones until
|
||
|
// we get results
|
||
|
cah.ajax.pendingRequests = {};
|
||
|
|
||
|
cah.ajax.serial = 0;
|
||
|
|
||
|
$(document).ready(function() {
|
||
|
$.ajaxSetup({
|
||
|
cache : false,
|
||
|
error : cah.ajax.error,
|
||
|
success : cah.ajax.done,
|
||
|
timeout : cah.DEBUG ? undefined : 10 * 1000, // 10 second timeout for normal requests
|
||
|
// timeout : 1, // 10 second timeout for normal requests
|
||
|
type : 'POST',
|
||
|
url : '/cah/AjaxServlet'
|
||
|
});
|
||
|
|
||
|
// see if we already exist on the server so we can resume
|
||
|
cah.ajax.request("firstload", {});
|
||
|
});
|
||
|
|
||
|
/**
|
||
|
* Send an ajax request to the server, and store that the request was sent so we know when it gets
|
||
|
* responded to.
|
||
|
*
|
||
|
* This should be used for data sent to the server, not long-polling.
|
||
|
*
|
||
|
* @param {string}
|
||
|
* op Operation code for the request.
|
||
|
* @param {object}
|
||
|
* data Parameter map to send for the request.
|
||
|
* @param {?function(jqXHR,textStatus,errorThrown)}
|
||
|
* [opt_errback] Optional error callback.
|
||
|
*/
|
||
|
cah.ajax.request = function(op, data, opt_errback) {
|
||
|
data.op = op;
|
||
|
data.serial = cah.ajax.serial++;
|
||
|
var jqXHR = $.ajax({
|
||
|
data : data
|
||
|
});
|
||
|
cah.ajax.pendingRequests[data.serial] = data;
|
||
|
cah.log.debug("ajax req", data);
|
||
|
if (opt_errback) {
|
||
|
jqXHR.fail(opt_errback);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
cah.ajax.error = function(jqXHR, textStatus, errorThrown) {
|
||
|
// TODO deal with this somehow
|
||
|
// and figure out which request it was so we can remove it from pending
|
||
|
debugger;
|
||
|
cah.log.error(textStatus);
|
||
|
};
|
||
|
|
||
|
cah.ajax.done = function(data) {
|
||
|
cah.log.debug("ajax done", data);
|
||
|
if (data['error']) {
|
||
|
// TODO cancel any timers or whatever we may have, and disable interface
|
||
|
var req = cah.ajax.pendingRequests[data.serial];
|
||
|
if (req && cah.ajax.ErrorHandlers[req.op]) {
|
||
|
cah.ajax.ErrorHandlers[req.op](data);
|
||
|
} else {
|
||
|
cah.log.error(data.error_message);
|
||
|
}
|
||
|
} else {
|
||
|
var req = cah.ajax.pendingRequests[data.serial];
|
||
|
if (req && cah.ajax.SuccessHandlers[req.op]) {
|
||
|
cah.ajax.SuccessHandlers[req.op](data);
|
||
|
} else if (req) {
|
||
|
cah.log.error("Unhandled response for op " + req.op);
|
||
|
} else {
|
||
|
cah.log.error("Unknown response for serial " + data.serial);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (data.serial >= 0 && cah.ajax.pendingRequests[data.serial]) {
|
||
|
delete cah.ajax.pendingRequests[data.serial];
|
||
|
}
|
||
|
};
|