2022-12-14 16:38:46 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\SQLLogin;
|
|
|
|
|
2023-06-19 15:56:55 +02:00
|
|
|
use App\SQLLogin\Exception\NullDataToFetchException;
|
|
|
|
|
2022-12-14 16:38:46 +01:00
|
|
|
class SQLLoginRequest
|
|
|
|
{
|
|
|
|
public const DATA_TO_FETCH = 'data_to_fetch';
|
|
|
|
public const LOGIN_COLUMN_NAME = 'login_column_name';
|
|
|
|
public const SALT_COLUMN_NAME = 'salt_column_name';
|
|
|
|
public const PASSWORD_COLUMN_NAME = 'password_column_name';
|
2022-12-16 15:00:14 +01:00
|
|
|
public const PASSWORD_NEED_UPGRADE = 'password_need_upgrade';
|
2022-12-14 16:38:46 +01:00
|
|
|
public const TABLE_NAME = 'table_name';
|
2024-07-24 16:41:22 +02:00
|
|
|
public const SUBJECT_REWRITE_EXPRESSION = 'subject_rewrite_expression';
|
2022-12-14 16:38:46 +01:00
|
|
|
|
2024-09-24 11:47:52 +02:00
|
|
|
private array $config;
|
|
|
|
private string $dsn;
|
|
|
|
private string $user;
|
|
|
|
private string $password;
|
2022-12-14 16:38:46 +01:00
|
|
|
|
2023-01-05 13:22:18 +01:00
|
|
|
public function __construct(string $dsn, string $user, string $password, array $config = [])
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
$this->config = $config;
|
|
|
|
$this->dsn = $dsn;
|
|
|
|
$this->user = $user;
|
|
|
|
$this->password = $password;
|
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
public function getDatabaseDsn(): string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
return $this->dsn;
|
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
public function getDbUser(): string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
return $this->user;
|
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
public function getDbPassword(): string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
return $this->password;
|
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
public function getLoginColumnName(): string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
return $this->config[self::LOGIN_COLUMN_NAME];
|
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
public function getPasswordColumnName(): string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
return $this->config[self::PASSWORD_COLUMN_NAME];
|
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
public function getSaltColumnName(): ?string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
return $this->config[self::SALT_COLUMN_NAME];
|
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
public function getTableName(): string
|
|
|
|
{
|
|
|
|
return $this->config[self::TABLE_NAME];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDataToFetch(): array
|
|
|
|
{
|
|
|
|
return $this->config[self::DATA_TO_FETCH];
|
|
|
|
}
|
|
|
|
|
2024-07-24 16:41:22 +02:00
|
|
|
public function getSubjectRewriteExpression(): ?string
|
|
|
|
{
|
|
|
|
return $this->config[self::SUBJECT_REWRITE_EXPRESSION];
|
|
|
|
}
|
|
|
|
|
2024-09-24 11:47:52 +02:00
|
|
|
public function getRequestScope(): string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
|
|
|
$scope = '';
|
2024-04-29 10:44:38 +02:00
|
|
|
if (!$this->config[self::DATA_TO_FETCH]) {
|
|
|
|
throw new NullDataToFetchException();
|
2022-12-14 16:38:46 +01:00
|
|
|
}
|
2024-04-29 10:44:38 +02:00
|
|
|
|
|
|
|
foreach ($this->config[self::DATA_TO_FETCH] as $data) {
|
2024-09-24 11:47:52 +02:00
|
|
|
$scope .= $data.',';
|
2024-04-29 10:44:38 +02:00
|
|
|
}
|
|
|
|
// On enlève la dernière virgule
|
|
|
|
$scope = substr($scope, 0, -1);
|
|
|
|
|
2024-09-24 11:47:52 +02:00
|
|
|
return 'SELECT '.$scope.' FROM '.$this->getTableName().' WHERE '.$this->getLoginColumnName().' = :'.$this->getLoginColumnName().';';
|
2022-12-14 16:38:46 +01:00
|
|
|
}
|
|
|
|
|
2022-12-16 15:00:14 +01:00
|
|
|
/**
|
|
|
|
* Construction de la string pour la requête préparée selon la configuration yaml
|
|
|
|
* intègre la récupération du mot de passe hashé, du salt et de besoin d'upgrade de la méthode de hashage
|
|
|
|
*/
|
2023-06-19 15:56:55 +02:00
|
|
|
public function getRequestPassword(): string
|
2022-12-14 16:38:46 +01:00
|
|
|
{
|
2022-12-16 15:00:14 +01:00
|
|
|
$fields = $this->getPasswordColumnName();
|
|
|
|
if (!empty($this->getSaltColumnName())) {
|
2024-09-24 11:47:52 +02:00
|
|
|
$fields .= ', '.$this->getSaltColumnName();
|
2022-12-16 15:00:14 +01:00
|
|
|
}
|
|
|
|
|
2024-09-24 11:47:52 +02:00
|
|
|
return 'SELECT '.$fields.' FROM '.$this->getTableName().' WHERE '.$this->getLoginColumnName().' = :'.$this->getLoginColumnName().';';
|
2022-12-16 15:00:14 +01:00
|
|
|
}
|
2022-12-14 16:38:46 +01:00
|
|
|
}
|