32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular.module('ariaNg').controller('Aria2StatusController', ['$rootScope', '$scope', 'ariaNgCommonService', 'aria2SettingService', function ($rootScope, $scope, ariaNgCommonService, aria2SettingService) {
|
|
$scope.saveSession = function () {
|
|
return aria2SettingService.saveSession(function (response) {
|
|
if (response.success && response.data == 'OK') {
|
|
ariaNgCommonService.showOperationSucceeded('Session has been saved successfully.');
|
|
}
|
|
});
|
|
};
|
|
|
|
$scope.shutdown = function () {
|
|
ariaNgCommonService.confirm('Confirm Shutdown', 'Are you sure you want to shutdown aria2?', 'warning', function (status) {
|
|
return aria2SettingService.shutdown(function (response) {
|
|
if (response.success && response.data == 'OK') {
|
|
ariaNgCommonService.showOperationSucceeded('Aria2 has been shutdown successfully.');
|
|
}
|
|
});
|
|
}, true);
|
|
};
|
|
|
|
$rootScope.loadPromise = (function () {
|
|
return aria2SettingService.getAria2Status(function (response) {
|
|
if (response.success) {
|
|
$scope.aria2Status = response.data;
|
|
}
|
|
});
|
|
})();
|
|
}]);
|
|
})();
|