-
Notifications
You must be signed in to change notification settings - Fork 0
/
editarConta.php
161 lines (135 loc) · 5.55 KB
/
editarConta.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
<?php
include 'php/funcoes.php';
include 'php/constantes.php';
session_start();
if (!verificaSeSessaoExiste()) {
$msgErroGeral = "Faça login para acessar o sistema!";
} else {
$msgErroEmail = $msgErroNome = $msgErroTelefone = $msgErroEndereco = $msgErroSenha = "";
$msgErroGeral = "";
$msgSucessoAlteracao = "";
$nome = $_SESSION["nome"];
$email = $_SESSION["email"];
$senha = $_SESSION["senha"];
$telefone = $_SESSION["telefone"];
$endereco = $_SESSION["endereco"];
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Verifica se 'nome' foi enviado pelo POST:
if (empty($_POST["nome"])) {
$msgErroNome = "Nome é requerido!";
} else {
$nome = trataEntrada($_POST["nome"]);
if (!verificaSeNomeEValido($nome)) {
$msgErroNome = "Nome deve conter apenas LETRAS e ESPAÇOS!";
}
}
// - - - - - - - - - - - - - - - - - - - - - -
// Verifica se 'email' foi enviado pelo POST:
if (empty($_POST["email"])) {
$msgErroEmail = "E-mail é requerido!";
} else {
$email = trataEntrada($_POST["email"]);
if (!verificaSeEmailEValido($email)) {
$msgErroEmail = "Formato de e-mail inválido!";
}
$emailJaExiste = verificaSeOutroEmailExiste($email, $_SESSION["idCliente"]);
if ($emailJaExiste === true) {
$msgErroEmail = "Este e-mail já foi cadastrado!";
} else if ($emailJaExiste === null) {
$msgErroGeral = "Não foi possível conectar ao servidor!<br>Tente novamente mais tarde.";
terminaSessao();
}
}
$telefone = trataEntrada($_POST["telefone"]);
if (!verificaSeTelefoneEValido($telefone)) {
$msgErroTelefone = "Formato de telefone inválido!";
}
$endereco = trataEntrada($_POST["endereco"]);
if (!verificaSeEnderecoEValido($endereco)) {
$msgErroEndereco = "Número máximo de caracteres alcançado!";
}
if (empty($_POST["senha"])) {
$msgErroSenha = "Digite a sua senha para alterar os dados!";
} else {
$senha = trataEntrada($_POST["senha"]);
if (!verificaSeSenhaEValida($senha)) {
$msgErroSenha = "Senha incorreta!";
} else {
if (!verificaSeEmailESenhaEstaoCorretos($_SESSION["email"], $senha)) {
$msgErroSenha = "Senha incorreta!";
} else {
if (($msgErroNome === "") && ($msgErroEmail === "") && ($msgErroSenha === "") && ($msgErroTelefone === "") && ($msgErroEndereco === "") && ($msgErroSenha === "")) {
if (atualizaDadosDeCliente($nome, $email, $telefone, $endereco)) {
mudaDePagina("sistema.php");
} else {
$msgErroGeral = "Não foi possível conectar ao servidor!<br>Tente novamente mais tarde.";
terminaSessao();
}
}
}
}
}
/*if (verificaSeFormularioEValido($msgErroNome, $msgErroEmail, $msgErroSenha, $msgErroTelefone, $msgErroEndereco)) {
if (atualizaDadosDeCliente($nome, $email, $telefone, $endereco)) {
mudaDePagina("sistema.php");
} else {
$msgErroGeral = "Não foi possível conectar ao servidor!<br>Tente novamente mais tarde.";
terminaSessao();
}
}*/
}
}
// Grava na base de dados:
/*
if (verificaSeFormularioEValido($msgErroNome, $msgErroEmail, $msgErroSenha, $msgErroTelefone, $msgErroEndereco)) {
if (atualizaDadosDeCliente($nome, $email, $telefone, $endereco)) {
mudaDePagina("sistema.php");
} else {
$msgErroGeral = "Não foi possível conectar ao servidor!<br>Tente novamente mais tarde.";
terminaSessao();
}
}
*/
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Edite sua conta Mini TI!</title>
<link href="css/estilos_gerais.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
if (verificaSeSessaoExiste()) {
?>
<div class='caixaInterface sistema'>
<div class='cabecalhoSistema editarDadosCadastrais'>
<p class='bemVindo'>Edite seus dados</p>
<a href='sistema.php'><button type='button' class='botao sair'>Voltar</button></a>
</div>
<div class='caixaInterface editarDados'>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post">
<input type='text' name='nome' class='campoDeEntrada' placeholder='nome completo' required value="<?php echo $nome;?>">
<?php verificaMsgECriaBalao($msgErroNome, "balaoMsg erro");?>
<?php verificaMsgECriaBalao($msgSucessoAlteracao, "balaoMsg");?>
<input type="text" name="email" class="campoDeEntrada" placeholder="e-mail" value="<?php echo $email;?>" maxlength="<?php echo MAX_CHAR_EMAIL;?>" required>
<?php verificaMsgECriaBalao($msgErroEmail, "balaoMsg erro");?>
<input type="text" name="telefone" class="campoDeEntrada" value="<?php echo $telefone;?>" placeholder="telefone" maxlength="<?php echo MAX_CHAR_TELEFONE;?>">
<?php verificaMsgECriaBalao($msgErroTelefone, "balaoMsg erro");?>
<input type="text" name="endereco" class="campoDeEntrada" value="<?php echo $endereco;?>" placeholder="endereço" maxlength="<?php echo MAX_CHAR_ENDERECO;?>">
<?php verificaMsgECriaBalao($msgErroEndereco, "balaoMsg erro");?>
<input type="password" name="senha" class="campoDeEntrada" placeholder="digite a sua senha para confirmar as alterações" required>
<?php verificaMsgECriaBalao($msgErroSenha, "balaoMsg erro");?>
<br><input type="submit" name="botaoEnviarDados" value="Efetuar Alterações">
</form>
<a href="editarSenha.php"><button type="button" class="botao botaoCadastrese">Alterar Senha</button></a>
<br><a href="deletarConta.php"><button type="button" class="botao excluirConta">Excluir Conta</button></a>
</div>
</div>
<?php
} else {
apresentaTelaDeErro($msgErroGeral);
}
?>
</body>
</html>