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
|
|
|
|
|
|
|
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-28 10:05:21 +08:00
|
|
|
use Session;
|
2016-09-04 15:35:12 +08:00
|
|
|
use App\Models\User;
|
|
|
|
use App\Models\UserModel;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Exceptions\PrettyPageException;
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
class AuthController extends Controller
|
2016-07-21 22:01:57 +08:00
|
|
|
{
|
|
|
|
public function login()
|
|
|
|
{
|
2016-08-28 10:05:21 +08:00
|
|
|
return view('auth.login');
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
public function handleLogin(Request $request)
|
2016-07-21 22:01:57 +08:00
|
|
|
{
|
2016-09-03 23:50:55 +08:00
|
|
|
$this->validate($request, [
|
2016-10-02 20:30:27 +08:00
|
|
|
'identification' => 'required',
|
|
|
|
'password' => 'required|min:6|max:16'
|
2016-09-03 23:50:55 +08:00
|
|
|
]);
|
|
|
|
|
2016-10-02 20:30:27 +08:00
|
|
|
$identification = $request->input('identification');
|
|
|
|
|
|
|
|
$auth_type = (validate($request->input('identification'), 'email')) ? "email" : "username";
|
2016-09-03 23:50:55 +08:00
|
|
|
|
2016-08-16 13:27:06 +08:00
|
|
|
// instantiate user
|
2016-10-02 20:30:27 +08:00
|
|
|
$user = new User(null, [$auth_type => $identification]);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-08-28 10:05:21 +08:00
|
|
|
if (session('login_fails', 0) > 3) {
|
2016-09-03 23:50:55 +08:00
|
|
|
if (strtolower($request->input('captcha')) != strtolower(session('phrase')))
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.validation.captcha'), 1);
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$user->is_registered) {
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.validation.user'), 2);
|
2016-07-21 22:01:57 +08:00
|
|
|
} else {
|
2016-09-03 23:50:55 +08:00
|
|
|
if ($user->checkPasswd($request->input('password'))) {
|
|
|
|
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
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
$time = $request->input('keep') == true ? 86400 : 3600;
|
2016-08-16 22:52:00 +08:00
|
|
|
|
|
|
|
setcookie('uid', $user->uid, time()+$time, '/');
|
|
|
|
setcookie('token', $user->getToken(), time()+$time, '/');
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-10-02 20:30:27 +08:00
|
|
|
return json(trans('auth.login.success'), 0, [
|
2016-07-21 22:01:57 +08:00
|
|
|
'token' => $user->getToken()
|
|
|
|
]);
|
|
|
|
} else {
|
2016-10-02 20:30:27 +08:00
|
|
|
Session::put('login_fails', session('login_fails', 0) + 1);
|
2016-08-16 13:27:06 +08:00
|
|
|
|
2016-10-02 20:30:27 +08:00
|
|
|
return json(trans('auth.validation.password'), 1, [
|
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')) {
|
2016-08-26 13:22:48 +08:00
|
|
|
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-09-28 17:48:37 +08:00
|
|
|
Session::regenerate();
|
2016-08-16 22:52:00 +08:00
|
|
|
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.logout.success'), 0);
|
2016-07-21 22:01:57 +08:00
|
|
|
} else {
|
2016-10-06 17:57:07 +08:00
|
|
|
return json(trans('auth.logout.fail'), 1);
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function register()
|
|
|
|
{
|
2016-07-27 18:31:59 +08:00
|
|
|
if (Option::get('user_can_register') == 1) {
|
2016-08-28 10:05:21 +08:00
|
|
|
return view('auth.register');
|
2016-07-27 18:31:59 +08:00
|
|
|
} else {
|
2016-09-15 09:20:02 +08:00
|
|
|
throw new PrettyPageException(trans('auth.register.close'), 7);
|
2016-07-27 18:31:59 +08:00
|
|
|
}
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
public function handleRegister(Request $request)
|
2016-07-21 22:01:57 +08:00
|
|
|
{
|
2016-09-03 23:50:55 +08:00
|
|
|
if (strtolower($request->input('captcha')) != strtolower(session('phrase')))
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.validation.captcha'), 1);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
$this->validate($request, [
|
|
|
|
'email' => 'required|email',
|
|
|
|
'password' => 'required|min:8|max:16',
|
|
|
|
'nickname' => 'required|nickname|max:255'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user = new User(null, ['email' => $request->input('email')]);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
|
|
|
if (!$user->is_registered) {
|
|
|
|
if (Option::get('user_can_register') == 1) {
|
2016-09-03 23:50:55 +08:00
|
|
|
$ip = get_real_ip();
|
|
|
|
|
|
|
|
// 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'))
|
|
|
|
{
|
|
|
|
// register new user
|
|
|
|
$user = $user->register($request->input('password'), $ip);
|
|
|
|
$user->setNickName($request->input('nickname'));
|
|
|
|
|
|
|
|
// set cookies
|
|
|
|
setcookie('uid', $user->uid, time() + 3600, '/');
|
|
|
|
setcookie('token', $user->getToken(), time() + 3600, '/');
|
|
|
|
|
2016-09-10 21:39:45 +08:00
|
|
|
return json([
|
2016-09-03 23:50:55 +08:00
|
|
|
'errno' => 0,
|
2016-09-15 09:20:02 +08:00
|
|
|
'msg' => trans('auth.register.success'),
|
2016-09-03 23:50:55 +08:00
|
|
|
'token' => $user->getToken()
|
|
|
|
]);
|
|
|
|
|
|
|
|
} else {
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.register.max', ['regs' => Option::get('regs_per_ip')]), 7);
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
} else {
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.register.close'), 7);
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
} else {
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.register.registered'), 5);
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function forgot()
|
|
|
|
{
|
2016-09-03 23:50:55 +08:00
|
|
|
if (config('mail.host') != "") {
|
2016-08-28 10:05:21 +08:00
|
|
|
return view('auth.forgot');
|
2016-08-06 19:12:39 +08:00
|
|
|
} else {
|
2016-09-15 09:20:02 +08:00
|
|
|
throw new PrettyPageException(trans('auth.forgot.close'), 8);
|
2016-08-06 19:12:39 +08:00
|
|
|
}
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
public function handleForgot(Request $request)
|
2016-07-21 22:01:57 +08:00
|
|
|
{
|
2016-09-03 23:50:55 +08:00
|
|
|
if (strtolower($request->input('captcha')) != strtolower(session('phrase')))
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.validation.captcha'), 1);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
if (config('mail.host') == "")
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.forgot.close'), 1);
|
2016-08-06 19:12:39 +08:00
|
|
|
|
2016-09-04 16:15:11 +08:00
|
|
|
if (Session::has('last_mail_time') && (time() - session('last_mail_time')) < 60)
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.forgot.frequent-mail'), 1);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
$user = new User(null, ['email' => $request->input('email')]);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
|
|
|
if (!$user->is_registered)
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.forgot.unregistered'), 1);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
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";
|
|
|
|
|
2016-09-04 16:15:11 +08:00
|
|
|
try {
|
|
|
|
Mail::send('auth.mail', ['reset_url' => $url], function ($m) use ($request) {
|
|
|
|
$site_name = Option::get('site_name');
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-04 16:15:11 +08:00
|
|
|
$m->from(config('mail.username'), $site_name);
|
2016-09-15 09:20:02 +08:00
|
|
|
$m->to($request->input('email'))->subject(trans('auth.mail.title', ['sitename' => $site_name]));
|
2016-09-04 16:15:11 +08:00
|
|
|
});
|
|
|
|
} catch(\Exception $e) {
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.mail.failed', ['msg' => $e->getMessage()]), 2);
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
|
2016-09-04 16:15:11 +08:00
|
|
|
Session::put('last_mail_time', time());
|
|
|
|
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.mail.success'), 0);
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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-09-15 09:20:02 +08:00
|
|
|
return redirect('auth/forgot')->with('msg', trans('auth.reset.invalid'));
|
2016-07-21 22:01:57 +08:00
|
|
|
|
|
|
|
$token = substr(base64_decode($_GET['token']), 0, -22);
|
|
|
|
|
|
|
|
if ($user->getToken() != $token) {
|
2016-09-15 09:20:02 +08:00
|
|
|
return redirect('auth/forgot')->with('msg', trans('auth.reset.invalid'));
|
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-09-15 09:20:02 +08:00
|
|
|
return redirect('auth/forgot')->with('msg', trans('auth.reset.expired'));
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
|
2016-09-04 16:15:11 +08:00
|
|
|
return view('auth.reset')->with('user', $user);
|
2016-07-21 22:01:57 +08:00
|
|
|
} else {
|
2016-09-15 09:20:02 +08:00
|
|
|
return redirect('auth/login')->with('msg', trans('auth.check.anonymous'));
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
public function handleReset(Request $request)
|
2016-07-21 22:01:57 +08:00
|
|
|
{
|
2016-09-03 23:50:55 +08:00
|
|
|
$this->validate($request, [
|
|
|
|
'uid' => 'required|integer',
|
|
|
|
'password' => 'required|min:8|max:16',
|
|
|
|
]);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
$user = new User($request->input('uid'));
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-03 23:50:55 +08:00
|
|
|
$user->changePasswd($request->input('password'));
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-15 09:20:02 +08:00
|
|
|
return json(trans('auth.reset.success'), 0);
|
2016-07-21 22:01:57 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
}
|