-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanter_participante.php
363 lines (295 loc) · 10.5 KB
/
manter_participante.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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="teamup.css">
</head>
<body>
<header>
<a id="logo-topo" href=index.php><img src="images/logo.jpg" width="246" height="70" border="0"></a>
<a id="createNew" class="botao-topo"'><img src="images/list%20(1).png" width="40" height="40" border="0"></a>
<a class="botao-topo" href=lista_eventos.php?cdesp=0><img src="images/veja%20todos%20os%20eventos%20disponiveis2.png"></a>
<a class="botao-topo" href=form_eventos.php><img src="images/crie%20seu%20evento2.png"></a>
</header>
<hr width="85%">
<?php
/*-------------------------------------------------------------------------------------*/
/*obtem os parâmetros passados pelo metodo POST*/
/*-------------------------------------------------------------------------------------*/
if(isset($_POST["nmpart"])) $nmpart = $_POST["nmpart"]; else $nmevt = "VAZIO";
if(isset($_POST["empart"])) $empart = $_POST["empart"]; else $empart = "VAZIO";
if(isset($_POST["telpart"])) $telpart = $_POST["telpart"]; else $telpart = "VAZIO";
if(isset($_POST["cdevt"])) $cdevt = $_POST["cdevt"]; else $cdevt = "VAZIO";
insere_participante($cdevt, $nmpart, $empart, $telpart);
?>
<?php
Function insere_participante($cdevt, $nmpart, $empart, $telpart)
{
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
// verifica se há vagas para inscrição no evento
$qtdvagas=Get_numero_vagas($cdevt);
if($qtdvagas > 0 )
{
// verifica se o email do atleta já esta inserido na tabela de atletas, senão insere os dados nessa tabela
if (!$cdatl=Get_codigo_atleta($empart))
$cdatl=Insere_atleta($empart, $nmpart, $telpart);
// insere um registro na tabela de relacionamento entre eventos e atletas participantes
if( $res=Set_participante_evento($cdatl, $cdevt))
{
echo"<p> Inscrição efetuada com sucesso.";
Set_numero_vagas($cdevt);
if (Atingiu_quorum_minimo($cdevt))
Envia_email_confirmacao($cdevt);
}
else
echo"<p> Inscrição não efetuada. Verifique se o atleta já está inscrito no evento.";
}
else
echo "<p>O numero máximo de participantes para esse evento já foi atingido.";
echo "<hr width=\"85%\">";
echo "<p><a href=.\detalha_evento.php?cdevt=$cdevt> Voltar para a página do evento </a>";
}
//--------------------------------------------
function Envia_email_confirmacao($cdevt){
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
if($cdevt>0)
{
$query="SELECT a.nm_evnt, a.lc_evnt, DATE_FORMAT(a.dt_evnt, '%d/%m') as dt_evnt, a.hr_evnt, b.email_atlt FROM eventos a, atletas b, atlt_prtc_evnt c WHERE a.cd_evnt = c.cd_evnt and b.cd_atlt=c.cd_atlt and a.cd_evnt=$cdevt ";
$link = mysqli_connect($host, $user, $pw, $db);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$rs=mysqli_query($link, $query);
$nlinha=0;
$to="";
while ($row = $rs->fetch_assoc()) {
if($nlinha>0)
$to=$to . ", ";
else{
$nmevt=$row["nm_evnt"];
$lcevt=$row["lc_evnt"];
$dtevt=$row["dt_evnt"];
$hrevt=$row["hr_evnt"];
}
$to=$to . $row["email_atlt"];
$nlinha++;
}
envia_email($cdevt, $to, $nmevt, $lcevt, $dtevt, $hrevt);
}
else
echo "Não localizado o código do evento.";
return true;
}
//----------------------------------------------
function envia_email($cdevt, $emprt, $nmevt, $lcevt, $dtevt, $hrevt){
$from = "[email protected]";
$to = $emprt;
$text = trim($emprt);
$textAr = explode("\n", $text);
$textAr = array_filter($textAr, 'trim'); // remove any extra \r characters left behind
$subject = "TeamUP - Evento confirmado: $nmevt";
$message = '<html>
<head>
<title>O evento $nmevt está confirmado e sua participação está garantida!'.$nmevt.'</title>
</head>
<body>
<p>Evento confirmado:<strong>'.$nmevt.'</strong></p>
<table>
<tr>
<td>Data do evento: </td><td>'.$dtevt.'</td>
</tr>
<tr>
<td>Local do evento: </td><td>'.$lcevt.'</td>
</tr>
</table>
<p>Para mais detalhes sobre o evento, clique <a href="http://team-up.000webhostapp.com/detalha_evento.php?cdevt='.$cdevt.'">aqui</a>.</p>
</body>
</html>
';
printf($message);
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$headers .= 'From: TeamUp <[email protected]>' . "\r\n";
Mail ($to, $subject, $message, $headers);
Echo "A mensagem de e-mail foi enviada.";
}
//--------------------------------------------
function Atingiu_quorum_minimo($cdevt)
{
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
$res=false;
$query="SELECT qt_prtc_insc, qt_prtc_min from eventos where cd_evnt=$cdevt";
//echo "<p> $query";
$link = mysqli_connect($host, $user, $pw, $db);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$rs=mysqli_query($link, $query);
if($rs)
{
$row = $rs->fetch_row();
$qtinsc=$row[0];
$qtmin=$row[1];
$res=$qtinsc>=$qtmin;
}
else {
//erro na execução da query
printf ("<p>Erro na execução da query para localizar o atleta na tabela - É preciso fazer a inscrição");
// $cdatlt=insere_atleta($empart, $nmpart, $telpart);
}
mysqli_close($link);
return ($res);
}
//--------------------------------------------
Function Get_codigo_atleta($empart)
{
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
$query="SELECT cd_atlt from atletas where email_atlt = \"$empart\"";
//echo "<p> $query";
$link = mysqli_connect($host, $user, $pw, $db);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$rs=mysqli_query($link, $query);
if($rs)
{
$row = $rs->fetch_row();
$cdatlt=$row[0];
}
else {
//erro na execução da query
printf ("<p>Erro na execução da query para localizar o atleta na tabela - É preciso fazer a inscrição");
// $cdatlt=insere_atleta($empart, $nmpart, $telpart);
}
mysqli_close($link);
//echo "<p>Resultado: $cdatlt";
return $cdatlt;
}
Function Insere_atleta($empart, $nmpart, $telpart)
{
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
$query="INSERT into atletas(email_atlt, nm_atlt, tel_atlt) VALUES (\"$empart\", \"$nmpart\", \"$telpart\")";
//echo "<p> $query";
$link = mysqli_connect($host, $user, $pw, $db);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$rs=mysqli_query($link, $query);
if($rs){
printf ("<p>Atleta inserido com sucesso");
$cdatlt=Get_codigo_atleta($empart);
}
else {
printf ("<p>Falha na inserção do atleta - codigo: %b", $rs);
$result=false;
$cdatlt=null;
}
mysqli_close($link);
return $cdatlt;
}
Function Get_numero_vagas($cdevt)
{
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
$query="SELECT qt_prtc_insc, qt_prtc_max from eventos where cd_evnt = $cdevt";
//echo "<p> $query";
$link = mysqli_connect($host, $user, $pw, $db);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$rs=mysqli_query($link, $query);
if($rs)
{
$row = $rs->fetch_row();
$qt_prtc_insc=$row[0];
$qt_prtc_max=$row[1];
// echo "<p> Quantidade de participantes: Max= $qt_prtc_max / Inscritos= $qt_prtc_insc";
$qtvagas=($qt_prtc_insc < $qt_prtc_max);
}
else {
//inserir o registro na tabela
printf ("<p>Não foi possivel verificar o numero de participantes");
$qtvagas=0;
}
mysqli_close($link);
return $qtvagas;
}
Function Set_participante_evento($cdatlt, $cdevt)
{
$result=true;
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
$query="INSERT into atlt_prtc_evnt(cd_atlt, cd_evnt) VALUES ($cdatlt, $cdevt)";
//echo "<p> $query";
$link = mysqli_connect($host, $user, $pw, $db);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$rs=mysqli_query($link, $query);
if($rs)
printf ("<p>Participante inserido com sucesso");
else {
printf ("<p>Falha na inserção do participante - codigo: %b", $rs);
$result=false;
}
mysqli_close($link);
return $result;
}
Function Set_numero_vagas($cdevt)
{
$result=true;
$host="localhost";
$user="id3200529_admin";
$pw="teamup";
$db="id3200529_teamup";
$query="UPDATE eventos set qt_prtc_insc = qt_prtc_insc + 1 where cd_evnt=$cdevt";
$link = mysqli_connect($host, $user, $pw, $db);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$rs=mysqli_query($link, $query);
if($rs)
printf ("<p>Numero de participantes atualizado com sucesso");
else {
printf ("<p>Falha na atualização do numero de participantes - codigo: %b", $rs);
$result=false;
}
mysqli_close($link);
return $result;
}
?>
</body>
</html>