Subversion Repository Public Repository

Nextrek

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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?php 
	class AccountController extends BaseController
	{

		public function getSignIn()
		{
			return View::make('account.signin'); 
		}

		public function postSignIn()
		{
			// return View::make('account.create'); 
			$validator = Validator::make(Input::all(),
			array(
				'username' 	=> 'required',
				'password'  => 'required'	
				)
			);

			if ($validator->fails()) 
			{
				//Redirect to signin page	
				return  Redirect::route('account-sign-in')
						->withErrors($validator)
						->withInput();
			} 
			else
			{
				//remember
				$remember = (Input::has('remember')) ? true : false;

				
				
				//Attempt user sign in
				$auth = Auth::attempt(array(
					'username'	=> Input::get('username'),
					'password'	=> Input::get('password')
				), $remember);

				if ($auth) {
					
					//Redirect to the intended page QUA
					//
					
					/*if(Auth::user()->role=='admin')
					{
						return Redirect::intended('/admin');
					}
					else if(Auth::user()->role=='commerciale')
					{
						return Redirect::intended('/commerciale');
					}*/

					return Redirect::intended('/area-riservata');

					//echo '<pre>', print_r(Auth::check()), '</pre>';
				}
				else 
				{ 
					return  Redirect::route('account-sign-in')
							->with('global', 'Username/password wrong or account not activated.');
				}
				
				
			}

			return  Redirect::route('account-sign-in')
				 	->with('global', 'There was a problem signing you in.');
		}

		public function getSignOut()
		{
			Auth::logout();
			return Redirect::route('home');
		}


		public function getCreate()
		{
			return View::make('account.create'); 
		}

		public function  postCreate()
		{
			///custom message ita
			
			$messages = array(
				'required'=> 'Il campo :attribute non può essere vuoto.',
			    'same'    => 'The :attribute and :other must match.',
			    'size'    => 'The :attribute must be exactly :size.',
			    'between' => 'The :attribute must be between :min - :max.',
			    'in'      => 'The :attribute must be one of the following types: :values',
			);

			$validator = Validator::make(Input::all(),
			array(
				'email' 			=> 'required|max:50|email|unique:users',
				'username' 			=> 'required|max:20|min:5|unique:users',
				'password'  		=> 'required|min:6',
				'password_again' 	=> 'required|same:password',
				),
			$messages
			);

			if ($validator->fails()) 
			{
				return  Redirect::route('account-create')
						->withErrors($validator)
						->withInput();
			}
			else
			{
				$email 		= Input::get('email');
				$username 	= Input::get('username');
				$password 	= Input::get('password');

				// Activation code
				
				$code = str_random(60);

				$user = User::create(array(
					'email'		=>$email,
					'username'	=>$username,
					'password'	=>Hash::make($password),
					'code'		=>$code,
					'active'	=>0
				));	

				if ($user) 
				{
					////Send email to activate
					
					Mail::send('emails.auth.activate', array('link' => URL::route('account-activate', $code) , 'username' => $username), function($message) use($user)
						{
							$message->to($user->email, $user->username)->subject('Activate your account.');
						});

					 return Redirect::route('home')
					 		->with('global','Your account has been created! We have sent you an email to activate your account.');	
				}  
			}
		}

		public function getActivate($code)
		{
			$user = User::where('code', '=', $code)->where('active','=',0);

			if ($user->count()) 
			{
				////prende solo la prima riga
				$user = $user->first();

				////aggiorna user allo stato attivo
				$user->active 	= 1;
				$user->code 	= '';

				if ($user->save()) 
				{
					return  Redirect::route('home')
							->with('global', 'Attivato! Adesso puoi fare il login');
				}
				//echo '<pre>', print_r($user), '</pre>';
			}

			return  Redirect::route('home')
						->with('global','Il tuo account non può essere attivato. Riprova tra qualche minuto.');
		}



		/**
		 * change password
		 */
		
		public function getChangePassword()
		{
			return View::make('account.password');
		}

		public function postChangePassword()
		{
			$validator = Validator::make(Input::all(), 
				array(
					'old_password'		=> 'required',
					'password'			=> 'required|min:6',
					'password_again'	=> 'required|same:password'
					)
				);

			if($validator->fails())
			{
				return  Redirect::route('account-change-password')
						->withErrors($validator);
			}
			else
			{
				$user = User::find(Auth::user()->id);

				$old_password = Input::get('old_password');
				$password = Input::get('password');

				if(Hash::check($old_password,$user->getAuthPassword()))
				{
					$user->password = Hash::make($password);

					if($user->save())
					{
						return  Redirect::route('home')
								->with('global', 'your password is been changed.');
					}
				}


			}

			return  Redirect::route('account-change-password')
					->with('global','Your password could not be changed');
		}


		public function getForgotPassword()
		{
			return View::make('account.forgot');
		}

		public function postForgotPassword()
		{
			$validator = Validator::make(Input::all(), array(
				'email'=>'required|email'	
				)
			);

			if ($validator->fails()) 
			{
				return Redirect::route('account-forgot-password')
					->withErrors($validator)
					->withInput();
			}
			else
			{
				//change password
				
				$user = User::where('email', '=', Input::get('email'));

				if($user->count())
				{
					$user = $user->first();


					//generate new code
					$code = str_random(60);
					$password = str_random(10);

					$user->code = $code;
					$user->password_temp = Hash::make($password);


					if($user->save())
					{
						Mail::send('emails.auth.forgot', array(
							'link'		=>URL::route('account-recover',$code),
							'username'	=>$user->username,
							'password'	=>$password
						), function($message) use($user)
						{
							$message->to($user->email, $user->username)->subject('Your new password');
						});

						return  Redirect::route('home')
								->with('global', 'We have sent you a new password.');
					}

				}
			}

			return Redirect::route('account-forgot-password')
					->with('global','Could not request new password');
		}


		public function getRecover($code)
		{
			$user = User::where('code', '=', $code)
					->where('password_temp', '!=', '');

			if ($user->count()) 
			{
				$user = $user->first();

				$user->password = $user->password_temp;
				$user->password_temp = '';
				$user->code = '';

				if ($user->save()) 
				{
					return Redirect::route('home')
					->with('global', 'Your account is been recovered and you can signin with your password');
				}
			}

			return Redirect::route('home')
					->with('global', 'Could not recover your account.');
		}
	}

Commits for Nextrek/Aiba_backup/app/_AccountController.php

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000