Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

semour / semour_web

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Find file
BlameHistoryPermalink
Switch branch/tag
  • semour_web
  • app
  • Http
  • Controllers
  • Api
  • AuthApiController.php
  • 杨树贤's avatar
    密码错误提示 · 5af5a298
    杨树贤 committed 2 years ago
    5af5a298
AuthApiController.php 8.46 KB
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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
<?php

namespace App\Http\Controllers\Api;

use App\Http\Requests\UserRegister;
use App\Http\Services\UserService;
use App\Mail\SendCode;
use App\Models\UserModel;
use Illuminate\Foundation\Auth\RegistersUsers;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Cookie;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Mail;
use Illuminate\Support\Facades\Redis;
use Illuminate\Support\Facades\Validator;

class AuthApiController extends Controller
{

    use RegistersUsers;

    public function register(UserRegister $request)
    {
        $email = $request->input('email');
        if (UserModel::where('email', $email)->exists()) {
            return $this->setError('Email has been taken');
        }

        //判断邮箱验证码
        $redisKey = 'sem_email_code_register_' . $email;
        $cachedEmailCode = Redis::get($redisKey);
        if ($cachedEmailCode != $request->input('email_code')) {
            return $this->setError('Email code invalid');
        }
        $userId = UserService::createUser($request->all());
        Redis::del($redisKey);
        \Auth::loginUsingId($userId);
        return $this->setSuccess('Register success');
    }


    public function login(Request $request)
    {
        $validator = Validator::make($request->all(), [
            'email' => 'required|string|email|max:255',
            'password' => 'required|string|min:8|max:50',
        ], [
            'password.min' => 'Password must be at least 8 characters long.'
        ]);

        if ($validator->fails()) {
            return $this->setError($validator->errors()->first());
        }

        $userExists = UserModel::where('email', $request->email)->exists();
        if (!$userExists) {
            return $this->setError('User dose not exist');
        }

        if ($this->attemptLogin($request)) {
            $request->session()->regenerate();
            $cookie = Cookie::make('sem_email', Auth::user()->email, config('session.lifetime'));
            Cookie::queue($cookie);
            $userIdCookie = Cookie::make('sem_user_id', Auth::user()->id, config('session.lifetime'), null, null, false,
                false);
            Cookie::queue($userIdCookie);
            return $this->setSuccess('Login success');
        }


        return $this->setError('The account or password is incorrect');
    }

    public function logout(Request $request)
    {
        $cookie = Cookie::forget('sem_email');
        Cookie::queue($cookie);
        Auth::logout();
        return $this->setSuccess('Logout success');
    }

    public function resetPassword(Request $request)
    {

        $validator = Validator::make($request->all(), [
            'old_password' => 'required|min:8|max:50',
            'password' => ['required', 'string', 'min:8', 'max:50', 'confirmed'],
        ], [
            'old_password.min' => 'Password must be at least 8 characters long.',
            'password.min' => 'Password must be at least 8 characters long.',
            'password.confirmed' => 'Passwords do not match!',
        ]);

        if ($validator->fails()) {
            return $this->setError($validator->errors()->first());
        }
        $password = $request->get('password');
        $oldPassword = $request->get('old_password');
        $userId = Auth::user()->id;
        $hashedPassword = UserModel::where('id', $userId)->value('password');
        if (!Hash::check($oldPassword, $hashedPassword)) {
            return $this->setError('Wrong Password!');
        }

        if (Hash::check($password, $hashedPassword)) {
            return $this->setError('The new password cannot be the same as the old password!');
        }

        $user = UserModel::find($userId);
        $user->password = Hash::make($password);
        $user->update_time = time();
        $result = $user->save();
        if (!$result) {
            return $this->setError('Reset password failed');
        }

        return $this->setSuccess('Reset password success');
    }

    public function forgetPassword(Request $request)
    {
        $validator = Validator::make($request->all(), [
            'email' => 'required|email',
            'email_code' => 'required'
        ], []);
        if ($validator->fails()) {
            return $this->setError($validator->errors()->first());
        }
        $email = $request->input('email');
        $emailCode = $request->input('email_code');
        $redisKey = 'sem_email_code_forget_password' . '_' . $email;
        $cachedEmailCode = Redis::get($redisKey);
        if ($cachedEmailCode != $emailCode) {
            return $this->setError('Email code invalid');
        }
        return $this->setSuccess('Verify email code success');
    }

    //忘记密码以后的设置密码
    public function setForgetPassword(Request $request)
    {
        $validator = Validator::make($request->all(), [
            'password' => ['required', 'string', 'min:8', 'max:50', 'confirmed'],
            'email_code' => 'required',
            'email' => 'required|email'
        ], []);
        $password = $request->input('password');
        $emailCode = $request->input('email_code');
        $email = $request->input('email');
        if ($validator->fails()) {
            return $this->setError($validator->errors()->first());
        }
        $redisKey = 'sem_email_code_forget_password' . '_' . $email;
        $cachedEmailCode = Redis::get($redisKey);
        if (!$cachedEmailCode) {
            return $this->setError('Email code expired');
        }
        if ($cachedEmailCode != $emailCode) {
            return $this->setError('Email code invalid');
        }

        $hashedPassword = UserModel::where('email', $email)->value('password');
        if (Hash::check($password, $hashedPassword)) {
            return $this->setError('The new password cannot be the same as the old password!');
        }

        $user = UserModel::where('email', $email)->first();
        $user->password = Hash::make($password);
        $user->update_time = time();
        $result = $user->save();
        if (!$result) {
            return $this->setError('Reset password failed');
        }
        Redis::del($redisKey);
        Auth::logout();
        return $this->setSuccess('Reset password success');
    }

    //发送邮箱验证码
    public function sendEmailCode(Request $request)
    {
        $email = $request->input('email');
        $type = $request->input('type', 'register');

        $validator = Validator::make($request->all(), [
            'email' => 'required|email',
        ]);
        if ($validator->fails()) {
            return $this->setError($validator->errors()->first());
        }
        $info = UserModel::where('email', $email)->first();
        $msg = '';
        switch ($type) {
            case 'register':
                if ($info) {
                    return $this->setError('This email had been registered');
                }
                $msg = 'You are registering an account with us.';
                break;
            case 'forget_password' :
                $msg = 'You are trying to reset your password.';
                $existEmail = UserModel::where('email', $email)->exists();
                if (!$existEmail) {
                    return $this->setError('This email is not registered');
                }
                break;
            case 'update_email':
                $existEmail = UserModel::where('email', $email)->exists();
                if (!$existEmail) {
                    return $this->setError('This email is not registered');
                }
                $msg = 'You are modifying your email address.';
                break;
        }


        //发送验证码
        $code = mt_rand(1000, 9999);
        $redisKey = 'sem_email_code_' . $type . '_' . $email;
        if (Redis::get($redisKey)) {
            return $this->setError('A verification code has been sent. Please enter the code below to continue.' . (config('app.debug') ? Redis::get($redisKey) : ''));
        }
        Redis::set($redisKey, $code);
        Redis::expire($redisKey, 120);
        // return $this->setSuccessData($code);
        Mail::to($email)->send(new SendCode($code, $msg));
        //错误处理
        if (count(Mail::failures())) {
            return $this->setError('Email code send failed');
        }

        return $this->setSuccess('A verification code has been sent. Please enter the code below to continue. ' . (config('app.debug') ? $code : ''));
    }

}