2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-19 14:10:13 -07:00
|
|
|
* Datasource connection manager
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-06-19 20:28:40 -04:00
|
|
|
* Provides an interface for loading and enumerating connections defined in app/Config/database.php
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2017-06-10 23:33:55 +02:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-11 00:10:52 +02:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2008-05-30 11:40:08 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2017-06-11 00:10:52 +02:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 23:33:55 +02:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Model
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.10.x.1402
|
2017-06-11 00:23:14 +02:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
|
2010-12-04 11:16:42 -04:30
|
|
|
App::uses('DataSource', 'Model/Datasource');
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Manages loaded instances of DataSource objects
|
|
|
|
*
|
2012-07-18 03:55:29 +02:00
|
|
|
* Provides an interface for loading and enumerating connections defined in
|
2011-12-08 07:35:02 -08:00
|
|
|
* app/Config/database.php
|
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Model
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-07-05 23:08:25 -04:00
|
|
|
class ConnectionManager {
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds a loaded instance of the Connections object
|
|
|
|
*
|
2009-03-19 14:10:13 -07:00
|
|
|
* @var DATABASE_CONFIG
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
public static $config = null;
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds instances DataSource objects
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
protected static $_dataSources = array();
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Contains a list of all file and class names used in Connection settings
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
protected static $_connectionsEnum = array();
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2011-05-27 01:30:42 -04:30
|
|
|
* Indicates if the init code for this class has already been executed
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2014-07-03 15:36:42 +02:00
|
|
|
* @var bool
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-08-20 00:43:34 -04:00
|
|
|
protected static $_init = false;
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-12-06 22:47:43 -04:30
|
|
|
* Loads connections configuration.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-07-30 18:38:57 -04:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-08-20 00:43:34 -04:00
|
|
|
protected static function _init() {
|
2017-05-12 02:02:36 -04:00
|
|
|
include_once CONFIG . 'database.php';
|
2010-12-06 22:47:43 -04:30
|
|
|
if (class_exists('DATABASE_CONFIG')) {
|
2015-07-21 10:22:53 +02:00
|
|
|
static::$config = new DATABASE_CONFIG();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2015-07-21 10:22:53 +02:00
|
|
|
static::$_init = true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets a reference to a DataSource object
|
|
|
|
*
|
2011-06-19 20:28:40 -04:00
|
|
|
* @param string $name The name of the DataSource, as defined in app/Config/database.php
|
2011-07-31 22:57:17 -04:00
|
|
|
* @return DataSource Instance
|
2011-10-15 20:06:31 +02:00
|
|
|
* @throws MissingDatasourceException
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
public static function getDataSource($name) {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_init)) {
|
|
|
|
static::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2015-07-21 10:22:53 +02:00
|
|
|
if (!empty(static::$_dataSources[$name])) {
|
|
|
|
return static::$_dataSources[$name];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-09-24 22:56:02 -04:00
|
|
|
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_connectionsEnum[$name])) {
|
|
|
|
static::_getConnectionObject($name);
|
2010-12-07 19:59:07 -04:30
|
|
|
}
|
|
|
|
|
2015-07-21 10:22:53 +02:00
|
|
|
static::loadDataSource($name);
|
|
|
|
$conn = static::$_connectionsEnum[$name];
|
2009-09-24 23:48:52 -04:00
|
|
|
$class = $conn['classname'];
|
2009-09-24 22:56:02 -04:00
|
|
|
|
2013-03-13 17:52:47 +01:00
|
|
|
if (strpos(App::location($class), 'Datasource') === false) {
|
2013-03-12 21:56:08 -04:00
|
|
|
throw new MissingDatasourceException(array(
|
|
|
|
'class' => $class,
|
|
|
|
'plugin' => null,
|
2013-03-13 17:52:47 +01:00
|
|
|
'message' => 'Datasource is not found in Model/Datasource package.'
|
2013-03-12 21:56:08 -04:00
|
|
|
));
|
|
|
|
}
|
2015-07-21 10:22:53 +02:00
|
|
|
static::$_dataSources[$name] = new $class(static::$config->{$name});
|
|
|
|
static::$_dataSources[$name]->configKeyName = $name;
|
2013-03-13 17:52:47 +01:00
|
|
|
|
2015-07-21 10:22:53 +02:00
|
|
|
return static::$_dataSources[$name];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets the list of available DataSource connections
|
2011-05-27 02:28:38 -04:30
|
|
|
* This will only return the datasources instantiated by this manager
|
|
|
|
* It differs from enumConnectionObjects, since the latter will return all configured connections
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @return array List of available connections
|
|
|
|
*/
|
2010-07-05 23:08:25 -04:00
|
|
|
public static function sourceList() {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_init)) {
|
|
|
|
static::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2015-07-21 10:22:53 +02:00
|
|
|
return array_keys(static::$_dataSources);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-21 13:18:00 -05:00
|
|
|
* Gets a DataSource name from an object reference.
|
|
|
|
*
|
2011-07-31 22:57:17 -04:00
|
|
|
* @param DataSource $source DataSource object
|
2014-11-05 13:03:27 +01:00
|
|
|
* @return string|null Datasource name, or null if source is not present
|
2010-01-21 13:18:00 -05:00
|
|
|
* in the ConnectionManager.
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-01-05 22:15:17 -04:30
|
|
|
public static function getSourceName($source) {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_init)) {
|
|
|
|
static::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2015-07-21 10:22:53 +02:00
|
|
|
foreach (static::$_dataSources as $name => $ds) {
|
2011-01-05 22:15:17 -04:30
|
|
|
if ($ds === $source) {
|
2010-01-11 09:48:53 -05:00
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
}
|
2011-05-27 02:13:35 -04:30
|
|
|
return null;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Loads the DataSource class for the given connection name
|
|
|
|
*
|
2012-05-13 01:43:31 +01:00
|
|
|
* @param string|array $connName A string name of the connection, as defined in app/Config/database.php,
|
2014-11-05 13:03:27 +01:00
|
|
|
* or an array containing the filename (without extension) and class name of the object,
|
|
|
|
* to be found in app/Model/Datasource/ or lib/Cake/Model/Datasource/.
|
2014-07-03 15:36:42 +02:00
|
|
|
* @return bool True on success, null on failure or false if the class is already loaded
|
2011-10-15 20:06:31 +02:00
|
|
|
* @throws MissingDatasourceException
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-07-05 23:08:25 -04:00
|
|
|
public static function loadDataSource($connName) {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_init)) {
|
|
|
|
static::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (is_array($connName)) {
|
|
|
|
$conn = $connName;
|
|
|
|
} else {
|
2015-07-21 10:22:53 +02:00
|
|
|
$conn = static::$_connectionsEnum[$connName];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
if (class_exists($conn['classname'], false)) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
$plugin = $package = null;
|
|
|
|
if (!empty($conn['plugin'])) {
|
2011-01-05 22:15:17 -04:30
|
|
|
$plugin = $conn['plugin'] . '.';
|
2010-12-04 12:24:15 -04:30
|
|
|
}
|
|
|
|
if (!empty($conn['package'])) {
|
|
|
|
$package = '/' . $conn['package'];
|
|
|
|
}
|
2009-09-24 22:56:02 -04:00
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
App::uses($conn['classname'], $plugin . 'Model/Datasource' . $package);
|
|
|
|
if (!class_exists($conn['classname'])) {
|
2011-10-15 20:06:31 +02:00
|
|
|
throw new MissingDatasourceException(array(
|
|
|
|
'class' => $conn['classname'],
|
2011-10-16 13:40:36 +02:00
|
|
|
'plugin' => substr($plugin, 0, -1)
|
2011-10-15 20:06:31 +02:00
|
|
|
));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-09-24 16:23:24 -04:00
|
|
|
return true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2014-11-05 13:03:27 +01:00
|
|
|
* Returns a list of connections
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @return array An associative array of elements where the key is the connection name
|
2014-11-05 13:03:27 +01:00
|
|
|
* (as defined in Connections), and the value is an array with keys 'filename' and 'classname'.
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-07-05 23:08:25 -04:00
|
|
|
public static function enumConnectionObjects() {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_init)) {
|
|
|
|
static::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2015-07-21 10:22:53 +02:00
|
|
|
return (array)static::$config;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Dynamically creates a DataSource object at runtime, with the given name and settings
|
|
|
|
*
|
|
|
|
* @param string $name The DataSource name
|
|
|
|
* @param array $config The DataSource configuration settings
|
2014-11-05 13:03:27 +01:00
|
|
|
* @return DataSource|null A reference to the DataSource object, or null if creation failed
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-12-06 22:47:43 -04:30
|
|
|
public static function create($name = '', $config = array()) {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_init)) {
|
|
|
|
static::_init();
|
2010-12-06 22:47:43 -04:30
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty($name) || empty($config) || array_key_exists($name, static::$_connectionsEnum)) {
|
2011-04-16 22:57:05 -04:30
|
|
|
return null;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2015-07-21 10:22:53 +02:00
|
|
|
static::$config->{$name} = $config;
|
|
|
|
static::$_connectionsEnum[$name] = static::_connectionData($config);
|
|
|
|
$return = static::getDataSource($name);
|
2008-08-07 15:36:26 +00:00
|
|
|
return $return;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2011-04-16 22:57:05 -04:30
|
|
|
/**
|
|
|
|
* Removes a connection configuration at runtime given its name
|
|
|
|
*
|
|
|
|
* @param string $name the connection name as it was created
|
2014-07-03 15:36:42 +02:00
|
|
|
* @return bool success if connection was removed, false if it does not exist
|
2011-04-16 22:57:05 -04:30
|
|
|
*/
|
|
|
|
public static function drop($name) {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (empty(static::$_init)) {
|
|
|
|
static::_init();
|
2011-04-16 22:57:05 -04:30
|
|
|
}
|
|
|
|
|
2015-07-21 10:22:53 +02:00
|
|
|
if (!isset(static::$config->{$name})) {
|
2011-04-16 22:57:05 -04:30
|
|
|
return false;
|
|
|
|
}
|
2015-07-21 10:22:53 +02:00
|
|
|
unset(static::$_connectionsEnum[$name], static::$_dataSources[$name], static::$config->{$name});
|
2011-04-16 22:57:05 -04:30
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-01-16 15:03:13 -02:00
|
|
|
/**
|
|
|
|
* Gets a list of class and file names associated with the user-defined DataSource connections
|
|
|
|
*
|
2011-07-30 18:38:57 -04:00
|
|
|
* @param string $name Connection name
|
2010-01-16 15:03:13 -02:00
|
|
|
* @return void
|
2011-07-30 18:38:57 -04:00
|
|
|
* @throws MissingDatasourceConfigException
|
2010-01-16 15:03:13 -02:00
|
|
|
*/
|
2010-12-07 19:59:07 -04:30
|
|
|
protected static function _getConnectionObject($name) {
|
2015-07-21 10:22:53 +02:00
|
|
|
if (!empty(static::$config->{$name})) {
|
|
|
|
static::$_connectionsEnum[$name] = static::_connectionData(static::$config->{$name});
|
2010-01-16 15:03:13 -02:00
|
|
|
} else {
|
2011-01-22 01:11:22 -04:30
|
|
|
throw new MissingDatasourceConfigException(array('config' => $name));
|
2010-01-16 15:03:13 -02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns the file, class name, and parent for the given driver.
|
|
|
|
*
|
2011-07-30 18:38:57 -04:00
|
|
|
* @param array $config Array with connection configuration. Key 'datasource' is required
|
2009-09-25 01:02:41 -04:00
|
|
|
* @return array An indexed array with: filename, classname, plugin and parent
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-08-20 00:43:34 -04:00
|
|
|
protected static function _connectionData($config) {
|
2010-12-04 12:24:15 -04:30
|
|
|
$package = $classname = $plugin = null;
|
2010-02-16 22:35:16 -05:00
|
|
|
|
2010-12-04 12:24:15 -04:30
|
|
|
list($plugin, $classname) = pluginSplit($config['datasource']);
|
|
|
|
if (strpos($classname, '/') !== false) {
|
|
|
|
$package = dirname($classname);
|
|
|
|
$classname = basename($classname);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-12-04 12:24:15 -04:30
|
|
|
return compact('package', 'classname', 'plugin');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-04 14:18:04 -05:00
|
|
|
|
2011-04-17 13:13:02 +02:00
|
|
|
}
|