2018-06-15 23:03:24 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2019-02-20 22:15:38 +08:00
|
|
|
import { extractError } from "discourse/lib/ajax-error";
|
2016-07-05 02:15:51 +08:00
|
|
|
|
2015-08-28 02:02:13 +08:00
|
|
|
const Backup = Discourse.Model.extend({
|
|
|
|
destroy() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return ajax("/admin/backups/" + this.filename, { type: "DELETE" });
|
2015-08-28 02:02:13 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
restore() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return ajax("/admin/backups/" + this.filename + "/restore", {
|
2015-08-28 02:02:13 +08:00
|
|
|
type: "POST",
|
|
|
|
data: { client_id: window.MessageBus.clientId }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Backup.reopenClass({
|
|
|
|
find() {
|
2019-02-20 22:15:38 +08:00
|
|
|
return ajax("/admin/backups.json")
|
|
|
|
.then(backups => backups.map(backup => Backup.create(backup)))
|
|
|
|
.catch(error => {
|
|
|
|
bootbox.alert(
|
|
|
|
I18n.t("admin.backups.backup_storage_error", {
|
|
|
|
error_message: extractError(error)
|
|
|
|
})
|
|
|
|
);
|
|
|
|
return [];
|
|
|
|
});
|
2015-08-28 02:02:13 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
start(withUploads) {
|
2018-06-15 23:03:24 +08:00
|
|
|
if (withUploads === undefined) {
|
|
|
|
withUploads = true;
|
|
|
|
}
|
2016-07-01 01:55:44 +08:00
|
|
|
return ajax("/admin/backups", {
|
2015-08-28 02:02:13 +08:00
|
|
|
type: "POST",
|
|
|
|
data: {
|
|
|
|
with_uploads: withUploads,
|
|
|
|
client_id: window.MessageBus.clientId
|
|
|
|
}
|
|
|
|
}).then(result => {
|
2018-06-15 23:03:24 +08:00
|
|
|
if (!result.success) {
|
|
|
|
bootbox.alert(result.message);
|
|
|
|
}
|
2015-08-28 02:02:13 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
cancel() {
|
2017-03-23 10:29:35 +08:00
|
|
|
return ajax("/admin/backups/cancel.json", {
|
2018-06-15 23:03:24 +08:00
|
|
|
type: "DELETE"
|
2017-03-23 10:29:35 +08:00
|
|
|
}).then(result => {
|
2018-06-15 23:03:24 +08:00
|
|
|
if (!result.success) {
|
|
|
|
bootbox.alert(result.message);
|
|
|
|
}
|
2017-03-23 10:29:35 +08:00
|
|
|
});
|
2015-08-28 02:02:13 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
rollback() {
|
2017-03-23 10:29:35 +08:00
|
|
|
return ajax("/admin/backups/rollback.json", {
|
2018-06-15 23:03:24 +08:00
|
|
|
type: "POST"
|
2017-03-23 10:29:35 +08:00
|
|
|
}).then(result => {
|
2015-08-28 02:02:13 +08:00
|
|
|
if (!result.success) {
|
|
|
|
bootbox.alert(result.message);
|
|
|
|
} else {
|
|
|
|
// redirect to homepage (session might be lost)
|
2019-09-16 20:27:12 +08:00
|
|
|
window.location = Discourse.getURL("/");
|
2015-08-28 02:02:13 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Backup;
|