You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/src/scripts/api.js

60 lines
1.2 KiB

/**
* @description This module communicates with Lychee's API
* @copyright 2015 by Tobias Reich
*/
api = {
path : 'php/index.php',
onError : null
}
api.post = function(fn, params, callback) {
loadingBar.show()
params = $.extend({ function: fn }, params)
const success = (data) => {
setTimeout(() => loadingBar.hide(), 100)
// Catch errors
if (typeof data==='string' && data.substring(0, 7)==='Error: ') {
api.onError(data.substring(7, data.length), params, data)
return false
}
// Convert 1 to true and an empty string to false
if (data==='1') data = true
else if (data==='') data = false
// Convert to JSON if string start with '{' and ends with '}'
if (typeof data==='string' && data.substring(0, 1)==='{' && data.substring(data.length - 1, data.length)==='}') {
data = $.parseJSON(data)
}
// Output response when debug mode is enabled
if (lychee.debugMode) console.log(data)
callback(data)
}
const error = (jqXHR, textStatus, errorThrown) => {
api.onError('Server error or API not found.', params, errorThrown)
}
$.ajax({
type: 'POST',
url: api.path,
data: params,
dataType: 'text',
success,
error
})
}