update.html
12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/select/1.2.7/css/select.dataTables.min.css">
<link rem="stylesheet" href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.dataTables.min.css">
<link rel="stylesheet" th:href="@{/css/upload.css}">
<title>Update</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a th:href="@{/home}"><span class="navbar-brand"><img style="max-width:32px;" src="/pfelogo.png"></span></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav mr-auto">
<a class="nav-item nav-link" th:href="@{/upload}">Uploader un fichier</a>
<div th:remove="tag" th:switch="${customerRole}">
<div th:remove="tag" th:case="'ADMIN'">
<a class="nav-item nav-link" th:href="@{/registration}">Enregistrer des utilisateurs</a>
<a class="nav-item nav-link" th:href="@{/all}">Base utilisateur</a>
<a class="nav-item nav-link active" th:href="@{/update}">Experimentations</a>
<a class="nav-item nav-link" th:href="@{/history}">Réseau</a>
<a class="nav-item nav-link" th:href="@{/result}">Résultats</a>
</div>
<div th:remove="tag" th:case="'USER'">
<a class="nav-item nav-link active" th:href="@{/update}">Experimentations</a>
<a class="nav-item nav-link" th:href="@{/history}">Réseau</a>
<a class="nav-item nav-link" th:href="@{/result}">Résultats</a>
</div>
</div>
</div>
</div>
<div class="collapse navbar-collapse ml-3" id="navbarNavAltMarkup2" >
<div class="navbar-nav ml-auto">
<a class="nav-item nav-link btn btn-danger active" th:href="@{/logout}">Déconnexion</a>
</div>
</div>
</div>
</nav>
<div class="container" style="padding-bottom: 50px;">
<div th:if="${customerRole}=='ADMIN'">
<h1 style="margin-bottom:50px; margin-top:50px; border-bottom:1px solid #CCC; padding-bottom:20px;">Paramétrer le réseau</h1>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">Nom</span>
</div>
<input id="nodeName" type="text" class="form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default">
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">IP</span>
</div>
<input id="nodeIP" type="text" class="form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default">
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">Architecture</span>
</div>
<input id="nodeArch" type="text" class="form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default">
</div>
<h3>Capteurs</h3><br/>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">Nom</span>
</div>
<input id="sensorName" type="text" class="form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default">
</div>
<button id="addSensor" type="button" class="btn btn-primary" style="margin-bottom:50px;">Ajouter un capteur</button>
<table id="sensorsTable" class="table" style="margin-bottom:50px;">
</table>
<button id="addNode" type="button" class="btn btn-success" style="margin-bottom:50px;">Ajouter ce noeud</button>
<button id="editNode" type="button" class="btn btn-warning" style="margin-bottom:50px;">Appliquer les modifications</button>
<button id="delNode" type="button" class="btn btn-danger" style="margin-bottom:50px;">Supprimer ce noeud</button>
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#networkDisplay" style="margin-bottom:50px;">
Afficher le réseau en création
</button>
<br/>
<button id="prevNode" type="button" class="btn btn-secondary"><</button>
<button id="allDone" type="button" class="btn btn-primary">Terminer</button>
<button id="nextNode" type="button" class="btn btn-secondary">></button>
</div>
<!-- The Modal -->
<div class="modal fade" id="networkDisplay">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Apercu du réseau en création</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body" id="network">
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">fermer</button>
</div>
</div>
</div>
</div>
<h1 style="margin-bottom:50px; margin-top:50px; border-bottom:1px solid #CCC; padding-bottom:20px;">Lancer une mise à jour</h1>
<div class="form-team">
<select multiple id="maj_name" class="form-control">
<option value="--">--</option>
<option th:each="update : ${customerMaj}" th:value="${update.getUpdate()}" th:utext="${update.getUpdate()}"/>
</select>
<button id="start_maj" type="submit" class="btn btn-primary" style="margin-top:20px;">Lancer la mise à jour</button>
<button id="del_maj" type="submit" class="btn btn-primary" style="margin-top:20px;">Supprimer la mise à jour</button>
</div>
<h1 style="margin-bottom:50px; margin-top:50px; border-bottom:1px solid #CCC; padding-bottom:20px;">Créer une mise à jour</h1>
<table id="nodes-table" class="table table-striped table-bordered dt-responsive nowrap">
<thead>
<tr>
<th>Nom</th>
<th>IP</th>
<th>Architecture</th>
<th>Capteur</th>
</tr>
</thead>
<tbody>
<div th:each="node : ${nodes}">
<tr th:each="sensor : ${node.getSensors()}">
<td th:text="${node.getName()}">name</td>
<td th:text="${node.getIp()}">ip</td>
<td th:text="${node.getArch()}">arch</td>
<td th:text="${sensor.getName()}">sensor</td>
</tr>
</div>
</tbody>
</table>
<div class="form-team">
<input type="text" class="form-control" id="majName" placeholder="Nom de la mise à jour" name="update" style="margin-top:20px;">
</div>
<br/>
<p>Date de l'expérimentation</p>
<div class="form-team">
<input type="datetime-local" class="form-control" id="majDate" placeholder="Date de la mise à jour" name="date">
</div>
<br/>
<p>Durée de l'expérimentation (hh:mm)</p>
<div class="form-team">
<input type="time" class="form-control" id="majTime" placeholder="Durée" name="time">
</div>
<br/>
<select multiple class="form-control" style="margin-bottom:20px;" id="file_choice">
<option value="--">--</option>
<option th:each="file : ${customerFiles}" th:value="${file}" th:utext="${file}"/>
</select>
<button id="save_maj" type="submit" class="btn btn-primary">Sauvegarder la mise à jour</button>
<!--<button id="run_maj" type="submit" class="btn btn-primary">Lancer la mise à jour</button>-->
</div>
<div class="modal fade" id="warningFilesNumber" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modal-title">Attention</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div id="modal-content" class="modal-body">
Veuillez choisir un ou plusieurs noeuds dans le tableau
</div>
<div class="modal-footer">
<button id="modal-button" type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="warningConf" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modal-title">Attention</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div id="modal-content" class="modal-body">
Certains champs sont vides !
</div>
<div class="modal-footer">
<button id="modal-button" type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js" charset="utf-8"></script>
<script src="https://cdn.datatables.net/select/1.2.7/js/dataTables.select.min.js" charset="utf-8"></script>
<script src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js" charset="utf-8"></script>
<script src="https://cdn.datatables.net/responsive/2.2.3/js/dataTables.responsive.min.js" charset="utf-8"></script>
<script th:src="@{/js/update.js}"></script>
<script th:src="@{/js/nodes.js}"></script>
</body>
</html>