connector.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php namespace System\DB;
  2. use System\Config;
  3. class Connector {
  4. /**
  5. * The PDO connection options.
  6. *
  7. * @var array
  8. */
  9. public static $options = array(
  10. \PDO::ATTR_CASE => \PDO::CASE_LOWER,
  11. \PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
  12. \PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
  13. \PDO::ATTR_STRINGIFY_FETCHES => false,
  14. \PDO::ATTR_EMULATE_PREPARES => false,
  15. );
  16. /**
  17. * Establish a PDO database connection.
  18. *
  19. * @param string $connection
  20. * @return PDO
  21. */
  22. public static function connect($connection)
  23. {
  24. $config = static::configuration($connection);
  25. switch ($config->driver)
  26. {
  27. case 'sqlite':
  28. return static::connect_to_sqlite($config);
  29. case 'mysql':
  30. case 'pgsql':
  31. return static::connect_to_server($config);
  32. default:
  33. return static::connect_to_generic($config);
  34. }
  35. throw new \Exception('Database driver '.$config->driver.' is not supported.');
  36. }
  37. /**
  38. * Establish a PDO connection to a SQLite database.
  39. *
  40. * SQLite database paths can be specified either relative to the application/db
  41. * directory, or as an absolute path to any location on the file system. In-memory
  42. * databases are also supported.
  43. *
  44. * @param object $config
  45. * @return PDO
  46. */
  47. private static function connect_to_sqlite($config)
  48. {
  49. if ($config->database == ':memory:')
  50. {
  51. return new \PDO('sqlite::memory:', null, null, static::$options);
  52. }
  53. elseif (file_exists($path = DATABASE_PATH.$config->database.'.sqlite'))
  54. {
  55. return new \PDO('sqlite:'.$path, null, null, static::$options);
  56. }
  57. elseif (file_exists($config->database))
  58. {
  59. return new \PDO('sqlite:'.$config->database, null, null, static::$options);
  60. }
  61. else
  62. {
  63. throw new \Exception("SQLite database [".$config->database."] could not be found.");
  64. }
  65. }
  66. /**
  67. * Connect to a MySQL or PostgreSQL database server.
  68. *
  69. * @param object $config
  70. * @return PDO
  71. */
  72. private static function connect_to_server($config)
  73. {
  74. $dsn = $config->driver.':host='.$config->host.';dbname='.$config->database;
  75. if (isset($config->port))
  76. {
  77. $dsn .= ';port='.$config->port;
  78. }
  79. $connection = new \PDO($dsn, $config->username, $config->password, static::$options);
  80. if (isset($config->charset))
  81. {
  82. $connection->prepare("SET NAMES '".$config->charset."'")->execute();
  83. }
  84. return $connection;
  85. }
  86. /**
  87. * Connect to a generic data source.
  88. *
  89. * @param object $config
  90. * @return PDO
  91. */
  92. private static function connect_to_generic($config)
  93. {
  94. return new \PDO($config->driver.':'.$config->dsn, $config->username, $config->password, static::$options);
  95. }
  96. /**
  97. * Get the configuration options for a database connection.
  98. *
  99. * @param string $connection
  100. * @return object
  101. */
  102. private static function configuration($connection)
  103. {
  104. $config = Config::get('db.connections');
  105. if ( ! array_key_exists($connection, $config))
  106. {
  107. throw new \Exception("Database connection [$connection] is not defined.");
  108. }
  109. return (object) $config[$connection];
  110. }
  111. }