-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcuenta.php
39 lines (37 loc) · 1.11 KB
/
cuenta.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
<?php
require_once __DIR__.'/lib/api-common.php';
if ($metodo == "GET") {
if (!isset($usuario)) {
http_response_code(400);
die("Sin cabecera X-Auth");
}
echo json_encode($usuario);
}
else if ($metodo == "POST") {
$existente = Usuario::cargaLogin($data->email, $apiKey->idApiKey);
if ($existente) {
http_response_code(409);
die("Ya existe un usuario con el mismo email");
}
$usuario = new Usuario();
$usuario->nombre = $data->nombre;
$usuario->email = $data->email;
$usuario->pwd = password_hash($data->pwd, PASSWORD_DEFAULT);
$usuario->idApiKey = $apiKey->idApiKey;
$usuario->authkey = uuid();
$usuario->insertar();
echo json_encode($usuario);
}
else if ($metodo == "PUT") {
if (!isset($usuario)) {
http_response_code(400);
die("Sin cabecera X-Auth");
}
$usuario->nombre = $data->nombre;
$usuario->email = $data->email;
if ($data->pwd) {
$usuario->pwd = password_hash($data->pwd, PASSWORD_DEFAULT);
}
$usuario->actualizar();
echo json_encode($usuario);
}