-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-list.php
498 lines (396 loc) · 13.8 KB
/
user-list.php
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
<?php
include("php/database.php");
session_start();
$user = $_SESSION["username"];
// Verificar si el usuario está autenticado
if (!isset($_SESSION["username"]) || empty($_SESSION["username"])) {
// Redirigir al usuario a index.php
header("Location: index.php");
exit; // Asegurarse de que el script se detenga después de redirigir
}
$user = $_SESSION["username"];
$consulta = "SELECT rol FROM users WHERE user = '$user'";
$resultado = mysqli_query($connection, $consulta);
$datos = mysqli_fetch_assoc($resultado);
$rol = $datos['rol'];
if ($rol != "Administrador") {
header("Location: home.php");
}
if (isset($_GET['success'])) {
$success = $_GET['success'];
if ($success === 'true') {
echo '
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
Swal.fire({
title: "Usuario Eliminado Correctamente.",
icon: "success",
confirmButtonText: "OK"
}).then(() => {
if (window.history.replaceState) {
window.history.replaceState({}, document.title, window.location.href.split("?")[0]);
}
});
});
</script>
';
}
}
if(isset($_GET['error'])) {
$error = $_GET['error'];
if($error === 'admin_del') {
echo '
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
Swal.fire({
title: "Debe existir al menos 1 Administrador.",
icon: "success",
confirmButtonText: "OK"
}).then(() => {
if (window.history.replaceState) {
window.history.replaceState({}, document.title, window.location.href.split("?")[0]);
}
});
});
</script>
';
}
}
$consulta = "SELECT * FROM users ORDER BY user ASC";
$resultado = mysqli_query($connection, $consulta);
$cantidadRegistros = mysqli_num_rows($resultado);
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="assets/icons/system.png" type="image/png">
<title>SIVIGE | Nuevo Usuario</title>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/42b5b848d1.js" crossorigin="anonymous"></script>
<!-- Normalize V8.0.1 -->
<link rel="stylesheet" href="css/normalize.css">
<!-- Bootstrap V4.3 -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Bootstrap Material Design V4.0 -->
<link rel="stylesheet" href="css/bootstrap-material-design.min.css">
<!-- Font Awesome V5.9.0 -->
<link rel="stylesheet" href="css/all.css">
<!-- Sweet Alerts V8.13.0 CSS file -->
<link rel="stylesheet" href="css/sweetalert2.min.css">
<!-- Sweet Alert V8.13.0 JS file-->
<script src="js/sweetalert2.min.js" ></script>
<!-- jQuery Custom Content Scroller V3.1.5 -->
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.css">
<!-- General Styles -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Main container -->
<main class="full-box main-container">
<!-- Nav lateral -->
<section class="full-box nav-lateral">
<div class="full-box nav-lateral-bg show-nav-lateral"></div>
<div class="full-box nav-lateral-content">
<figure class="full-box nav-lateral-avatar">
<i class="far fa-times-circle show-nav-lateral"></i>
<?php
if($resultado && mysqli_num_rows($resultado) > 0){
if ($rol == "Administrador") {
?><img src="assets/avatar/admin.png" class="img-fluid" alt="Avatar"><?php
}
if ($rol == "Editor") {
?><img src="assets/avatar/edit.png" class="img-fluid" alt="Avatar"><?php
}
if ($rol == "Lector") {
?><img src="assets/avatar/read.png" class="img-fluid" alt="Avatar"><?php
}
}
?>
<figcaption class="roboto-medium text-center">
<?php
if ($resultado && mysqli_num_rows($resultado) > 0) {
// Mostrar el mensaje de bienvenida con el nombre de usuario y el rol
echo "Bienvenido $user <br><small class='roboto-condensed-light'>$rol</small>";
} else {
// Mostrar un mensaje genérico si no se puede obtener el rol del usuario
echo "Bienvenido $user <br><small class='roboto-condensed-light'>Rol desconocido</small>";
}
?>
</figcaption>
</figure>
<div class="full-box nav-lateral-bar"></div>
<nav class="full-box nav-lateral-menu">
<ul>
<li>
<a href="home.php"><i class="fab fa-dashcube fa-fw"></i> Panel de Control</a>
</li>
<li>
<a href="#" class="nav-btn-submenu"><i class="fa-solid fa-venus-mars"></i> Víctimas <i class="fas fa-chevron-down"></i></a>
<ul>
<?php
if($rol != "Lector") {
?>
<li>
<a href="victim-new.php"><i class="fas fa-plus fa-fw"></i> Agregar Víctima</a>
</li>
<?php
}
?>
<li>
<a href="victim-list.php"><i class="fas fa-clipboard-list fa-fw"></i> Lista de Víctimas</a>
</li>
<li>
<a href="victim-search.php"><i class="fas fa-search fa-fw"></i> Buscar Víctima</a>
</li>
</ul>
</li>
<li>
<a href="#" class="nav-btn-submenu"><i class="fa-solid fa-mars-and-venus-burst"></i> Agresores <i class="fas fa-chevron-down"></i></a>
<ul>
<?php
if($rol != "Lector") {
?>
<li>
<a href="agresor-new.php"><i class="fas fa-plus fa-fw"></i> Agregar Agresor</a>
</li>
<?php
}
?>
<li>
<a href="agresor-list.php"><i class="fas fa-clipboard-list fa-fw"></i> Lista de Agresores</a>
</li>
<li>
<a href="agresor-search.php"><i class="fas fa-search fa-fw"></i> Buscar Agresor</a>
</li>
</ul>
</li>
<?php
if ($rol == "Administrador") {
?>
<li>
<a href="#" class="nav-btn-submenu"><i class="fa-solid fa-sliders"></i></i> Admin <i class="fas fa-chevron-down"></i></a>
<ul>
<li>
<a href="user-new.php"><i class="fa-solid fa-user-plus"></i> Nuevo Usuario</a>
</li>
<li>
<a href="user-list.php"><i class="fa-solid fa-users"></i> Lista de Usuarios</a>
</li>
</ul>
</li>
<?php
}
?>
<li>
<a href="#" class="btn-show-info"><i class="fa-solid fa-circle-info"></i> Informacíon</a>
</li>
</ul>
<div class="container-fluid footer">
<div class="row">
<div class="col-12 text-center text-white">
<a href="https://instagram.com/miltoncoronel__" class="mb-3 mb-md-0 text-body-secondary text-decoration-none lh-1">
</a>
<span class="mb-3 mb-md-0 text-body-secondary pr-5">© 2023 Milweb, Inc</span>
<a class="text-body-secondary" href="https://www.facebook.com/miltonagustin.coroneldean/"><img class="bi" width="24" height="24" src="assets/img/facebook.png" alt=""></a>
<a class="text-body-secondary" href="https://instagram.com/miltoncoronel__"><img class="bi" width="24" height="24" src="assets/img/instagram.png" alt=""></a>
<a class="text-body-secondary" href="mailto:[email protected]?subject=Consulta de Desarrollo Web"><img class="bi" width="24" height="24" src="assets/img/gmail.png" alt=""></a>
</div>
</div>
</div>
</nav>
</div>
</section>
<!-- Page content -->
<section class="full-box page-content">
<nav class="full-box navbar-info">
<a href="#" class="float-left show-nav-lateral">
<i class="fas fa-exchange-alt"></i>
</a>
<?php
if($rol == "Administrador") {
?>
<a href="user-list.php">
<i class="fas fa-user-cog"></i>
</a>
<?php
}
?>
<a href="#" class="btn-exit-system">
<i class="fas fa-power-off"></i>
</a>
</nav>
<!-- Page header -->
<div class="full-box page-header">
<h3 class="text-left">
<i class="fas fa-clipboard-list fa-fw"></i> REGISTRO DE USUARIOS: <?php echo '' . $cantidadRegistros ?>
</h3>
<p class="text-justify">
Esta tabla mostrara todos los registros de usuarios, excepto el usuario que esta siendo usado.
</p>
</div>
<div class="container-fluid">
<ul class="full-box list-unstyled page-nav-tabs">
<li>
<a href="user-new.php" class="option"><i class="fas fa-plus fa-fw"></i> NUEVO USUARIO</a>
</li>
<li>
<a class="active" href="user-list.php" class="option"><i class="fas fa-clipboard-list fa-fw"></i> LISTA DE USUARIOS</a>
</li>
</ul>
</div>
<!-- Content -->
<div class="container-fluid">
<div class="table-responsive" style="max-height: 450px; overflow-y: scroll;">
<table class="table table-dark table-sm">
<thead>
<tr class="text-center roboto-medium">
<th>DNI</th>
<th>NOMBRE</th>
<th>USUARIO</th>
<th>ROL</th>
<th>ACTUALIZAR</th>
<th>CONTRASEÑA</th>
<th>ELIMINAR</th>
</tr>
</thead>
<?php
include("php/database.php");
if ($cantidadRegistros > 0) {
// Si hay datos, mostrarlos en una tabla HTML
while ($fila = mysqli_fetch_assoc($resultado)) {
// Compara el nombre de la sesión con el valor de la columna 'user'
if ($fila['user'] !== $_SESSION['username']) {
echo "<tr class='fila-tabla text-center' data-id='" . $fila['id'] . "' id='" . $fila['id'] . "'> ";
echo "<td>" . $fila['dni'] . "</td>";
echo "<td>" . $fila['nombre'] . "</td>";
echo "<td>" . $fila['user'] . "</td>";
echo "<td>" . $fila['rol'] . "</td>";
echo "<td><a href='#' class='editar-usuario' data-id='" . $fila['id'] . "'><img src='assets/icons/sync.png' width='25px'></a></td>";
echo "<td><a href='#' class='update-pass' data-id='" . $fila['id'] . "'><img src='assets/icons/sync.png' width='25px'></a></td>";
echo "<td><a href='#' class='del-user' data-id='" . $fila['id'] . "'><img src='assets/icons/trash.png' width='25px'></a></td>";
echo "</tr>";
} else {
if($cantidadRegistros <= 1) {
echo "<tr><td colspan='7' class='nodata text-center'>No se encontraron datos. (1 Administrador Existente)</td></tr>";
}
}
}
} else {
echo "<tr><td colspan='7' class='nodata text-center'>No se encontraron datos.</td></tr>";
}
?>
</table>
</div>
</div>
</section>
</main>
<!-- jQuery V3.4.1 -->
<script src="js/jquery-3.4.1.min.js" ></script>
<!-- popper -->
<script src="js/popper.min.js" ></script>
<!-- Bootstrap V4.3 -->
<script src="js/bootstrap.min.js" ></script>
<!-- jQuery Custom Content Scroller V3.1.5 -->
<script src="js/jquery.mCustomScrollbar.concat.min.js" ></script>
<!-- Bootstrap Material Design V4.0 -->
<script src="js/bootstrap-material-design.min.js" ></script>
<script>$(document).ready(function() { $('body').bootstrapMaterialDesign(); });</script>
<script src="js/main.js" ></script>
<script src="js/update_data.js"></script>
<script src="js/update_pass.js"></script>
<script src="js/del_user.js"></script>
</body>
</html>
<?php
if($rol == "Administrador") {
?>
<style>
.footer {
margin-top: 65%;
}
@media screen and (max-width: 1024px){
.footer {
margin-top: 35%;
}
}
</style>
<?php
}
else {
?>
<style>
.footer {
margin-top: 80%;
}
@media screen and (max-width: 1024px){
.footer {
margin-top: 110%;
}
}
</style>
<?php
}
?>
<?php
include("php/database.php");
// Función para actualizar el estilo de la página según el modo
function updatePageStyle($toggleMode) {
if ($toggleMode == 1) {
?>
<script>
$(document).ready(function() {
var btnLightMode = $('.btn-light-mode');
var btnDarkMode = $('.btn-dark-mode');
btnDarkMode.hide();
btnLightMode.show();
$('body').css('--color-one', '#181818');
$('h1, h2, h3, h4, h5, h6, p').css('color', '#fff');
$('body, h1, h2, h3, h4, h5, h6, p').css('background-color', '#181818');
$('.tile:hover').css('color', '#fff');
$('.tile-tittle').css('color', '#fff !important');
$('.tile').css('border', '1px solid #272727');
$('.tile').css('background-color', '#181818');
$('.p-icon').css('color', '#fff');
$('.navbar-info a i').css('color', '#fff');
$('table').css('background-color', '#181818');
$('tr').css('color', '#fff');
$('.option').css('color', '#fff');
// Aquí puedes agregar cualquier otra lógica o funciones relacionadas con el modo oscuro
});
</script>
<?php
} else {
?>
<script>
$(document).ready(function() {
var btnLightMode = $('.btn-light-mode');
var btnDarkMode = $('.btn-dark-mode');
btnDarkMode.show();
btnLightMode.hide();
$('body').css('--color-one', '#fff');
$('h1, h2, h3, h4, h5, h6, p').css('color', '#181818');
$('body, h1, h2, h3, h4, h5, h6, p').css('background-color', '#fff');
$('.tile:hover').css('color', '#181818');
$('.tile-tittle').css('color', '#181818 !important');
$('.tile').css('border', '1px solid #D8D8D8');
$('.tile').css('background-color', '#fff');
$('.p-icon').css('color', '#181818');
$('.navbar-info a i').css('color', '#181818');
});
</script>
<?php
}
}
// Verificar el valor actual de "togglemode" en la tabla "mode"
$consulta = "SELECT togglemode FROM mode WHERE id = 1";
$resultado = mysqli_query($connection, $consulta);
if ($resultado && mysqli_num_rows($resultado) > 0) {
$fila = mysqli_fetch_assoc($resultado);
$toggleMode = $fila['togglemode'];
updatePageStyle($toggleMode);
}
?>