sqlLoginRequest = $sqlLoginRequest; $this->loggerInterface = $loggerInterface; $this->pdo = $this->getConnection(); } public function fetchPasswordAndDatas(string $login): array { try { $dataRequest = $this->sqlLoginRequest->getDatasRequest(); $datas = $this->executeRequestWithLogin($dataRequest, $login); } catch (NullDataToFetchException $e) { throw new DataToFetchConfigurationException($e->getMessage()); } catch (PDOException $e) { $this->loggerInterface->critical($e->getMessage()); throw new LoginElementsConfigurationException($e->getMessage()); } return $datas; } private function executeRequestWithLogin(string $request, string $login): array { $query = $this->pdo->prepare($request); $query->bindParam($this->sqlLoginRequest->getLoginColumnName(), $login, PDO::PARAM_STR); $query->execute(); $datas = $query->fetch(PDO::FETCH_ASSOC); $query->closeCursor(); return $datas; } private function getConnection(): PDO { // Appel du singleton try { $sqlLogin = SQLLoginConnect::getInstance(); $pdo = $sqlLogin->connect($this->sqlLoginRequest->getDatabaseDsn(), $this->sqlLoginRequest->getDbUser(), $this->sqlLoginRequest->getDbPassword()); } catch (PDOException $e) { $this->loggerInterface->critical($e->getMessage()); throw new DatabaseConnectionException($e->getMessage()); } return $pdo; } }