-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset_password.php
212 lines (175 loc) · 8.76 KB
/
reset_password.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
<?php
/**
* @copyright Copyright (c) 2024, KUTBU
*
* @author Muhammed Yalçınkaya <muhammed.yalcinkaya@kutbu.com>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
global $db, $showErrors, $siteName, $siteShortName, $siteUrl, $config;
// Hata mesajlarını göster veya gizle ve ilgili işlemleri gerçekleştir
$showErrors ? ini_set('display_errors', 1) : ini_set('display_errors', 0);
$showErrors ? ini_set('display_startup_errors', 1) : ini_set('display_startup_errors', 0);
require_once(__DIR__ . '/config/db_connection.php');
require_once(__DIR__ . '/vendor/autoload.php');
require_once(__DIR__ . '/config/config.php');
require_once(__DIR__ . '/src/functions.php');
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
$option = getConfigurationFromDatabase($db);
extract($option, EXTR_IF_EXISTS);
// Oturum kontrolü
session_start();
session_regenerate_id(true);
$errors = array(); // Hata mesajlarını tutacak dizi
if (isset($_POST["reset_request"])) {
// Şifre sıfırlama talebi gönderildiğinde
$email = filter_input(INPUT_POST, 'email', FILTER_VALIDATE_EMAIL);
if ($email === false) {
$errors[] = "Geçersiz e-posta adresi.";
}
// reCAPTCHA token'ını alma
$recaptchaToken = $_POST['recaptcha_response'] ?? '';
// reCAPTCHA doğrulama
$recaptchaVerify = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=" . $option['recaptcha_secret_key'] . "&response={$recaptchaToken}");
$recaptchaResponse = json_decode($recaptchaVerify);
// reCAPTCHA doğrulaması başarısızsa işlemi reddet
if (!$recaptchaResponse->success) {
$errors[] = "reCAPTCHA doğrulaması başarısız. İşlem reddedildi.";
}
// Veritabanında kullanıcıyı e-posta adresine göre ara
$query = "SELECT * FROM users WHERE email = ?";
$stmt = $db->prepare($query);
$stmt->execute([$email]);
$user = $stmt->fetch(PDO::FETCH_ASSOC);
if ($user) {
// Şifre sıfırlama için token oluştur
$token = bin2hex(random_bytes(32));
$tokenExpiry = date("Y-m-d H:i:s", strtotime("+1 hour"));
// Token'ı ve süresini veritabanına kaydet
$updateQuery = "UPDATE users SET reset_token = ?, reset_token_expiry = ? WHERE id = ?";
$updateStmt = $db->prepare($updateQuery);
$updateStmt->execute([$token, $tokenExpiry, $user["id"]]);
// Token ile şifre sıfırlama bağlantısı oluştur
$resetLink = "reset_password.php?token=" . $token;
// E-posta gönderme işlemi
$mail = new PHPMailer(true);
try {
// SMTP ayarları
$mail->isSMTP();
$mail->Host = $config['smtp']['host'];
$mail->SMTPAuth = true;
$mail->Username = $config['smtp']['username'];
$mail->Password = $config['smtp']['password'];
$mail->SMTPSecure = $config['smtp']['encryption'];
$mail->Port = $config['smtp']['port'];
$mail->CharSet = $config['smtp']['mailCharset'];
$mail->ContentType = $config['smtp']['mailContentType'];
// E-posta ayarları
$mail->setFrom($config['smtp']['username'], $siteName);
$mail->addAddress($email, $user["first_name"]); // Alıcı adresi ve adı
$mail->isHTML(true);
$mail->Subject = '=?UTF-8?B?' . base64_encode('Şifre Sıfırlama Talebi') . '?='; // Encode subject in UTF-8
$mail->Body = "
<html>
<body>
<p>👋 Selam,</p>
<p>🧐 Eğer bu şifre sıfırlama isteğini sen talep ettiysen, <a href='{$siteUrl}/{$resetLink}'>şifreni sıfırlamak için tıkla</a>.</p>
<p>Sen talep etmediysen farklı bir işlem yapmana gerek yok.</p>
<p>Müzik dolu günler dileriz 🎸🎹</p>
</body>
</html>
";
$mail->send();
$successMessage = "Şifre sıfırlama bağlantısı e-posta adresinize gönderildi.";
} catch (Exception $e) {
$errors[] = "E-posta gönderilirken bir hata oluştu: {$mail->ErrorInfo}";
}
} else {
$errors[] = "Bu e-posta adresine sahip bir kullanıcı bulunamadı.";
}
} elseif (isset($_GET["token"])) {
// Token ile gelen şifre sıfırlama isteği
$token = filter_input(INPUT_GET, 'token', FILTER_SANITIZE_STRING);
if ($token === false) {
$errors[] = "Geçersiz token.";
}
// Token'ın geçerliliğini kontrol et
$query = "SELECT * FROM users WHERE reset_token = ? AND reset_token_expiry >= NOW()";
$stmt = $db->prepare($query);
$stmt->execute([$token]);
$user = $stmt->fetch(PDO::FETCH_ASSOC);
if ($user) {
// Form gönderildiğinde yeni şifreyi güncelle
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$newPassword = filter_input(INPUT_POST, 'new_password', FILTER_SANITIZE_STRING);
if ($newPassword === false) {
$errors[] = "Geçersiz şifre.";
}
$hashedPassword = password_hash($newPassword, PASSWORD_DEFAULT);
// Şifreyi güncelle
$updateQuery = "UPDATE users SET password = ?, reset_token = NULL, reset_token_expiry = NULL WHERE id = ?";
$updateStmt = $db->prepare($updateQuery);
$updateStmt->execute([$hashedPassword, $user["id"]]);
$successMessage = "Şifreniz başarıyla güncellendi ve oturum açma ekranına yönlendiriliyorsunuz...";
header("refresh:3;url=login.php"); // 3 saniye sonra index.php'ye yönlendirme
}
} else {
$errors[] = "Geçersiz ya da süresi dolmuş bir şifre sıfırlama bağlantısı.";
}
}
require_once(__DIR__ . '/user/partials/header.php');
?>
<main class="form-signin w-100 m-auto">
<?php
foreach ($errors as $error) {
echo "<div id='error-alert' class='alert alert-danger' role='alert'>$error</div>";
}
if (isset($successMessage)) {
echo "<div id='success-alert' class='alert alert-success' role='alert'>$successMessage</div>";
}
?>
<img id="logo-body" class="mb-5 mt-5" src="/assets/brand/default_logo_dark.png" alt="<?php echo $siteName ?>" title="<?php echo $siteName ?>" width="80%" height="80%">
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<?php if (!isset($_GET["token"])): ?>
<!-- Şifre sıfırlama talebi gönderme formu -->
<form method="post" action="">
<label class="form-label" for="email">E-posta:</label><br>
<input class="form-control" type="email" id="email" name="email" placeholder="<?= translate('your_email', $selectedLanguage) ?>" required><br>
<p class="mb-4"><small><?= translate('lost_password_description', $selectedLanguage) ?></small></p>
<!-- reCAPTCHA v3 için gizli alan -->
<input type="hidden" name="recaptcha_response" id="recaptcha_response">
<div class="form-group mt-3">
<button class="btn btn-primary w-100 py-2" name="reset_request" type="submit">
<i class="fas fa-sign-in-alt"></i> Şifre Sıfırlama Talebi Gönder
</button>
</div>
<div class="form-group mt-2">
<a href="<?php echo htmlspecialchars($siteUrl, ENT_QUOTES, 'UTF-8') ?>" class="btn btn-secondary w-100 py-2">
<i class="fas fa-home"></i> <?php echo htmlspecialchars($siteName, ENT_QUOTES, 'UTF-8') ?> - <?php echo htmlspecialchars($siteShortName, ENT_QUOTES, 'UTF-8') ?>
</a>
</div>
</form>
<?php else: ?>
<!-- Yeni şifre belirleme formu -->
<form method="post" action="">
<label class="form-label" for="new_password">Yeni Şifre:</label><br>
<input class="form-control" type="password" id="new_password" name="new_password" required><br>
<input type="submit" class="btn btn-primary" value="Şifreyi Güncelle">
</form>
<?php endif; ?>
</div>
</main>
<?php require_once(__DIR__ . '/user/partials/footer.php'); ?>