Skip to content

Commit 3b829d0

Browse files
committed
Add sslCA connection option
1 parent 57c4676 commit 3b829d0

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

src/ClickHouseConnection.php

+15-9
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,21 @@ public function __construct(
3838
string $password,
3939
AbstractPlatform $platform
4040
) {
41-
$this->client = new Client(
42-
[
43-
'host' => $params['host'] ?? 'localhost',
44-
'port' => $params['port'] ?? 8123,
45-
'username' => $user,
46-
'password' => $password,
47-
],
48-
array_merge(['database' => $params['dbname'] ?? 'default'], $params['driverOptions'] ?? [])
49-
);
41+
$connectParams = [
42+
'host' => $params['host'] ?? 'localhost',
43+
'port' => $params['port'] ?? 8123,
44+
'username' => $user,
45+
'password' => $password,
46+
];
47+
48+
if (isset($params['driverOptions']['sslCA'])) {
49+
$connectParams['sslCA'] = $params['driverOptions']['sslCA'];
50+
unset($params['driverOptions']['sslCA']);
51+
}
52+
53+
$clientParams = array_merge(['database' => $params['dbname'] ?? 'default'], $params['driverOptions'] ?? []);
54+
55+
$this->client = new Client($connectParams, $clientParams);
5056
$this->platform = $platform;
5157
}
5258

0 commit comments

Comments
 (0)