This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues/pull-requests.
AriaNg/src/scripts/controllers/settings-aria2.js

40 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-05-17 17:13:47 +02:00
(function () {
'use strict';
2016-06-01 17:31:48 +02:00
angular.module('ariaNg').controller('Aria2SettingsController', ['$rootScope', '$scope', '$location', 'ariaNgConstants', 'ariaNgCommonService', 'aria2SettingService', function ($rootScope, $scope, $location, ariaNgConstants, ariaNgCommonService, aria2SettingService) {
var location = $location.path().substring($location.path().lastIndexOf('/') + 1);
2016-06-20 18:20:30 +02:00
$scope.context = {
availableOptions: (function (type) {
var keys = aria2SettingService.getAvailableGlobalOptionsKeys(type);
2016-06-20 18:20:30 +02:00
if (!keys) {
ariaNgCommonService.showError('Type is illegal!');
return;
}
2016-06-20 18:20:30 +02:00
return aria2SettingService.getSpecifiedOptions(keys);
})(location),
globalOptions: []
};
2016-05-31 16:51:12 +02:00
2016-06-02 18:16:27 +02:00
$scope.setGlobalOption = function (key, value, optionStatus) {
2016-06-10 13:23:16 +02:00
return aria2SettingService.setGlobalOption(key, value, function (response) {
if (response.success && response.data == 'OK') {
2016-06-02 18:16:27 +02:00
optionStatus.setSuccess();
} else {
optionStatus.setFailed();
}
2016-06-10 13:23:16 +02:00
}, true);
};
2016-05-30 19:26:41 +02:00
$rootScope.loadPromise = (function () {
2016-06-10 13:23:16 +02:00
return aria2SettingService.getGlobalOption(function (response) {
if (response.success) {
2016-06-20 18:20:30 +02:00
$scope.context.globalOptions = response.data;
2016-06-10 13:23:16 +02:00
}
2016-05-29 07:25:12 +02:00
});
})();
2016-05-17 17:13:47 +02:00
}]);
})();