blessing-skin-server/app/Http/Controllers/AuthController.php

234 lines
7.5 KiB
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
<?php
2016-08-28 10:05:21 +08:00
namespace App\Http\Controllers;
2016-07-21 22:01:57 +08:00
2016-08-28 10:05:21 +08:00
use Illuminate\Routing\Controller as BaseController;
2016-07-21 22:01:57 +08:00
use App\Models\User;
use App\Models\UserModel;
use App\Exceptions\PrettyPageException;
2016-08-06 21:53:55 +08:00
use Validate;
2016-07-21 22:01:57 +08:00
use Mail;
use View;
2016-08-06 19:38:37 +08:00
use Utils;
2016-07-21 22:01:57 +08:00
use Option;
2016-08-16 13:27:06 +08:00
use Http;
2016-08-28 10:05:21 +08:00
use Session;
2016-07-21 22:01:57 +08:00
class AuthController extends BaseController
{
public function login()
{
2016-08-28 10:05:21 +08:00
return view('auth.login');
2016-07-21 22:01:57 +08:00
}
public function handleLogin()
{
2016-08-16 13:27:06 +08:00
// instantiate user
2016-08-28 10:05:21 +08:00
$user = (session('auth_type') == 'email') ?
new User(null, ['email' => $_POST['email']]) :
new User(null, ['username' => $_POST['username']]);
2016-07-21 22:01:57 +08:00
2016-08-28 10:05:21 +08:00
if (session('login_fails', 0) > 3) {
if (strtolower(Utils::getValue('captcha', $_POST)) != strtolower(session('phrase')))
2016-07-21 22:01:57 +08:00
View::json('验证码填写错误', 1);
}
if (!$user->is_registered) {
View::json('用户不存在哦', 2);
} else {
if ($user->checkPasswd($_POST['password'])) {
2016-08-28 10:05:21 +08:00
session()->forget('login_fails');
2016-07-21 22:01:57 +08:00
2016-08-28 10:05:21 +08:00
Session::put('uid' , $user->uid);
Session::put('token', $user->getToken());
2016-07-21 22:01:57 +08:00
$time = $_POST['keep'] == true ? 86400 : 3600;
setcookie('uid', $user->uid, time()+$time, '/');
setcookie('token', $user->getToken(), time()+$time, '/');
2016-07-21 22:01:57 +08:00
2016-08-16 13:27:06 +08:00
View::json([
2016-07-21 22:01:57 +08:00
'errno' => 0,
'msg' => '登录成功,欢迎回来~',
'token' => $user->getToken()
]);
} else {
2016-08-28 10:05:21 +08:00
$fails = session()->has('login_fails') ? session('login_fails') + 1 : 1;
Session::put('login_fails', $fails);
2016-08-16 13:27:06 +08:00
2016-07-21 22:01:57 +08:00
View::json([
'errno' => 1,
'msg' => '邮箱或密码不对哦~',
2016-08-28 10:05:21 +08:00
'login_fails' => session('login_fails')
2016-07-21 22:01:57 +08:00
]);
}
}
}
public function logout()
{
2016-08-28 10:05:21 +08:00
if (Session::has('token')) {
setcookie('uid', '', time() - 3600, '/');
setcookie('token', '', time() - 3600, '/');
2016-08-16 13:27:06 +08:00
2016-08-28 10:05:21 +08:00
Session::flush();
2016-07-21 22:01:57 +08:00
View::json('登出成功~', 0);
} else {
View::json('并没有有效的 session', 1);
2016-07-21 22:01:57 +08:00
}
}
public function register()
{
if (Option::get('user_can_register') == 1) {
2016-08-28 10:05:21 +08:00
return view('auth.register');
} else {
throw new PrettyPageException('残念。。本皮肤站已经关闭注册咯 QAQ', 7);
}
2016-07-21 22:01:57 +08:00
}
public function handleRegister()
{
2016-08-28 10:05:21 +08:00
if (strtolower(Utils::getValue('captcha', $_POST)) != strtolower(session('phrase')))
2016-07-21 22:01:57 +08:00
View::json('验证码填写错误', 1);
$user = new User(null, ['email' => $_POST['email']]);
2016-07-21 22:01:57 +08:00
if (!$user->is_registered) {
if (Option::get('user_can_register') == 1) {
2016-08-16 13:27:06 +08:00
if (Validate::password($_POST['password'])) {
$ip = get_real_ip();
2016-08-16 13:27:06 +08:00
// If amount of registered accounts of IP is more than allowed amounts,
// then reject the register.
if (UserModel::where('ip', $ip)->count() < Option::get('regs_per_ip'))
2016-08-16 13:27:06 +08:00
{
if (Validate::nickname(Utils::getValue('nickname', $_POST)))
View::json('无效的昵称,昵称不能包含奇怪的字符', 1);
// register new user
$user = $user->register($_POST['password'], $ip);
2016-07-21 22:01:57 +08:00
$user->setNickName($_POST['nickname']);
// set cookies
setcookie('uid', $user->uid, time() + 3600, '/');
setcookie('token', $user->getToken(), time() + 3600, '/');
2016-08-16 13:27:06 +08:00
View::json([
'errno' => 0,
'msg' => '注册成功,正在跳转~',
'token' => $user->getToken()
]);
2016-07-21 22:01:57 +08:00
} else {
View::json('你最多只能注册 '.Option::get('regs_per_ip').' 个账户哦', 7);
}
}
} else {
View::json('残念。。本皮肤站已经关闭注册咯 QAQ', 7);
}
} else {
View::json('这个邮箱已经注册过啦,换一个吧', 5);
}
}
public function forgot()
{
if ($_ENV['MAIL_HOST'] != "") {
2016-08-28 10:05:21 +08:00
return view('auth.forgot');
} else {
throw new PrettyPageException('本站已关闭重置密码功能', 8);
}
2016-07-21 22:01:57 +08:00
}
public function handleForgot()
{
2016-08-28 10:05:21 +08:00
if (strtolower(Utils::getValue('captcha', $_POST)) != strtolower(session('phrase')))
2016-07-21 22:01:57 +08:00
View::json('验证码填写错误', 1);
if ($_ENV['MAIL_HOST'] == "")
View::json('本站已关闭重置密码功能', 1);
2016-08-28 10:05:21 +08:00
if (session()->has('last_mail_time') && (time() - session('last_mail_time')) < 60)
2016-07-21 22:01:57 +08:00
View::json('你邮件发送得太频繁啦,过 60 秒后再点发送吧', 1);
$user = new User(null, ['email' => $_POST['email']]);
2016-07-21 22:01:57 +08:00
if (!$user->is_registered)
View::json('该邮箱尚未注册', 1);
$mail = new Mail();
$mail->from(Option::get('site_name'))
->to($_POST['email'])
->subject('重置您在 '.Option::get('site_name').' 上的账户密码');
2016-08-16 13:27:06 +08:00
$uid = $user->uid;
2016-08-06 19:38:37 +08:00
$token = base64_encode($user->getToken().substr(time(), 4, 6).Utils::generateRndString(16));
2016-07-21 22:01:57 +08:00
2016-08-16 13:27:06 +08:00
$url = Option::get('site_url')."/auth/reset?uid=$uid&token=$token";
$mail->content(View::make('auth.mail')->with('reset_url', $url)->render());
2016-07-21 22:01:57 +08:00
2016-08-16 13:27:06 +08:00
if (!$mail->send()) {
2016-07-21 22:01:57 +08:00
View::json('邮件发送失败,详细信息:'.$mail->getLastError(), 2);
} else {
2016-08-28 10:05:21 +08:00
Session::put('last_mail_time', time());
2016-07-21 22:01:57 +08:00
View::json('邮件已发送,一小时内有效,请注意查收.', 0);
}
}
public function reset()
{
if (isset($_GET['uid']) && isset($_GET['token'])) {
2016-08-16 13:27:06 +08:00
$user = new User($_GET['uid']);
2016-07-21 22:01:57 +08:00
if (!$user->is_registered)
2016-08-29 23:08:09 +08:00
return redirect('auth/forgot')->with('msg', '无效的链接');
2016-07-21 22:01:57 +08:00
$token = substr(base64_decode($_GET['token']), 0, -22);
if ($user->getToken() != $token) {
2016-08-29 23:08:09 +08:00
return redirect('auth/forgot')->with('msg', '无效的链接');
2016-07-21 22:01:57 +08:00
}
$timestamp = substr(base64_decode($_GET['token']), strlen($token), 6);
// more than 1 hour
if ((substr(time(), 4, 6) - $timestamp) > 3600) {
2016-08-29 23:08:09 +08:00
return redirect('auth/forgot')->with('msg', '链接已过期');
2016-07-21 22:01:57 +08:00
}
2016-08-29 23:08:09 +08:00
return View::make('auth.reset')->with('user', $user);
2016-07-21 22:01:57 +08:00
} else {
2016-08-29 23:08:09 +08:00
return redirect('auth/login')->with('msg', '非法访问');
2016-07-21 22:01:57 +08:00
}
}
public function handleReset()
{
2016-08-16 13:27:06 +08:00
Validate::checkPost(['uid', 'password']);
2016-07-21 22:01:57 +08:00
2016-08-16 13:27:06 +08:00
if (Validate::password($_POST['password'])) {
$user = new User($_POST['uid']);
2016-07-21 22:01:57 +08:00
$user->changePasswd($_POST['password']);
View::json('密码重置成功', 0);
}
}
public function captcha()
{
$builder = new \Gregwar\Captcha\CaptchaBuilder;
$builder->build($width = 100, $height = 34);
2016-08-28 10:05:21 +08:00
Session::put('phrase', $builder->getPhrase());
2016-07-21 22:01:57 +08:00
$builder->output();
2016-08-29 23:08:09 +08:00
return \Response::png();
2016-07-21 22:01:57 +08:00
}
}