admin: introducing speedy deep sync and themed deep sync

This commit is contained in:
nemunaire 2020-01-20 08:41:36 +01:00
parent f7762c0828
commit a4c87b92a5
5 changed files with 170 additions and 31 deletions

View file

@ -554,11 +554,18 @@ angular.module("FICApp")
});
};
$scope.deepSyncInProgress = false;
$scope.deepSync = function(type) {
$rootScope.newYesNoBox('warning', 'Faire une synchronisation intégrale ?', '',
$scope.deepSync = function(theme) {
if (theme) {
question = 'Faire une synchronisation intégrale du thème ' + theme.name + ' ?'
url = "/api/sync/deep/" + theme.id
} else {
question = 'Faire une synchronisation intégrale ?'
url = "/api/sync/deep"
}
$rootScope.newYesNoBox('warning', question, '',
function() {
$scope.deepSyncInProgress = true;
$http.post("/api/sync/deep").then(function() {
$http.post(url).then(function() {
$scope.deepSyncInProgress = false;
$rootScope.newBox('success', 'Synchronisation intégrale terminée.', '<a href="check_import.html">Voir le rapport</a>.', 15000);
}, function(response) {
@ -567,6 +574,19 @@ angular.module("FICApp")
});
});
};
$scope.speedyDeepSync = function() {
$rootScope.newYesNoBox('warning', 'Faire une synchronisation profonde rapide, sans s\'occuper des fichiers ?', '',
function() {
$scope.deepSyncInProgress = true;
$http.post("/api/sync/speed").then(function() {
$scope.deepSyncInProgress = false;
$rootScope.newBox('success', 'Synchronisation profonde rapide terminée.', '<a href="check_import.html">Voir le rapport</a>.', 15000);
}, function(response) {
$scope.deepSyncInProgress = false;
$rootScope.newBox('warning', 'Synchronisation profinde rapide terminée.', '<a href="check_import.html">Voir le rapport</a>.', 15000);
});
});
};
})
.controller("PKIController", function($scope, $rootScope, Certificate, CACertificate, Team, $location, $http) {