-
Notifications
You must be signed in to change notification settings - Fork 0
/
editar-usuario.php
171 lines (158 loc) · 6.59 KB
/
editar-usuario.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
<?php
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
if (!isset($_SESSION['id_usuario'])) {
header('location: login.php');
exit();
}
require_once('classes/usuario.php');
$u = new Usuario("essentia", "localhost", "root", "Unida010!");
if (isset($_GET['id_usuario'])) {
$usuario_id = $_GET['id_usuario'];
$stmt = $u->prepare("SELECT * FROM usuario WHERE id_usuario = :id");
$stmt->execute([':id' => $usuario_id]);
if ($usuario = $stmt->fetch(PDO::FETCH_ASSOC)) {
$nome = $usuario['nome'];
$email = $usuario['email'];
$cpf = $usuario['cpf'];
$telefone = $usuario['telefone'];
$dataNascimento = $usuario['dataNascimento'];
} else {
echo "<h5>Usuário não encontrado</h5>";
exit();
}
} else {
echo "<h5>ID do usuário não fornecido</h5>";
exit();
}
$generalMessage = "";
$emailMessage = "";
$cpfMessage = "";
$campoVazioMessage = "";
function validarCPF($cpf)
{
$cpf = preg_replace('/[^0-9]/', '', $cpf);
if (strlen($cpf) != 11 || preg_match('/^(\d)\1{10}$/', $cpf)) {
return false;
}
$soma = 0;
for ($i = 0; $i < 9; $i++) {
$soma += $cpf[$i] * (10 - $i);
}
$digito1 = ($soma * 10) % 11;
if ($digito1 == 10) $digito1 = 0;
$soma = 0;
for ($i = 0; $i < 10; $i++) {
$soma += $cpf[$i] * (11 - $i);
}
$digito2 = ($soma * 10) % 11;
if ($digito2 == 10) $digito2 = 0;
return $digito1 == $cpf[9] && $digito2 == $cpf[10];
}
if (isset($_POST['envio'])) {
$nome = $_POST['nome'];
$email = $_POST['email'];
$cpf = $_POST['cpf'];
$telefone = $_POST['telefone'];
$dataNascimento = $_POST['dataNascimento'];
if (empty($nome) || empty($email) || empty($cpf) || empty($telefone) || empty($dataNascimento)) {
$campoVazioMessage = "Preencha todos os campos!";
} elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$emailMessage = "Email inválido!";
} elseif (!validarCPF($cpf)) {
$cpfMessage = "CPF inválido! Verifique se está correto.";
} else {
// Atualização no banco de dados
if ($u->atualizarUsuario($usuario_id, $nome, $email, $cpf, $telefone, $dataNascimento)) {
header('location: gerenciamento-usuario.php');
exit();
} else {
$generalMessage = "Erro ao atualizar usuário.";
}
}
}
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Editar Usuário</title>
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="https://use.typekit.net/tvf0cut.css">
</head>
<body>
<header>
<div class="container">
<a href="index.php" class="logo">
<img src="assets/images/ho.svg" alt="" />
</a>
<div class="blc-user">
<img src="assets/images/icon-feather-user.svg" alt="" />
<span>
Olá, <br />
Lorem Ipsum
</span>
<img src="assets/images/arrow-down.svg" alt="" />
<div class="menu-drop">
<a href="gerenciamento-cliente.php">Gerenciar clientes</a>
<a href="gerenciamento-produto.php">Gerenciar produtos</a>
<a href="gerenciamento-usuario.php">Gerenciar usuários</a>
<a href="cadastro-cliente.php">Cadastrar cliente</a>
<a href="cadastro-usuario.php">Cadastrar usuário</a>
<a href="cadastro-produto.php">Cadastrar produto</a>
<a href="novo-pedido.php">Novo pedido</a>
<a href="alterar-senha.php?id_usuario=<?php echo $_SESSION['id_usuario']; ?>">Alterar senha</a>
<a href="relatorio-estoque.php">Relatório de estoque</a>
<a href="logout.php">Sair da conta</a>
</div>
</div>
</div>
</header>
<section class="page-cadastro-usuario paddingBottom50">
<div class="container">
<div>
<a href="gerenciamento-usuario.php" class="link-voltar">
<img src="assets/images/arrow.svg" alt="">
<span>Editar Usuário</span>
</a>
</div>
<div class="container-small">
<div>
<?php if ($generalMessage) echo "<div class='alert error'>{$generalMessage}</div>"; ?>
<?php if ($emailMessage) echo "<div class='alert error'>{$emailMessage}</div>"; ?>
<?php if ($cpfMessage) echo "<div class='alert error'>{$cpfMessage}</div>"; ?>
<?php if ($campoVazioMessage) echo "<div class='alert error'>{$campoVazioMessage}</div>"; ?>
</div>
<form method="post" id="form-cadastro-cliente">
<div class="bloco-inputs">
<div>
<label class="input-label">Nome</label>
<input type="text" class="nome-input" name="nome" value="<?php echo htmlspecialchars($nome); ?>" required maxlength="255">
</div>
<div>
<label class="input-label">E-mail</label>
<input type="text" class="email-input" name="email" value="<?php echo htmlspecialchars($email); ?>" required maxlength="255">
</div>
<div>
<label class="input-label">CPF</label>
<input type="text" class="cpf-input" name="cpf" value="<?php echo htmlspecialchars($cpf); ?>" required maxlength="14">
</div>
<div>
<label class="input-label">Telefone</label>
<input type="tel" class="telefone-input" name="telefone" value="<?php echo htmlspecialchars($telefone); ?>" required maxlength="15">
</div>
<div>
<label class="input-label">Data de Nascimento</label>
<input type="date" class="data-input" name="dataNascimento" value="<?php echo htmlspecialchars($dataNascimento); ?>" required>
</div>
</div>
<button type="submit" class="button-default" name="envio">Salvar alterações</button>
</form>
</div>
</div>
</section>
</body>
</html>