1
+ <?php
2
+
3
+ namespace PKP \core \database ;
4
+
5
+ use InvalidArgumentException ;
6
+ use Illuminate \Database \Connection ;
7
+ use Illuminate \Database \SQLiteConnection ;
8
+ use Illuminate \Database \SqlServerConnection ;
9
+ use Illuminate \Database \Connectors \ConnectionFactory ;
10
+ use PKP \core \database \connections \PKPMySqlConnection ;
11
+ use PKP \core \database \connections \PKPPostgresConnection ;
12
+
13
+ class PKPDatabaseConnectionFactory extends ConnectionFactory
14
+ {
15
+ /**
16
+ * Create a new connection instance.
17
+ *
18
+ * @param string $driver
19
+ * @param \PDO|\Closure $connection
20
+ * @param string $database
21
+ * @param string $prefix
22
+ * @param array $config
23
+ * @return \Illuminate\Database\Connection
24
+ *
25
+ * @throws \InvalidArgumentException
26
+ */
27
+ protected function createConnection ($ driver , $ connection , $ database , $ prefix = '' , array $ config = [])
28
+ {
29
+ if ($ resolver = Connection::getResolver ($ driver )) {
30
+ return $ resolver ($ connection , $ database , $ prefix , $ config );
31
+ }
32
+
33
+ return match ($ driver ) {
34
+ 'mysql ' => new PKPMySqlConnection ($ connection , $ database , $ prefix , $ config ),
35
+ 'pgsql ' => new PKPPostgresConnection ($ connection , $ database , $ prefix , $ config ),
36
+ 'sqlite ' => new SQLiteConnection ($ connection , $ database , $ prefix , $ config ),
37
+ 'sqlsrv ' => new SqlServerConnection ($ connection , $ database , $ prefix , $ config ),
38
+ default => throw new InvalidArgumentException ("Unsupported driver [ {$ driver }]. " ),
39
+ };
40
+ }
41
+ }
0 commit comments