mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-31 01:58:11 +08:00
69 lines
1.8 KiB
JavaScript
69 lines
1.8 KiB
JavaScript
import { http_get, http_post, debounce } from "../helpers/";
|
|
|
|
class ConfigModel {
|
|
constructor() {
|
|
}
|
|
|
|
all() {
|
|
return http_get("/admin/api/config").then((d) => d.result);
|
|
}
|
|
|
|
save(config, debounced = true, fn_ok, fn_err) {
|
|
const url = "/admin/api/config";
|
|
|
|
if (debounced) {
|
|
if (!this.debounced_post) {
|
|
this.debounced_post = debounce((url, config) => {
|
|
return http_post(url, config).then(this.refresh).then((a) => {
|
|
if (typeof fn_ok === "function") return fn_ok();
|
|
return Promise.resolve(a);
|
|
}).catch((err) => {
|
|
if (typeof fn_err === "function") return fn_err();
|
|
return Promise.reject(err);
|
|
});
|
|
}, 1000);
|
|
}
|
|
return this.debounced_post(url, config);
|
|
}
|
|
return http_post(url, config).then(this.refresh).then((a) => {
|
|
if (typeof fn_ok === "function") return fn_ok();
|
|
return Promise.resolve(a);
|
|
}).catch((err) => {
|
|
if (typeof fn_err === "function") return fn_err();
|
|
return Promise.reject(err);
|
|
});
|
|
}
|
|
|
|
refresh() {
|
|
return http_get("/api/config").then((config) => {
|
|
window.CONFIG = config.result;
|
|
});
|
|
}
|
|
|
|
clear() {
|
|
this.debounced_post = null;
|
|
}
|
|
}
|
|
|
|
class BackendModel {
|
|
constructor() {
|
|
}
|
|
|
|
all() {
|
|
return http_get("/api/backend").then((r) => r.result);
|
|
}
|
|
}
|
|
|
|
class MiddlewareModel {
|
|
constructor() {
|
|
}
|
|
|
|
getAllAuthentication() {
|
|
return http_get("/admin/api/middlewares/authentication").then((r) => r.result);
|
|
}
|
|
}
|
|
|
|
export const Config = new ConfigModel();
|
|
export const Backend = new BackendModel();
|
|
export const Middleware = new MiddlewareModel();
|