mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2024-11-22 10:11:04 +01:00
Implemented session
This commit is contained in:
parent
b11cea5337
commit
67f6ea76eb
@ -7,48 +7,66 @@ use entity\user\UserInterface;
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*
|
||||
*/
|
||||
*/
|
||||
final class Core implements CoreInterface
|
||||
{
|
||||
|
||||
const DATABASE_USERNAME = 'devuser';
|
||||
|
||||
|
||||
const DATABASE_PASSWORD = 'devpass';
|
||||
|
||||
|
||||
const DATABASE_NAME = 'test_db';
|
||||
|
||||
|
||||
const DATABASE_PORT = '3306';
|
||||
|
||||
|
||||
const DATABASE_HOST = 'codingchallengeonlineshop_db_1';
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @var \Twig_Environment
|
||||
*/
|
||||
private $twig;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @var UserInterface
|
||||
*/
|
||||
private $user;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @var \PDO
|
||||
*/
|
||||
private $database;
|
||||
|
||||
public function __construct(){
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->initTwig();
|
||||
$this->initDatabase();
|
||||
$this->initUser();
|
||||
}
|
||||
|
||||
private function initTwig():void{
|
||||
$loader = new \Twig_Loader_Filesystem(__DIR__.'/../template');
|
||||
|
||||
/**
|
||||
* Loads user by session
|
||||
*/
|
||||
private function initUser(): void
|
||||
{
|
||||
if($_SESSION['user']){
|
||||
$this->user = $_SESSION['user'];
|
||||
}
|
||||
}
|
||||
|
||||
private function initTwig(): void
|
||||
{
|
||||
$loader = new \Twig_Loader_Filesystem(__DIR__ . '/../template');
|
||||
$this->twig = new \Twig_Environment($loader);
|
||||
}
|
||||
|
||||
private function initDatabase():void{
|
||||
$this->database = new \PDO('mysql:host='.self::DATABASE_HOST.';dbname='.self::DATABASE_NAME.';port='.self::DATABASE_PORT, self::DATABASE_USERNAME, self::DATABASE_PASSWORD);
|
||||
|
||||
private function initDatabase(): void
|
||||
{
|
||||
$this->database = new \PDO('mysql:host=' . self::DATABASE_HOST . ';dbname=' . self::DATABASE_NAME . ';port=' . self::DATABASE_PORT, self::DATABASE_USERNAME, self::DATABASE_PASSWORD);
|
||||
}
|
||||
|
||||
|
||||
public function getDatabase(): \PDO
|
||||
{
|
||||
return $this->database;
|
||||
@ -63,11 +81,10 @@ final class Core implements CoreInterface
|
||||
{
|
||||
return $this->user;
|
||||
}
|
||||
|
||||
|
||||
public function setUser(?UserInterface $user = null): void
|
||||
{
|
||||
$this->user = $user;
|
||||
$_SESSION['user'] = $this->user = $user;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -40,5 +40,9 @@ class CoreTest extends TestCase
|
||||
public function testUser():void{
|
||||
$this->assertEquals($this->user, $this->core->getUser());
|
||||
}
|
||||
|
||||
public function testSession():void{
|
||||
$this->assertEquals($this->core->getUser(), $_SESSION['user']);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user