-
Notifications
You must be signed in to change notification settings - Fork 258
/
controller.blade.php
211 lines (191 loc) · 7.04 KB
/
controller.blade.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
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
<?php echo "<?php\n"; ?>{{ $namespace ? ' namespace '.$namespace.';' : '' }}
<?php $repositoryClass = strstr($model, '\\') ? substr($model, 0, -strlen(strrchr($model, '\\'))).'\UserRepository' : 'UserRepository' ?>
@if ($namespace)
use App;
use View;
use Input;
use Config;
use Redirect;
use Lang;
use Mail;
use Confide;
use Controller;
@endif
/**
* UsersController Class
*
* Implements actions regarding user management
*/
class {{ $class }} extends Controller
{
/**
* Displays the form for account creation
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'create' : 'getCreate' }}()
{
return View::make(Config::get('confide::signup_form'));
}
/**
* Stores new account
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'store' : 'postIndex' }}()
{
$repo = App::make('{{ $repositoryClass }}');
$user = $repo->signup(Input::all());
if ($user->id) {
if (Config::get('confide::signup_email')) {
Mail::queueOn(
Config::get('confide::email_queue'),
Config::get('confide::email_account_confirmation'),
compact('user'),
function ($message) use ($user) {
$message
->to($user->email, $user->username)
->subject(Lang::get('confide::confide.email.account_confirmation.subject'));
}
);
}
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@login' : '@getLogin' }}')
->with('notice', Lang::get('confide::confide.alerts.account_created'));
} else {
$error = $user->errors()->all(':message');
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@create' : '@getCreate' }}')
->withInput(Input::except('password'))
->with('error', $error);
}
}
/**
* Displays the login form
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'login' : 'getLogin' }}()
{
if (Confide::user()) {
return Redirect::to('/');
} else {
return View::make(Config::get('confide::login_form'));
}
}
/**
* Attempt to do login
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'doLogin' : 'postLogin' }}()
{
$repo = App::make('{{ $repositoryClass }}');
$input = Input::all();
if ($repo->login($input)) {
return Redirect::intended('/');
} else {
if ($repo->isThrottled($input)) {
$err_msg = Lang::get('confide::confide.alerts.too_many_attempts');
} elseif ($repo->existsButNotConfirmed($input)) {
$err_msg = Lang::get('confide::confide.alerts.not_confirmed');
} else {
$err_msg = Lang::get('confide::confide.alerts.wrong_credentials');
}
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@login' : '@getLogin' }}')
->withInput(Input::except('password'))
->with('error', $err_msg);
}
}
/**
* Attempt to confirm account with code
*
* @param string $code
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'confirm' : 'getConfirm' }}($code)
{
if (Confide::confirm($code)) {
$notice_msg = Lang::get('confide::confide.alerts.confirmation');
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@login' : '@getLogin' }}')
->with('notice', $notice_msg);
} else {
$error_msg = Lang::get('confide::confide.alerts.wrong_confirmation');
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@login' : '@getLogin' }}')
->with('error', $error_msg);
}
}
/**
* Displays the forgot password form
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'forgotPassword' : 'getForgot' }}()
{
return View::make(Config::get('confide::forgot_password_form'));
}
/**
* Attempt to send change password link to the given email
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'doForgotPassword' : 'postForgot' }}()
{
if (Confide::forgotPassword(Input::get('email'))) {
$notice_msg = Lang::get('confide::confide.alerts.password_forgot');
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@login' : '@getLogin' }}')
->with('notice', $notice_msg);
} else {
$error_msg = Lang::get('confide::confide.alerts.wrong_password_forgot');
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@doForgotPassword' : '@postForgot' }}')
->withInput()
->with('error', $error_msg);
}
}
/**
* Shows the change password form with the given token
*
* @param string $token
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'resetPassword' : 'getReset' }}($token)
{
return View::make(Config::get('confide::reset_password_form'))
->with('token', $token);
}
/**
* Attempt change password of the user
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'doResetPassword' : 'postReset' }}()
{
$repo = App::make('{{ $repositoryClass }}');
$input = array(
'token' =>Input::get('token'),
'password' =>Input::get('password'),
'password_confirmation' =>Input::get('password_confirmation'),
);
// By passing an array with the token, password and confirmation
if ($repo->resetPassword($input)) {
$notice_msg = Lang::get('confide::confide.alerts.password_reset');
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@login' : '@getLogin' }}')
->with('notice', $notice_msg);
} else {
$error_msg = Lang::get('confide::confide.alerts.wrong_password_reset');
return Redirect::action('{{ $namespace ? $namespace.'\\' : '' }}{{ $class }}{{ (! $restful) ? '@resetPassword' : '@getReset' }}', array('token'=>$input['token']))
->withInput()
->with('error', $error_msg);
}
}
/**
* Log the user out of the application.
*
* @return Illuminate\Http\Response
*/
public function {{ (! $restful) ? 'logout' : 'getLogout' }}()
{
Confide::logout();
return Redirect::to('/');
}
}