2023-10-11 02:38:59 +08:00
|
|
|
import Controller, { inject as controller } from "@ember/controller";
|
2023-03-15 17:42:12 +08:00
|
|
|
import { action } from "@ember/object";
|
2019-10-31 04:28:29 +08:00
|
|
|
import { alias, equal } from "@ember/object/computed";
|
2024-03-07 01:05:11 +08:00
|
|
|
import { service } from "@ember/service";
|
2016-07-01 01:55:44 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2024-08-20 07:59:43 +08:00
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
2023-10-11 02:38:59 +08:00
|
|
|
import { i18n, setting } from "discourse/lib/computed";
|
2024-08-21 11:23:24 +08:00
|
|
|
import getURL from "discourse-common/lib/get-url";
|
2020-01-17 01:56:53 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2023-10-18 18:07:09 +08:00
|
|
|
import I18n from "discourse-i18n";
|
2016-10-21 01:26:41 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
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;
|
2014-02-13 12:35:46 +08:00
|
|
|
|
2024-08-21 11:23:24 +08:00
|
|
|
get restoreSettingsUrl() {
|
|
|
|
return getURL("/admin/backups/settings?filter=allow_restore");
|
|
|
|
}
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("status.allowRestore", "status.isOperationRunning")
|
2019-01-24 00:40:24 +08:00
|
|
|
restoreTitle(allowRestore, isOperationRunning) {
|
|
|
|
if (!allowRestore) {
|
2015-03-27 01:05:27 +08:00
|
|
|
return "admin.backups.operations.restore.is_disabled";
|
2019-01-24 00:40:24 +08:00
|
|
|
} else if (isOperationRunning) {
|
2015-03-27 01:05:27 +08:00
|
|
|
return "admin.backups.operations.is_running";
|
2014-02-13 12:35:46 +08:00
|
|
|
} else {
|
2015-03-27 01:05:27 +08:00
|
|
|
return "admin.backups.operations.restore.title";
|
2014-02-13 12:35:46 +08:00
|
|
|
}
|
2023-03-15 17:42:12 +08:00
|
|
|
}
|
2014-02-13 12:35:46 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
@action
|
2024-08-20 07:59:43 +08:00
|
|
|
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);
|
2023-03-15 17:42:12 +08:00
|
|
|
}
|
|
|
|
}
|
2014-02-13 12:35:46 +08:00
|
|
|
|
2024-08-20 07:59:43 +08:00
|
|
|
@discourseComputed("status.isOperationRunning")
|
|
|
|
deleteTitle() {
|
|
|
|
if (this.status.isOperationRunning) {
|
|
|
|
return "admin.backups.operations.is_running";
|
|
|
|
}
|
2014-02-13 12:35:46 +08:00
|
|
|
|
2024-08-20 07:59:43 +08:00
|
|
|
return "admin.backups.operations.destroy.title";
|
2023-03-15 17:42:12 +08:00
|
|
|
}
|
|
|
|
}
|