dashboard: refactor

This commit is contained in:
nemunaire 2019-03-25 23:14:53 +01:00
parent e17d467ee3
commit ddd8da6395
2 changed files with 24 additions and 14 deletions

View file

@ -1,3 +1,22 @@
var tuto_progress = [
{
1: { title: "Is alive?", label: "T1"},
2: { title: "DMZ reached", label: "T2"},
3: { title: "HTTPS on + time", label: "T3"},
4: { title: "DNS ok", label: "T4"},
5: { title: "On Internet", label: "T5"},
6: { title: "Bonus ICMP", label: "B1"},
7: { title: "Bonus disk", label: "B2"},
8: { title: "Uploaded SSH key", label: "SSH"},
},
{
100: { title: "HTTP", label: "HTTP"},
101: { title: "HTTPS", label: "HTTPS"},
102: { title: "DNS", label: "DNS"},
},
];
angular.module("AdLinApp", ["ngResource", "ngSanitize"])
.factory("Student", function($resource) {
return $resource("/api/students/:studentId", { studentId: '@id' }, {
@ -19,9 +38,6 @@ angular.module("AdLinApp")
}
$interval(refreshStd, 1600000);
})
.controller("ChallengesController", function($scope, Challenge) {
$scope.chids = Challenge.query();
})
.controller("PingController", function($scope, $interval, $http) {
$scope.PING = false;
var refreshPing = function() {
@ -43,6 +59,7 @@ angular.module("AdLinApp")
$interval(refreshSSH, 15500);
})
.controller("ProgressionController", function($scope, $interval, $http) {
$scope.tuto_progress = tuto_progress;
$scope.mychallenges = {};
var refreshChal = function() {
$http.get("/api/students/" + $scope.student.id + "/progress").then(function(response) {