2022-05-03 08:54:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
2022-05-03 16:25:38 +02:00
|
|
|
use App\Pdo\PdoConnect;
|
2022-05-03 08:54:45 +02:00
|
|
|
use PDO;
|
|
|
|
use PDOException;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
|
|
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
|
|
|
|
|
|
|
|
class PdoServices extends AbstractController
|
|
|
|
{
|
|
|
|
private $params;
|
|
|
|
|
|
|
|
public function __construct(ParameterBagInterface $params)
|
|
|
|
{
|
|
|
|
$this->params = $params;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fetchDatas($email)
|
|
|
|
{
|
|
|
|
try {
|
2022-05-03 16:25:38 +02:00
|
|
|
$pdo = PdoConnect::getInstance();
|
|
|
|
$dbh = $pdo->connect($this->params->get('urlDatabase'), $this->params->get('dbUser'), $this->params->get('dbPassword'));
|
2022-05-03 15:09:42 +02:00
|
|
|
$query = $dbh->prepare($this->getParameter('queryFetchDatas'));
|
|
|
|
$query->execute(['email'=> $email]);
|
|
|
|
$datas = $query->fetch(PDO::FETCH_ASSOC);
|
2022-05-03 08:54:45 +02:00
|
|
|
|
|
|
|
} catch (PDOException $e) {
|
|
|
|
print "Erreur !: " . $e->getMessage() . "<br/>";
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
return $datas;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function verifyPassword($password, $hashedPassword)
|
|
|
|
{
|
|
|
|
$hashMethod = $this->params->get('hashMethod');
|
|
|
|
switch ($hashMethod){
|
|
|
|
case "sha1":
|
|
|
|
return $hashedPassword === sha1($password, false);
|
|
|
|
break;
|
|
|
|
case "md5":
|
|
|
|
return $hashedPassword === md5($password);
|
|
|
|
break;
|
|
|
|
case "BCRYPT":
|
|
|
|
default:
|
|
|
|
return password_verify($password, $hashedPassword);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|