mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 08:38:42 +00:00
124 lines
3.9 KiB
PHP
124 lines
3.9 KiB
PHP
<?php
|
|
requirePHPLib('form');
|
|
|
|
use Gregwar\Captcha\PhraseBuilder;
|
|
|
|
$forgot_form = new UOJBs4Form('forgot');
|
|
$forgot_form->addInput(
|
|
'username',
|
|
'text',
|
|
'用户名',
|
|
'',
|
|
function ($username, &$vdata) {
|
|
if (!validateUsername($username)) {
|
|
return '用户名不合法';
|
|
}
|
|
$vdata['user'] = UOJUser::query($username);
|
|
if (!$vdata['user']) {
|
|
return '该用户不存在';
|
|
}
|
|
return '';
|
|
},
|
|
null
|
|
);
|
|
$forgot_form->appendHTML(<<<EOD
|
|
<div id="div-captcha" class="form-group">
|
|
<label for="input-captcha" class="col-sm-2 control-label">验证码</label>
|
|
<div class="col-sm-3" style="max-width: 60%">
|
|
<input type="text" class="form-control" id="input-captcha" name="captcha" placeholder="请输入验证码" maxlength="20" style="display: inline-block; width: 12em;" />
|
|
<div style="display: inline-block; margin-left: 8px; position: relative; top: -2px; cursor: pointer;">
|
|
<img id="captcha" src="" />
|
|
</div>
|
|
<span class="help-block" id="help-captcha" style="display: block"></span>
|
|
</div>
|
|
</div>
|
|
EOD);
|
|
$forgot_form->handle = function (&$vdata) {
|
|
$user = $vdata['user'];
|
|
$password = $user["password"];
|
|
|
|
if (!isset($_SESSION['phrase']) || !PhraseBuilder::comparePhrases($_SESSION['phrase'], $_POST['captcha'])) {
|
|
becomeMsgPage('验证码错误!');
|
|
}
|
|
|
|
if (!$user['email']) {
|
|
becomeMsgPage('用户未填写邮件地址,请联系管理员重置!');
|
|
}
|
|
|
|
$oj_name = UOJConfig::$data['profile']['oj-name'];
|
|
$oj_name_short = UOJConfig::$data['profile']['oj-name-short'];
|
|
$check_code = md5($user['username'] . "+" . $password . '+' . UOJTime::$time_now_str);
|
|
$sufs = base64url_encode($user['username'] . "." . $check_code);
|
|
$url = HTML::url("/reset-password", ['params' => ['p' => $sufs]]);
|
|
$oj_url = HTML::url('/');
|
|
$name = $user['username'];
|
|
$remote_addr = UOJContext::remoteAddr();
|
|
$http_x_forwarded_for = UOJContext::httpXForwardedFor();
|
|
$user_agent = UOJContext::httpUserAgent();
|
|
|
|
if ($user['realname']) {
|
|
$name .= ' (' . $user['realname'] . ')';
|
|
}
|
|
|
|
$html = <<<EOD
|
|
<base target="_blank" />
|
|
|
|
<p>{$name} 您好,</p>
|
|
|
|
<p>您最近告知我们需要重置您在 {$oj_name_short} 上账号的密码。请访问以下链接:<a href="{$url}">{$url}</a> (如果无法点击链接,请试着复制链接并粘贴至浏览器中打开。)</p>
|
|
<p>如果您没有请求重置密码,则忽略此信息。该链接将在 72 小时后自动过期失效。</p>
|
|
|
|
<ul>
|
|
<li><small>请求 IP: {$remote_addr} (转发来源: {$http_x_forwarded_for})</small></li>
|
|
<li><small>用户代理: {$user_agent}</small></li>
|
|
</ul>
|
|
|
|
<p>{$oj_name}</p>
|
|
<p><a href="{$oj_url}">{$oj_url}</a></p>
|
|
EOD;
|
|
|
|
$mailer = UOJMail::noreply();
|
|
$mailer->addAddress($user['email'], $user['username']);
|
|
$mailer->Subject = $oj_name_short . " 密码找回";
|
|
$mailer->msgHTML($html);
|
|
if (!$mailer->send()) {
|
|
error_log($mailer->ErrorInfo);
|
|
becomeMsgPage('<div class="text-center"><h2>邮件发送失败,请重试!</h2></div>');
|
|
} else {
|
|
DB::update([
|
|
"update user_info",
|
|
"set", [
|
|
'extra' => DB::json_set('extra', '$.reset_password_check_code', $check_code, '$.reset_password_time', UOJTime::$time_now_str),
|
|
],
|
|
"where", [
|
|
"username" => $user['username'],
|
|
],
|
|
]);
|
|
|
|
becomeMsgPage('<div class="text-center"><h2>邮件发送成功,请检查收件箱!</h2><span>如果邮件未出现在收件箱中,请检查垃圾箱。</span></div>');
|
|
}
|
|
};
|
|
$forgot_form->submit_button_config['align'] = 'offset';
|
|
|
|
$forgot_form->runAtServer();
|
|
?>
|
|
<?php echoUOJPageHeader('找回密码') ?>
|
|
<h2 class="page-header">找回密码</h2>
|
|
<h4>请输入需要找回密码的用户名:</h4>
|
|
<?php $forgot_form->printHTML(); ?>
|
|
<script>
|
|
function refreshCaptcha() {
|
|
var timestamp = new Date().getTime();
|
|
$("#captcha").attr("src", "/captcha" + '?' + timestamp);
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
refreshCaptcha();
|
|
|
|
$("#captcha").click(function(e) {
|
|
refreshCaptcha();
|
|
});
|
|
});
|
|
</script>
|
|
<?php echoUOJPageFooter() ?>
|