connector.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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.
  42. *
  43. * @param object $config
  44. * @return PDO
  45. */
  46. private static function connect_to_sqlite($config)
  47. {
  48. if (file_exists($path = DATABASE_PATH.$config->database.'.sqlite'))
  49. {
  50. return new \PDO('sqlite:'.$path, null, null, static::$options);
  51. }
  52. elseif (file_exists($config->database))
  53. {
  54. return new \PDO('sqlite:'.$config->database, null, null, static::$options);
  55. }
  56. else
  57. {
  58. throw new \Exception("SQLite database [".$config->database."] could not be found.");
  59. }
  60. }
  61. /**
  62. * Connect to a MySQL or PostgreSQL database server.
  63. *
  64. * @param object $config
  65. * @return PDO
  66. */
  67. private static function connect_to_server($config)
  68. {
  69. $dsn = $config->driver.':host='.$config->host.';dbname='.$config->database;
  70. if (isset($config->port))
  71. {
  72. $dsn .= ';port='.$config->port;
  73. }
  74. $connection = new \PDO($dsn, $config->username, $config->password, static::$options);
  75. if (isset($config->charset))
  76. {
  77. $connection->prepare("SET NAMES '".$config->charset."'")->execute();
  78. }
  79. return $connection;
  80. }
  81. /**
  82. * Connect to a generic data source.
  83. *
  84. * @param object $config
  85. * @return PDO
  86. */
  87. private static function connect_to_generic($config)
  88. {
  89. return new \PDO($config->driver.':'.$config->dsn, $config->username, $config->password, static::$options);
  90. }
  91. /**
  92. * Get the configuration options for a database connection.
  93. *
  94. * @param string $connection
  95. * @return object
  96. */
  97. private static function configuration($connection)
  98. {
  99. $config = Config::get('db.connections');
  100. if ( ! array_key_exists($connection, $config))
  101. {
  102. throw new \Exception("Database connection [$connection] is not defined.");
  103. }
  104. return (object) $config[$connection];
  105. }
  106. }