123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <?php
- namespace Illuminate\Database;
- use PDO;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Str;
- use InvalidArgumentException;
- use Illuminate\Support\ConfigurationUrlParser;
- use Illuminate\Database\Connectors\ConnectionFactory;
- class DatabaseManager implements ConnectionResolverInterface
- {
-
- protected $app;
-
- protected $factory;
-
- protected $connections = [];
-
- protected $extensions = [];
-
- protected $reconnector;
-
- public function __construct($app, ConnectionFactory $factory)
- {
- $this->app = $app;
- $this->factory = $factory;
- $this->reconnector = function ($connection) {
- $this->reconnect($connection->getName());
- };
- }
-
- public function connection($name = null)
- {
- [$database, $type] = $this->parseConnectionName($name);
- $name = $name ?: $database;
-
-
-
- if (! isset($this->connections[$name])) {
- $this->connections[$name] = $this->configure(
- $this->makeConnection($database), $type
- );
- }
- return $this->connections[$name];
- }
-
- protected function parseConnectionName($name)
- {
- $name = $name ?: $this->getDefaultConnection();
- return Str::endsWith($name, ['::read', '::write'])
- ? explode('::', $name, 2) : [$name, null];
- }
-
- protected function makeConnection($name)
- {
- $config = $this->configuration($name);
-
-
-
- if (isset($this->extensions[$name])) {
- return call_user_func($this->extensions[$name], $config, $name);
- }
-
-
-
- if (isset($this->extensions[$driver = $config['driver']])) {
- return call_user_func($this->extensions[$driver], $config, $name);
- }
- return $this->factory->make($config, $name);
- }
-
- protected function configuration($name)
- {
- $name = $name ?: $this->getDefaultConnection();
-
-
-
- $connections = $this->app['config']['database.connections'];
- if (is_null($config = Arr::get($connections, $name))) {
- throw new InvalidArgumentException("Database [{$name}] not configured.");
- }
- return (new ConfigurationUrlParser)
- ->parseConfiguration($config);
- }
-
- protected function configure(Connection $connection, $type)
- {
- $connection = $this->setPdoForType($connection, $type);
-
-
-
- if ($this->app->bound('events')) {
- $connection->setEventDispatcher($this->app['events']);
- }
-
-
-
- $connection->setReconnector($this->reconnector);
- return $connection;
- }
-
- protected function setPdoForType(Connection $connection, $type = null)
- {
- if ($type === 'read') {
- $connection->setPdo($connection->getReadPdo());
- } elseif ($type === 'write') {
- $connection->setReadPdo($connection->getPdo());
- }
- return $connection;
- }
-
- public function purge($name = null)
- {
- $name = $name ?: $this->getDefaultConnection();
- $this->disconnect($name);
- unset($this->connections[$name]);
- }
-
- public function disconnect($name = null)
- {
- if (isset($this->connections[$name = $name ?: $this->getDefaultConnection()])) {
- $this->connections[$name]->disconnect();
- }
- }
-
- public function reconnect($name = null)
- {
- $this->disconnect($name = $name ?: $this->getDefaultConnection());
- if (! isset($this->connections[$name])) {
- return $this->connection($name);
- }
- return $this->refreshPdoConnections($name);
- }
-
- protected function refreshPdoConnections($name)
- {
- $fresh = $this->makeConnection($name);
- return $this->connections[$name]
- ->setPdo($fresh->getPdo())
- ->setReadPdo($fresh->getReadPdo());
- }
-
- public function getDefaultConnection()
- {
- return $this->app['config']['database.default'];
- }
-
- public function setDefaultConnection($name)
- {
- $this->app['config']['database.default'] = $name;
- }
-
- public function supportedDrivers()
- {
- return ['mysql', 'pgsql', 'sqlite', 'sqlsrv'];
- }
-
- public function availableDrivers()
- {
- return array_intersect(
- $this->supportedDrivers(),
- str_replace('dblib', 'sqlsrv', PDO::getAvailableDrivers())
- );
- }
-
- public function extend($name, callable $resolver)
- {
- $this->extensions[$name] = $resolver;
- }
-
- public function getConnections()
- {
- return $this->connections;
- }
-
- public function setReconnector(callable $reconnector)
- {
- $this->reconnector = $reconnector;
- }
-
- public function __call($method, $parameters)
- {
- return $this->connection()->$method(...$parameters);
- }
- }
|