mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
57 lines
1.6 KiB
JavaScript
57 lines
1.6 KiB
JavaScript
import { extend } from 'lodash';
|
|
|
|
/**
|
|
* Responsible for all HTTP requests.
|
|
*
|
|
* IMPORTANT:
|
|
* If the user has a good enough connection to stream music, he or she shouldn't
|
|
* encounter any HTTP errors. That's why Koel doesn't handle HTTP errors.
|
|
* After all, even if there were errors, how bad can it be?
|
|
*/
|
|
export default {
|
|
request(method, url, data, cb = null, options = {}) {
|
|
options = extend(options, {
|
|
error: (data, status, request) => {
|
|
if (status === 401) {
|
|
document.location.href = "/login";
|
|
}
|
|
},
|
|
});
|
|
|
|
switch (method) {
|
|
case 'get':
|
|
return Vue.http.get(url, data, cb, options);
|
|
case 'post':
|
|
return Vue.http.post(url, data, cb, options);
|
|
case 'put':
|
|
return Vue.http.put(url, data, cb, options);
|
|
case 'delete':
|
|
return Vue.http.delete(url, data, cb, options);
|
|
default:
|
|
break;
|
|
}
|
|
},
|
|
|
|
get(url, data = {}, cb = null, options = {}) {
|
|
return this.request('get', url, data, cb, options);
|
|
},
|
|
|
|
post(url, data, cb = null, options = {}) {
|
|
return this.request('post', url, data, cb, options);
|
|
},
|
|
|
|
put(url, data, cb = null, options = {}) {
|
|
return this.request('put', url, data, cb, options);
|
|
},
|
|
|
|
delete(url, data = {}, cb = null, options = {}) {
|
|
return this.request('delete', url, data, cb, options);
|
|
},
|
|
|
|
/**
|
|
* A shortcut method to ping and check if the user session is still valid.
|
|
*/
|
|
ping() {
|
|
return this.get('/');
|
|
},
|
|
};
|