mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 02:36:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Grocy\Controllers;
 | |
| 
 | |
| use \Grocy\Services\SessionService;
 | |
| use \Grocy\Services\DatabaseMigrationService;
 | |
| use \Grocy\Services\DemoDataGeneratorService;
 | |
| 
 | |
| class LoginController extends BaseController
 | |
| {
 | |
| 	public function __construct(\Slim\Container $container, string $sessionCookieName)
 | |
| 	{
 | |
| 		parent::__construct($container);
 | |
| 		$this->SessionService = new SessionService();
 | |
| 		$this->SessionCookieName = $sessionCookieName;
 | |
| 	}
 | |
| 
 | |
| 	protected $SessionService;
 | |
| 	protected $SessionCookieName;
 | |
| 
 | |
| 	public function ProcessLogin(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
 | |
| 	{
 | |
| 		$postParams = $request->getParsedBody();
 | |
| 		if (isset($postParams['username']) && isset($postParams['password']))
 | |
| 		{
 | |
| 			$user = $this->Database->users()->where('username', $postParams['username'])->fetch();
 | |
| 			$inputPassword = $postParams['password'];
 | |
| 			$stayLoggedInPermanently = $postParams['stay_logged_in'] == 'on';
 | |
| 
 | |
| 			if ($user !== null && password_verify($inputPassword, $user->password))
 | |
| 			{
 | |
| 				$sessionKey = $this->SessionService->CreateSession($user->id, $stayLoggedInPermanently);
 | |
| 				setcookie($this->SessionCookieName, $sessionKey, PHP_INT_SIZE == 4 ? PHP_INT_MAX : PHP_INT_MAX>>32); // Cookie expires never, but session validity is up to SessionService
 | |
| 
 | |
| 				if (password_needs_rehash($user->password, PASSWORD_DEFAULT))
 | |
| 				{
 | |
| 					$user->update(array(
 | |
| 						'password' => password_hash($inputPassword, PASSWORD_DEFAULT)
 | |
| 					));
 | |
| 				}
 | |
| 
 | |
| 				return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/'));
 | |
| 			}
 | |
| 			else
 | |
| 			{
 | |
| 				return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/login?invalid=true'));
 | |
| 			}
 | |
| 		}
 | |
| 		else
 | |
| 		{
 | |
| 			return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/login?invalid=true'));
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	public function LoginPage(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
 | |
| 	{
 | |
| 		return $this->AppContainer->view->render($response, 'login');
 | |
| 	}
 | |
| 
 | |
| 	public function Logout(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
 | |
| 	{
 | |
| 		$this->SessionService->RemoveSession($_COOKIE[$this->SessionCookieName]);
 | |
| 		return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/'));
 | |
| 	}
 | |
| 
 | |
| 	public function GetSessionCookieName()
 | |
| 	{
 | |
| 		return $this->SessionCookieName;
 | |
| 	}
 | |
| }
 |