connector.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. );
  15. /**
  16. * Establish a PDO database connection.
  17. *
  18. * @param string $connection
  19. * @return PDO
  20. */
  21. public static function connect($connection)
  22. {
  23. $config = static::configuration($connection);
  24. switch ($config->driver)
  25. {
  26. case 'sqlite':
  27. return static::connect_to_sqlite($config);
  28. case 'mysql':
  29. case 'pgsql':
  30. return static::connect_to_server($config);
  31. }
  32. throw new \Exception('Database driver '.$config->driver.' is not supported.');
  33. }
  34. /**
  35. * Establish a PDO connection to a SQLite database.
  36. *
  37. * SQLite database paths can be specified either relative to the application/db
  38. * directory, or as an absolute path to any location on the file system.
  39. *
  40. * @param array $config
  41. * @return PDO
  42. */
  43. private static function connect_to_sqlite($config)
  44. {
  45. if (file_exists($path = APP_PATH.'storage/db/'.$config->database.'.sqlite'))
  46. {
  47. return new \PDO('sqlite:'.$path, null, null, static::$options);
  48. }
  49. elseif (file_exists($config->database))
  50. {
  51. return new \PDO('sqlite:'.$config->database, null, null, static::$options);
  52. }
  53. else
  54. {
  55. throw new \Exception("SQLite database [".$config->database."] could not be found.");
  56. }
  57. }
  58. /**
  59. * Connect to a MySQL or PostgreSQL database server.
  60. *
  61. * @param array $config
  62. * @return PDO
  63. */
  64. private static function connect_to_server($config)
  65. {
  66. $dsn = $config->driver.':host='.$config->host.';dbname='.$config->database;
  67. if (isset($config->port))
  68. {
  69. $dsn .= ';port='.$config->port;
  70. }
  71. $connection = new \PDO($dsn, $config->username, $config->password, static::$options);
  72. if (isset($config->charset))
  73. {
  74. $connection->prepare("SET NAMES '".$config->charset."'")->execute();
  75. }
  76. return $connection;
  77. }
  78. /**
  79. * Get the configuration options for a database connection.
  80. *
  81. * @param string $connection
  82. * @return object
  83. */
  84. private static function configuration($connection)
  85. {
  86. $config = Config::get('db.connections');
  87. if ( ! array_key_exists($connection, $config))
  88. {
  89. throw new \Exception("Database connection [$connection] is not defined.");
  90. }
  91. return (object) $config[$connection];
  92. }
  93. }