Skip to content

Commit 02291ce

Browse files
committed
#9073 laravel update from 9.x to 10.x with database patch up
1 parent ad45913 commit 02291ce

9 files changed

+849
-541
lines changed

classes/core/PKPContainer.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ public function registerConfiguredProviders()
121121
$this->register(new LaravelEventServiceProvider($this));
122122
$this->register(new EventServiceProvider($this));
123123
$this->register(new LogServiceProvider($this));
124-
$this->register(new \Illuminate\Database\DatabaseServiceProvider($this));
124+
// $this->register(new \Illuminate\Database\DatabaseServiceProvider($this));
125+
$this->register(new \PKP\core\database\PKPDatabaseServiceProvider($this));
125126
$this->register(new \Illuminate\Bus\BusServiceProvider($this));
126127
$this->register(new PKPQueueProvider($this));
127128
$this->register(new MailServiceProvider($this));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?php
2+
3+
namespace PKP\core\database;
4+
5+
use Illuminate\Database\DatabaseManager;
6+
use Illuminate\Database\DatabaseServiceProvider;
7+
use PKP\core\database\PKPDatabaseConnectionFactory;
8+
use Illuminate\Database\DatabaseTransactionsManager;
9+
10+
11+
class PKPDatabaseServiceProvider extends DatabaseServiceProvider
12+
{
13+
/**
14+
* Register the primary database bindings.
15+
*
16+
* @return void
17+
*/
18+
protected function registerConnectionServices()
19+
{
20+
// The connection factory is used to create the actual connection instances on
21+
// the database. We will inject the factory into the manager so that it may
22+
// make the connections while they are actually needed and not of before.
23+
$this->app->singleton('db.factory', function ($app) {
24+
return new PKPDatabaseConnectionFactory($app);
25+
});
26+
27+
// The database manager is used to resolve various connections, since multiple
28+
// connections might be managed. It also implements the connection resolver
29+
// interface which may be used by other components requiring connections.
30+
$this->app->singleton('db', function ($app) {
31+
return new DatabaseManager($app, $app['db.factory']);
32+
});
33+
34+
$this->app->bind('db.connection', function ($app) {
35+
return $app['db']->connection();
36+
});
37+
38+
$this->app->bind('db.schema', function ($app) {
39+
return $app['db']->connection()->getSchemaBuilder();
40+
});
41+
42+
$this->app->singleton('db.transactions', function ($app) {
43+
return new DatabaseTransactionsManager;
44+
});
45+
}
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace PKP\core\database\connections;
4+
5+
use Illuminate\Database\MySqlConnection;
6+
use PKP\core\database\traits\DBConnection;
7+
8+
class PKPMySqlConnection extends MySqlConnection
9+
{
10+
use DBConnection;
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace PKP\core\database\connections;
4+
5+
use PKP\core\database\traits\DBConnection;
6+
use Illuminate\Database\PostgresConnection;
7+
8+
class PKPPostgresConnection extends PostgresConnection
9+
{
10+
use DBConnection;
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?php
2+
3+
namespace PKP\core\database\traits;
4+
5+
use Illuminate\Database\Query\Grammars\MySqlGrammar;
6+
use Illuminate\Database\MySqlConnection;
7+
use Illuminate\Database\Query\Grammars\PostgresGrammar;
8+
use Illuminate\Database\Query\Expression;
9+
10+
trait DBConnection
11+
{
12+
/**
13+
* Run a select statement against the database and returns a generator.
14+
*
15+
* @param string $query
16+
* @param array $bindings
17+
* @param bool $useReadPdo
18+
* @return \Generator
19+
*/
20+
public function cursor($query, $bindings = [], $useReadPdo = true)
21+
{
22+
$statement = $this->run($query, $bindings, function ($query, $bindings) use ($useReadPdo) {
23+
if ($this->pretending()) {
24+
return [];
25+
}
26+
27+
if ($query instanceof Expression) {
28+
$grammar = $this instanceof MySqlConnection
29+
? new MySqlGrammar
30+
: new PostgresGrammar;
31+
32+
$query = $query->getValue($grammar);
33+
}
34+
35+
// First we will create a statement for the query. Then, we will set the fetch
36+
// mode and prepare the bindings for the query. Once that's done we will be
37+
// ready to execute the query against the database and return the cursor.
38+
39+
$statement = $this->prepared($this->getPdoForSelect($useReadPdo)
40+
->prepare($query));
41+
42+
$this->bindValues(
43+
$statement, $this->prepareBindings($bindings)
44+
);
45+
46+
// Next, we'll execute the query against the database and return the statement
47+
// so we can return the cursor. The cursor will use a PHP generator to give
48+
// back one row at a time without using a bunch of memory to render them.
49+
$statement->execute();
50+
51+
return $statement;
52+
});
53+
54+
while ($record = $statement->fetch()) {
55+
yield $record;
56+
}
57+
}
58+
}

classes/db/DAO.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
namespace PKP\db;
2525

2626
use Generator;
27+
use Illuminate\Database\Query\Grammars\MySqlGrammar;
28+
use Illuminate\Database\MySqlConnection;
29+
use Illuminate\Database\Query\Grammars\PostgresGrammar;
2730
use Illuminate\Support\Facades\DB;
2831
use PKP\cache\CacheManager;
2932
use PKP\core\JSONMessage;
@@ -74,7 +77,11 @@ public function retrieve($sql, $params = [], $callHooks = true)
7477
}
7578
}
7679

77-
return DB::cursor(DB::raw($sql)->getValue(), $params);
80+
$grammar = DB::connection() instanceof MySqlConnection
81+
? new MySqlGrammar
82+
: new PostgresGrammar;
83+
84+
return DB::cursor(DB::raw($sql)->getValue($grammar), $params);
7885
}
7986

8087
/**

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"michelf/php-markdown": "1.*",
1313
"slim/slim": "3.*",
1414
"pimple/pimple": "3.*",
15-
"laravel/framework": "^9.0",
15+
"laravel/framework": "^10.0",
1616
"firebase/php-jwt": "5.*",
1717
"adodb/adodb-php": "v5.20.18",
1818
"gettext/gettext": "5.*",

0 commit comments

Comments
 (0)