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

50 lines
1.4 KiB
Plaintext
Raw Normal View History

export default Ember.ArrayController.extend({
2014-02-12 23:35:46 -05:00
needs: ["adminBackups"],
status: Ember.computed.alias("controllers.adminBackups"),
2014-02-12 23:35:46 -05:00
2015-03-26 13:05:27 -04:00
uploadLabel: function() { return I18n.t("admin.backups.upload.label"); }.property(),
2014-02-12 23:35:46 -05:00
restoreTitle: function() {
if (!this.get('status.model.allowRestore')) {
2015-03-26 13:05:27 -04:00
return "admin.backups.operations.restore.is_disabled";
} else if (this.get("status.model.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.model.{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-21 19:41:01 -05:00
}
2014-02-12 23:35:46 -05:00
},
2015-03-26 13:05:27 -04:00
_toggleReadOnlyMode(enable) {
var site = this.site;
2014-02-12 23:35:46 -05:00
Discourse.ajax("/admin/backups/readonly", {
type: "PUT",
data: { enable: enable }
}).then(function() {
site.set("isReadOnly", enable);
2014-02-12 23:35:46 -05:00
});
}
2014-02-12 23:35:46 -05:00
});