mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 05:53:55 +08:00
9dd47ca755
Followup 1446596089
The link to inform admins that restore is disabled
was not correct. This fixes it and also changes it
to go to /admin/backups/settings
55 lines
1.7 KiB
JavaScript
55 lines
1.7 KiB
JavaScript
import Controller, { inject as controller } from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
import { alias, equal } from "@ember/object/computed";
|
|
import { service } from "@ember/service";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import { i18n, setting } from "discourse/lib/computed";
|
|
import getURL from "discourse-common/lib/get-url";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import I18n from "discourse-i18n";
|
|
|
|
export default class AdminBackupsIndexController extends Controller {
|
|
@service dialog;
|
|
@controller adminBackups;
|
|
|
|
@alias("adminBackups.model") status;
|
|
@i18n("admin.backups.upload.label") uploadLabel;
|
|
@setting("backup_location") backupLocation;
|
|
@equal("backupLocation", "local") localBackupStorage;
|
|
|
|
get restoreSettingsUrl() {
|
|
return getURL("/admin/backups/settings?filter=allow_restore");
|
|
}
|
|
|
|
@discourseComputed("status.allowRestore", "status.isOperationRunning")
|
|
restoreTitle(allowRestore, isOperationRunning) {
|
|
if (!allowRestore) {
|
|
return "admin.backups.operations.restore.is_disabled";
|
|
} else if (isOperationRunning) {
|
|
return "admin.backups.operations.is_running";
|
|
} else {
|
|
return "admin.backups.operations.restore.title";
|
|
}
|
|
}
|
|
|
|
@action
|
|
async download(backup) {
|
|
try {
|
|
await ajax(`/admin/backups/${backup.filename}`, { type: "PUT" });
|
|
this.dialog.alert(I18n.t("admin.backups.operations.download.alert"));
|
|
} catch (err) {
|
|
popupAjaxError(err);
|
|
}
|
|
}
|
|
|
|
@discourseComputed("status.isOperationRunning")
|
|
deleteTitle() {
|
|
if (this.status.isOperationRunning) {
|
|
return "admin.backups.operations.is_running";
|
|
}
|
|
|
|
return "admin.backups.operations.destroy.title";
|
|
}
|
|
}
|