-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgestorusers.php
355 lines (290 loc) · 24.6 KB
/
gestorusers.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
<?php
/*
This file is part of McWebPanel.
Copyright (C) 2020-2025 DEV-MCWEBPANEL
McWebPanel is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
McWebPanel is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with McWebPanel. If not, see <https://www.gnu.org/licenses/>.
*/
require_once "template/session.php";
require_once "template/errorreport.php";
require_once "config/confopciones.php";
require_once "template/header.php";
?>
<!-- Custom styles for this template-->
<?php
if (isset($_SESSION['CONFIGUSER']['psystemconftemaweb'])) {
if ($_SESSION['CONFIGUSER']['psystemconftemaweb'] == 2) {
echo '<link href="css/dark.css" rel="stylesheet">';
} else {
echo '<link href="css/light.css" rel="stylesheet">';
}
} else {
echo '<link href="css/light.css" rel="stylesheet">';
}
?>
</head>
<body id="page-top">
<?php
$expulsar = 0;
//COMPROBAR SI SESSION EXISTE SINO CREARLA CON NO
if (!isset($_SESSION['VALIDADO']) || !isset($_SESSION['KEYSECRETA'])) {
$_SESSION['VALIDADO'] = "NO";
$_SESSION['KEYSECRETA'] = "0";
header("location:index.php");
exit;
}
//COMPROBAR SI ES EL SUPERADMIN O ADMIN
if (array_key_exists('rango', $_SESSION['CONFIGUSER'])) {
if ($_SESSION['CONFIGUSER']['rango'] == 1 || $_SESSION['CONFIGUSER']['rango'] == 2 || $_SESSION['CONFIGUSER']['rango'] == 3) {
$expulsar = 1;
}
}
if ($expulsar != 1) {
header("location:index.php");
exit;
}
//VALIDAMOS SESSION SINO ERROR
if ($_SESSION['VALIDADO'] == $_SESSION['KEYSECRETA']) {
?>
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
<?php
require_once "template/menu.php";
?>
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Begin Page Content -->
<div class="container-fluid">
<div class="col-md-12">
<div class="card border-left-primary shadow h-100">
<div class="card-body">
<div class="py-1">
<div class="container">
<h1 class="mb-5">Gestor Usuarios</h1>
<div class="row">
<div class="col-md-12">
<div class="row">
<?php
$dirconfig = getcwd() . PHP_EOL;
$dirconfig = trim($dirconfig);
$dirconfig .= "/config/confuser.json";
//COMPROBAR SI EXISTE EL JSON
clearstatcache();
if (!file_exists($dirconfig)) {
echo "<div class='alert alert-danger' role='alert'>Error: El archivo de usuarios no existe.</div>";
exit;
}
//COMPROBAR SI SE PUEDE LEER EL JSON
clearstatcache();
if (!is_readable($dirconfig)) {
echo "<div class='alert alert-danger' role='alert'>Error: El archivo de usuarios no tiene permisos de lectura.</div>";
exit;
}
//COMPROBAR SI SE PUEDE ESCRIBIR EL JSON
clearstatcache();
if (!is_writable($dirconfig)) {
echo "<div class='alert alert-danger' role='alert'>Error: El archivo de usuarios no tiene permisos de escritura.</div>";
exit;
}
//LEER ARRAY
$getarray = file_get_contents($dirconfig);
$arrayobtenido = unserialize($getarray);
//ORDENAR ARRAY
$arrayadmins = array();
$arrayusers = array();
$arrayordenar = array();
$arrayordenar[] = $arrayobtenido[0];
for ($i = 1; $i < count($arrayobtenido); $i++) {
if ($arrayobtenido[$i]['rango'] == 2) {
$arrayadmins[] = $arrayobtenido[$i];
} elseif ($arrayobtenido[$i]['rango'] == 3) {
$arrayusers[] = $arrayobtenido[$i];
}
}
$arrayordenar = array_merge($arrayordenar, $arrayadmins, $arrayusers);
$arrayobtenido = $arrayordenar;
unset($arrayordenar);
unset($arrayadmins);
unset($arrayusers);
if ($_SESSION['CONFIGUSER']['rango'] == 1) {
?>
<div class="col-md-6">
<button type="button" class="btn btn-primary btn-block btn-lg text-white" id="crearadmin">Crear Administrador</button>
</div>
<?php
}
if ($_SESSION['CONFIGUSER']['rango'] == 1) {
echo '<div class="col-md-6">';
echo '<button type="button" class="btn btn-primary btn-block btn-lg text-white" id="crearuser">Crear Nuevo Usuario</button>';
echo '</div>';
} elseif ($_SESSION['CONFIGUSER']['rango'] == 2) {
if (array_key_exists('psystemcreateuser', $_SESSION['CONFIGUSER']) && $_SESSION['CONFIGUSER']['psystemcreateuser'] == 1) {
echo '<div class="col-md-6">';
echo '<button type="button" class="btn btn-primary btn-block btn-lg text-white" id="crearuser">Crear Nuevo Usuario</button>';
echo '</div>';
}
}
?>
</div>
<div class="py-3">
<div class="container">
<div class="row">
<div class="col-md-12">
<br>
<h3>Listado Usuarios</h3>
<div class="table-responsive">
<table class="table table-striped table-borderless">
<thead>
<tr>
<th scope="col">Usuario</th>
<th scope="col">Rango</th>
<th scope="col">Estado</th>
<th scope="col">Acciones</th>
</tr>
</thead>
<tbody>
<?php
$_SESSION['EDITARUSUARIO'] = 0;
$_SESSION['EDITARSUPER'] = 0;
//LEER USUARIOS COMO SUPERADMIN
if ($_SESSION['CONFIGUSER']['rango'] == 1) {
for ($i = 0; $i < count($arrayobtenido); $i++) {
echo '<tr class = "menu-hover">';
echo '<th scope="row">' . $arrayobtenido[$i]['usuario'] . '</th>';
echo '<td>';
if ($arrayobtenido[$i]['rango'] == 1) {
echo "Superusuario";
} elseif ($arrayobtenido[$i]['rango'] == 2) {
echo "Administrador";
} elseif ($arrayobtenido[$i]['rango'] == 3) {
echo "Usuario";
}
echo '</td>';
echo '<td>' . $arrayobtenido[$i]['estado'] . '</td>';
echo '<td>';
if ($arrayobtenido[$i]['rango'] != 1) {
echo '<button type="button" class="actdesuser btn btn-info text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Activar/Desactivar Usuario">Activar/Desactivar</button>';
}
echo '<button type="button" class="edituser btn btn-warning text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Editar Usuario">Editar</button>';
if ($arrayobtenido[$i]['rango'] == 1 && $arrayobtenido[$i]['usuario'] == $_SESSION['CONFIGUSER']['usuario']) {
echo '<button type="button" class="cambiartema btn btn-success text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Cambiar Tema">Cambiar Tema</button>';
}
if ($arrayobtenido[$i]['rango'] != 1) {
echo '<button type="button" class="deluser btn btn-danger text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Eliminar Usuario">Eliminar</button>';
}
echo '</td>';
}
}
//LEER USUARIOS COMO ADMIN
if ($_SESSION['CONFIGUSER']['rango'] == 2) {
for ($i = 1; $i < count($arrayobtenido); $i++) {
if ($arrayobtenido[$i]['rango'] == 2 && $arrayobtenido[$i]['usuario'] == $_SESSION['CONFIGUSER']['usuario']) {
echo '<tr class = "menu-hover">';
echo '<th scope="row">' . $arrayobtenido[$i]['usuario'] . '</th>';
echo '<td>';
if ($arrayobtenido[$i]['rango'] == 1) {
echo "Superusuario";
} elseif ($arrayobtenido[$i]['rango'] == 2) {
echo "Administrador";
} elseif ($arrayobtenido[$i]['rango'] == 3) {
echo "Usuario";
}
echo '</td>';
echo '<td>' . $arrayobtenido[$i]['estado'] . '</td>';
echo '<td>';
echo '<button type="button" class="edituser btn btn-warning text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Editar Usuario">Editar</button>';
echo '<button type="button" class="cambiartema btn btn-success text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Cambiar Tema">Cambiar Tema</button>';
echo '</td>';
}
}
if ($_SESSION['CONFIGUSER']['rango'] == 2 && array_key_exists('psystemcreateuser', $_SESSION['CONFIGUSER']) && $_SESSION['CONFIGUSER']['psystemcreateuser'] == 1) {
for ($i = 1; $i < count($arrayobtenido); $i++) {
if ($arrayobtenido[$i]['rango'] == 3) {
echo '<tr class = "menu-hover">';
echo '<th scope="row">' . $arrayobtenido[$i]['usuario'] . '</th>';
echo '<td>';
if ($arrayobtenido[$i]['rango'] == 1) {
echo "Superusuario";
} elseif ($arrayobtenido[$i]['rango'] == 2) {
echo "Administrador";
} elseif ($arrayobtenido[$i]['rango'] == 3) {
echo "Usuario";
}
echo '</td>';
echo '<td>' . $arrayobtenido[$i]['estado'] . '</td>';
echo '<td>';
echo '<button type="button" class="actdesuser btn btn-info text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Activar/Desactivar Usuario">Activar/Desactivar</button>';
echo '<button type="button" class="edituser btn btn-warning text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Editar Usuario">Editar</button>';
echo '<button type="button" class="deluser btn btn-danger text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Eliminar Usuario">Eliminar</button>';
echo '</td>';
}
}
}
}
if ($_SESSION['CONFIGUSER']['rango'] == 3) {
for ($i = 1; $i < count($arrayobtenido); $i++) {
if ($arrayobtenido[$i]['rango'] == 3 && $arrayobtenido[$i]['usuario'] == $_SESSION['CONFIGUSER']['usuario']) {
echo '<tr class = "menu-hover">';
echo '<th scope="row">' . $arrayobtenido[$i]['usuario'] . '</th>';
echo '<td>';
if ($arrayobtenido[$i]['rango'] == 1) {
echo "Superusuario";
} elseif ($arrayobtenido[$i]['rango'] == 2) {
echo "Administrador";
} elseif ($arrayobtenido[$i]['rango'] == 3) {
echo "Usuario";
}
echo '</td>';
echo '<td>' . $arrayobtenido[$i]['estado'] . '</td>';
echo '<td>';
echo '<button type="button" class="cambiartema btn btn-success text-white mr-1" value="' . $arrayobtenido[$i]['usuario'] . '" title="Cambiar Tema">Cambiar Tema</button>';
echo '</td>';
}
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
<!-- Footer -->
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<script src="js/gestorusuarios.js"></script>
</div>
<?php
//FINAL VALIDAR SESSION
} else {
header("location:index.php");
}
?>
</body>
</html>