133 lines
3.8 KiB
JavaScript
133 lines
3.8 KiB
JavaScript
angular.module('portainer.app').controller('SettingsController', [
|
|
'$scope',
|
|
'$state',
|
|
'Notifications',
|
|
'SettingsService',
|
|
'StateManager',
|
|
'BackupService',
|
|
'FileSaver',
|
|
'Blob',
|
|
function ($scope, $state, Notifications, SettingsService, StateManager, BackupService, FileSaver) {
|
|
$scope.state = {
|
|
actionInProgress: false,
|
|
availableEdgeAgentCheckinOptions: [
|
|
{
|
|
key: '5 seconds',
|
|
value: 5,
|
|
},
|
|
{
|
|
key: '10 seconds',
|
|
value: 10,
|
|
},
|
|
{
|
|
key: '30 seconds',
|
|
value: 30,
|
|
},
|
|
],
|
|
|
|
backupInProgress: false,
|
|
};
|
|
|
|
$scope.formValues = {
|
|
customLogo: false,
|
|
labelName: '',
|
|
labelValue: '',
|
|
enableEdgeComputeFeatures: false,
|
|
enableTelemetry: false,
|
|
passwordProtect: false,
|
|
password: '',
|
|
};
|
|
|
|
$scope.removeFilteredContainerLabel = function (index) {
|
|
var settings = $scope.settings;
|
|
settings.BlackListedLabels.splice(index, 1);
|
|
|
|
updateSettings(settings);
|
|
};
|
|
|
|
$scope.addFilteredContainerLabel = function () {
|
|
var settings = $scope.settings;
|
|
var label = {
|
|
name: $scope.formValues.labelName,
|
|
value: $scope.formValues.labelValue,
|
|
};
|
|
settings.BlackListedLabels.push(label);
|
|
|
|
updateSettings(settings);
|
|
};
|
|
|
|
$scope.downloadBackup = function () {
|
|
const payload = {};
|
|
if ($scope.formValues.passwordProtect) {
|
|
payload.password = $scope.formValues.password;
|
|
}
|
|
|
|
$scope.state.backupInProgress = true;
|
|
|
|
BackupService.downloadBackup(payload)
|
|
.then(function success(data) {
|
|
const downloadData = new Blob([data.file], { type: 'application/gzip' });
|
|
FileSaver.saveAs(downloadData, data.name);
|
|
Notifications.success('Backup successfully downloaded');
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to download backup');
|
|
})
|
|
.finally(function final() {
|
|
$scope.state.backupInProgress = false;
|
|
});
|
|
};
|
|
|
|
$scope.saveApplicationSettings = function () {
|
|
var settings = $scope.settings;
|
|
|
|
if (!$scope.formValues.customLogo) {
|
|
settings.LogoURL = '';
|
|
}
|
|
|
|
settings.EnableEdgeComputeFeatures = $scope.formValues.enableEdgeComputeFeatures;
|
|
settings.EnableTelemetry = $scope.formValues.enableTelemetry;
|
|
|
|
$scope.state.actionInProgress = true;
|
|
updateSettings(settings);
|
|
};
|
|
|
|
function updateSettings(settings) {
|
|
SettingsService.update(settings)
|
|
.then(function success() {
|
|
Notifications.success('Settings updated');
|
|
StateManager.updateLogo(settings.LogoURL);
|
|
StateManager.updateSnapshotInterval(settings.SnapshotInterval);
|
|
StateManager.updateEnableEdgeComputeFeatures(settings.EnableEdgeComputeFeatures);
|
|
StateManager.updateEnableTelemetry(settings.EnableTelemetry);
|
|
$state.reload();
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to update settings');
|
|
})
|
|
.finally(function final() {
|
|
$scope.state.actionInProgress = false;
|
|
});
|
|
}
|
|
|
|
function initView() {
|
|
SettingsService.settings()
|
|
.then(function success(data) {
|
|
var settings = data;
|
|
$scope.settings = settings;
|
|
|
|
if (settings.LogoURL !== '') {
|
|
$scope.formValues.customLogo = true;
|
|
}
|
|
$scope.formValues.enableEdgeComputeFeatures = settings.EnableEdgeComputeFeatures;
|
|
$scope.formValues.enableTelemetry = settings.EnableTelemetry;
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to retrieve application settings');
|
|
});
|
|
}
|
|
|
|
initView();
|
|
},
|
|
]);
|