Skip to content
Snippets Groups Projects
Commit ded52c26 authored by Jean-Laurent DUZANT's avatar Jean-Laurent DUZANT Committed by Guillaume Heurtier
Browse files

FEAT #23832 TIME 0:20 manage database redondant

parent c0205c57
No related branches found
No related tags found
No related merge requests found
...@@ -4,14 +4,16 @@ ...@@ -4,14 +4,16 @@
"timezone": "Europe/Paris", "timezone": "Europe/Paris",
"customLangPathDirectory": "" "customLangPathDirectory": ""
}, },
"database": { "databases": [
"server": "localhost", {
"port": "5432", "server": "localhost",
"type": "POSTGRESQL", "port": "5432",
"name": "maarch", "type": "POSTGRESQL",
"user": "maarch", "name": "maarch",
"password": "maarch" "user": "maarch",
}, "password": "maarch"
}
],
"electronicSignature": { "electronicSignature": {
"enable": false, "enable": false,
"certPath": "/var/www/html/MaarchParapheur/samples/certs/MP_final_certificate.crt", "certPath": "/var/www/html/MaarchParapheur/samples/certs/MP_final_certificate.crt",
......
...@@ -37,12 +37,8 @@ class DatabasePDO ...@@ -37,12 +37,8 @@ class DatabasePDO
throw new \Exception('Configuration file can not be read'); throw new \Exception('Configuration file can not be read');
} }
$databases = array_filter($loaderJson, function($value, $key) {
return strpos($key, 'database') !== false;
}, ARRAY_FILTER_USE_BOTH);
$count = 1; foreach ($loaderJson['databases'] as $key => $database) {
foreach ($databases as $key => $database) {
$server = $database['server']; $server = $database['server'];
$port = $database['port']; $port = $database['port'];
$name = $database['name']; $name = $database['name'];
...@@ -84,8 +80,7 @@ class DatabasePDO ...@@ -84,8 +80,7 @@ class DatabasePDO
self::$pdo = new \PDO($dsn, $user, $password, $options); self::$pdo = new \PDO($dsn, $user, $password, $options);
break; break;
} catch (\PDOException $PDOException) { } catch (\PDOException $PDOException) {
if (!empty($loaderJson[$key . $count])) { if (!empty($loaderJson['databases'][$key + 1])) {
$count++;
continue; continue;
} else { } else {
throw new \Exception($PDOException->getMessage()); throw new \Exception($PDOException->getMessage());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment