Conflicts:
	SRC/app/Http/routes.php

	modified:   SRC/app/Http/Controllers/LoginController.php
	deleted:    SRC/app/Http/routes.php
	modified:   SRC/config/auth.php
	modified:   SRC/resources/views/auth/reset.blade.php
	modified:   SRC/resources/views/emails/password.blade.php
This commit is contained in:
www
2015-02-18 23:32:05 +01:00
5 changed files with 39 additions and 68 deletions

View File

@ -3,8 +3,9 @@ use Auth;
use Input;
use Validator;
use Password;
use DB;
use View;
use Redirect;
use Hash;
class LoginController extends Controller {
/**
@ -68,7 +69,7 @@ class LoginController extends Controller {
public function initPassword()
{
switch ($response = Password::sendResetLink(Input::only('email')))
switch ($response = Password:: sendResetLink(Input::only('email')))
{
case Password::INVALID_USER:
return redirect('forgotten')->withErrors("Mail Invalide !")->withInput();
@ -77,4 +78,30 @@ class LoginController extends Controller {
}
}
public function reset($token)
{
return View::make('auth.reset')->with('token', $token);
}
public function update($token)
{
$credentials = array('token' => Input::get('token'), 'password' => Input::get('password'), 'password_confirmation' => Input::get('password_confirmation'));
$response = Password::reset($credentials, function($user, $password)
{
$user->password = Hash::make($password);
$user->save();
});
switch ($response)
{
case Password::INVALID_PASSWORD:
return Redirect::back()->withErrors("Mot de passe non valide")->withInput();
case Password::INVALID_TOKEN:
return Redirect::back()->withErrors("Clé invalide")->withInput();
case Password::INVALID_USER:
return Redirect::back()->withErrors("Utilsateur invalide")->withInput();
case Password::PASSWORD_RESET:
return Redirect::to('/login');
}
}

View File

@ -1,50 +0,0 @@
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/
Route::get('/', 'GameController@index');
Route::get('referents/{id}/games', 'GameController@showReferentGames')->where('id', '^((?!login|referent|admin).)*$');
Route::get('referents/{id}/games/{idGame}', 'GameController@showOneReferentGame');
Route::get('password/reset', array(
'uses' => 'LoginController@reset',
'as' => 'password.reset'
));
Route::post('password/reset', array(
'uses' => 'LoginController@update',
'as' => 'password.update'
));
Route::group(['middleware' => 'guest'], function ()
{
Route::get('login', 'LoginController@index');
Route::post('login', 'LoginController@authenticate');
Route::get('forgotten', 'LoginController@forgottenPassword');
Route::post('forgotten', 'LoginController@initPassword');
});
Route::group(['middleware' => 'auth'], function ()
{
Route::get('referent', 'ReferentController@index');
Route::get('logout', 'LoginController@logout');
Route::post('update', 'ReferentController@update');
});
Route::group(['middleware' => 'admin'], function ()
{
Route::get('admin', 'AdminController@index');
Route::post('addUser', 'AdminController@addUser');
Route::post('deleteUser', 'AdminController@deleteUser');
Route::post('updateUser', 'AdminController@updateUser');
Route::post('logAs', 'AdminController@logAs');
});