-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiel.php
116 lines (97 loc) · 5.39 KB
/
profiel.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
<?php
use Webdevils\Spelcodes\ExitException;
error_reporting(E_ALL & ~E_DEPRECATED);
session_start();
/* Classes importeren */
include_once('Classes/User.php');
include_once('Classes/Template.php');
/* Includes importeren */
include_once('Includes/connect.php');
include_once('Includes/slashes.php');
/* Classes initialiseren */
$cUser = new User();
$cTPL = new Template('Templates/main.tpl');
/* Verbinding met database maken */
connectDB();
/* Inloggen */
include('Includes/login.php');
try {
if (!(($cUser->checkSession()) || ($cUser->checkCookie()))) {
header('Http/1.0 404 Not Found');
} else {
/* Controleren of het formulier is verzonden */
if (isset($_POST['username']) && isset($_POST['wachtwoord'])) {
$sQuery = "SELECT userid FROM users WHERE username='" . add($_POST['username']) . "' AND password=SHA2('" . add($_POST['wachtwoord']) . "', 0);";
if ($cResult = mysql_query($sQuery)) {
if (mysql_num_rows($cResult) <= 0) {
header('Location: profiel.php?error=Je wachtwoord en/of gebruikersnaam klopt niet');
throw new ExitException();
}
$aData = mysql_fetch_assoc($cResult);
if ($aData['userid'] != $cUser->m_iUserid) {
header('Location: profiel.php?error=Je wachtwoord en/of gebruikersnaam klopt niet');
throw new ExitException();
}
/* Alle controles zijn uitgevoerd, nu kijken of de persoon wachtwoord wil veranderen */
if (!empty($_POST['wachtwoord_nieuw1']) && !empty($_POST['wachtwoord_nieuw2'])) {
if ($_POST['wachtwoord_nieuw1'] != $_POST['wachtwoord_nieuw2']) {
header('Location: profiel.php?error=De twee nieuwe wachtwoorden komen niet overeen');
throw new ExitException();
}
/* Het nieuwe wachtwoord opslaan */
$sQuery = "UPDATE users SET password=SHA2('" . add($_POST['wachtwoord_nieuw1']) . "', 0) WHERE userid='" . add($cUser->m_iUserid) . "';";
if (!mysql_query($sQuery)) {
header('Location: profiel.php?error=Er is een probleem met de database');
throw new ExitException();
}
}
/* Controleren of de persoon zijn email wil veranderen */
if (!empty($_POST['email'])) {
$sQuery = "SELECT userid FROM users WHERE email='" . add($_POST['email']) . "';";
if (!$cResult = mysql_query($sQuery)) {
header('Location: profiel.php?error=Er is een probleem met de database');
throw new ExitException();
}
if (mysql_num_rows($cResult) > 0) {
header('Location: profiel.php?error=Het email adres is al in gebruik');
throw new ExitException();
}
$sQuery = "UPDATE users SET email='" . add($_POST['email']) . "', activate=0 WHERE userid='" . add($cUser->m_iUserid) . "';";
if (!mysql_query($sQuery)) {
header('Location: profiel.php?error=Er is een probleem met de database');
throw new ExitException();
} else {
$sQuery = "SELECT username FROM users WHERE userid='" . add($cUser->m_iUserid) . "';";
if ($cResult = mysql_query($sQuery)) {
$aData = mysql_fetch_assoc($cResult);
$sSubject = 'Verandering van email bij Spelcodes';
$sBericht = "Beste, " . strip($aData['username']) . "\nJij of iemand anders heeft het email adres bij zijn account veranderd naar " . add($_POST['email']) . ".\nJe account is door deze verandering tijdelijk gedeactiveerd. Klik op de volgende link om het weer te activeren:\nhttp://www.spelcodes.nl/reg.php?id=" . base64_encode($cUser->m_iUserid) . "\n\nMet vriendelijke groeten,\nHet webmaster team van Spelcodes";
mail(trim($_POST['email']), $sSubject, $sBericht);
} else {
header('Location: profiel.php?error=Er is iets fout gegaan bij het verzenden van een herregistratie mail');
}
}
}
/* Terug naar profiel pagina sturen */
header('Location: profiel.php?error=Je profiel is met succes gewijzigd');
throw new ExitException();
} else {
header('Location: profiel.php?error=Er is een probleem met de database');
throw new ExitException();
}
} else {
$cTPL->setPlace('TITEL', 'Profiel bewerken');
$cTPL->setFile('CONTENT', 'Templates/profiel.tpl');
$cTPL->parse();
if (isset($_GET['error'])) {
$cTPL->setPlace('ERROR', $_GET['error']);
}
$sQuery = "SELECT username FROM users WHERE userid='" . add($cUser->m_iUserid) . "';";
if ($cResult = mysql_query($sQuery)) {
$aData = mysql_fetch_assoc($cResult);
$cTPL->setPlace('USERNAME', $aData['username']);
}
}
$cTPL->show();
}
} catch (ExitException $e) {}