discourse/app/assets/javascripts/admin/controllers/admin-backups-index.js.es6

65 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import { ajax } from "discourse/lib/ajax";
import computed from "ember-addons/ember-computed-decorators";
export default Ember.Controller.extend({
adminBackups: Ember.inject.controller(),
2018-06-15 11:03:24 -04:00
status: Ember.computed.alias("adminBackups.model"),
2014-02-12 23:35:46 -05:00
@computed
localBackupStorage() {
return this.siteSettings.backup_location === "local";
},
2018-06-15 11:03:24 -04:00
uploadLabel: function() {
return I18n.t("admin.backups.upload.label");
}.property(),
2015-03-26 13:05:27 -04:00
2014-02-12 23:35:46 -05:00
restoreTitle: function() {
2018-06-15 11:03:24 -04:00
if (!this.get("status.allowRestore")) {
2015-03-26 13:05:27 -04:00
return "admin.backups.operations.restore.is_disabled";
} else if (this.get("status.isOperationRunning")) {
2015-03-26 13:05:27 -04:00
return "admin.backups.operations.is_running";
2014-02-12 23:35:46 -05:00
} else {
2015-03-26 13:05:27 -04:00
return "admin.backups.operations.restore.title";
2014-02-12 23:35:46 -05:00
}
}.property("status.{allowRestore,isOperationRunning}"),
2014-02-12 23:35:46 -05:00
actions: {
2015-03-26 13:05:27 -04:00
toggleReadOnlyMode() {
2014-02-12 23:35:46 -05:00
var self = this;
if (!this.site.get("isReadOnly")) {
2014-02-12 23:35:46 -05:00
bootbox.confirm(
I18n.t("admin.backups.read_only.enable.confirm"),
I18n.t("no_value"),
I18n.t("yes_value"),
function(confirmed) {
if (confirmed) {
Discourse.User.currentProp("hideReadOnlyAlert", true);
self._toggleReadOnlyMode(true);
}
2014-02-12 23:35:46 -05:00
}
);
} else {
this._toggleReadOnlyMode(false);
}
},
2014-02-12 23:35:46 -05:00
download(backup) {
2018-06-15 11:03:24 -04:00
let link = backup.get("filename");
ajax("/admin/backups/" + link, { type: "PUT" }).then(() => {
bootbox.alert(I18n.t("admin.backups.operations.download.alert"));
});
}
2014-02-12 23:35:46 -05:00
},
2015-03-26 13:05:27 -04:00
_toggleReadOnlyMode(enable) {
var site = this.site;
2016-06-30 13:55:44 -04:00
ajax("/admin/backups/readonly", {
2014-02-12 23:35:46 -05:00
type: "PUT",
data: { enable: enable }
}).then(() => {
site.set("isReadOnly", enable);
2014-02-12 23:35:46 -05:00
});
}
2014-02-12 23:35:46 -05:00
});