connector.php 2.7 KB

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