szurubooru/public_html/js/Api.js

58 lines
1 KiB
JavaScript
Raw Normal View History

2014-08-31 23:22:56 +02:00
var App = App || {};
2014-09-04 18:06:25 +02:00
App.API = function(promise) {
2014-08-31 23:22:56 +02:00
var baseUrl = '/api/';
function get(url, data) {
return request('GET', url, data);
};
function post(url, data) {
return request('POST', url, data);
};
function put(url, data) {
return request('PUT', url, data);
};
function _delete(url, data) {
return request('DELETE', url, data);
};
function request(method, url, data) {
var fullUrl = baseUrl + '/' + url;
fullUrl = fullUrl.replace(/\/{2,}/, '/');
2014-09-04 18:06:25 +02:00
return promise.make(function(resolve, reject) {
2014-08-31 23:22:56 +02:00
$.ajax({
success: function(data, textStatus, xhr) {
resolve({
status: xhr.status,
json: data});
},
error: function(xhr, textStatus, errorThrown) {
reject({
status: xhr.status,
json: xhr.responseJSON
? xhr.responseJSON
: {error: errorThrown}});
},
type: method,
url: fullUrl,
data: data,
});
});
};
return {
get: get,
post: post,
put: put,
delete: _delete
};
};
App.DI.registerSingleton('api', App.API);