-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathVerifiesUsers.php
107 lines (95 loc) · 2.83 KB
/
VerifiesUsers.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
<?php
/**
* This file is part of Jrean\UserVerification package.
*
* (c) Jean Ragouin <go@askjong.com> <www.askjong.com>
*/
namespace Jrean\UserVerification\Traits;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
use Jrean\UserVerification\Facades\UserVerification as UserVerificationFacade;
use Jrean\UserVerification\Exceptions\UserNotFoundException;
use Jrean\UserVerification\Exceptions\UserIsVerifiedException;
use Jrean\UserVerification\Exceptions\TokenMismatchException;
trait VerifiesUsers
{
use RedirectsUsers;
/**
* Handle the user verification.
*
* @param string $token
* @return \Illuminate\Http\Response
*/
public function getVerification(Request $request, $token)
{
if (! $this->validateRequest($request)) {
return redirect($this->redirectIfVerificationFails());
}
try {
$user = UserVerificationFacade::process($request->input('email'), $token, $this->userTable());
} catch (UserNotFoundException $e) {
return redirect($this->redirectIfVerificationFails());
} catch (UserIsVerifiedException $e) {
return redirect($this->redirectIfVerified());
} catch (TokenMismatchException $e) {
return redirect($this->redirectIfVerificationFails());
}
if (config('user-verification.auto-login') === true) {
auth()->loginUsingId($user->id);
}
return redirect($this->redirectAfterVerification());
}
/**
* Show the verification error view.
*
* @return \Illuminate\Http\Response
*/
public function getVerificationError()
{
return view($this->verificationErrorView());
}
/**
* Validate the verification link.
*
* @param string $token
* @return bool
*/
protected function validateRequest(Request $request)
{
$validator = Validator::make($request->all(), [
'email' => 'required|email'
]);
return $validator->passes();
}
/**
* Get the verification error view name.
*
* @return string
*/
protected function verificationErrorView()
{
return property_exists($this, 'verificationErrorView')
? $this->verificationErrorView
: 'laravel-user-verification::user-verification';
}
/**
* Get the verification e-mail view name.
*
* @return string
*/
protected function verificationEmailView()
{
return property_exists($this, 'verificationEmailView')
? $this->verificationEmailView
: 'emails.user-verification';
}
/**
* Get the user table name.
*
* @return string
*/
protected function userTable()
{
return property_exists($this, 'userTable') ? $this->userTable : 'users';
}
}