connector.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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 $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 object $connection
  20. * @return PDO
  21. */
  22. public function connect($config)
  23. {
  24. switch ($config->driver)
  25. {
  26. case 'sqlite':
  27. return $this->connect_to_sqlite($config);
  28. case 'mysql':
  29. case 'pgsql':
  30. return $this->connect_to_server($config);
  31. default:
  32. return $this->connect_to_generic($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. In-memory
  41. * databases are also supported.
  42. *
  43. * @param object $config
  44. * @return PDO
  45. */
  46. private function connect_to_sqlite($config)
  47. {
  48. if ($config->database == ':memory:')
  49. {
  50. return new \PDO('sqlite::memory:', null, null, $this->options);
  51. }
  52. elseif (file_exists($path = DATABASE_PATH.$config->database.'.sqlite'))
  53. {
  54. return new \PDO('sqlite:'.$path, null, null, $this->options);
  55. }
  56. elseif (file_exists($config->database))
  57. {
  58. return new \PDO('sqlite:'.$config->database, null, null, $this->options);
  59. }
  60. throw new \Exception("SQLite database [".$config->database."] could not be found.");
  61. }
  62. /**
  63. * Connect to a MySQL or PostgreSQL database server.
  64. *
  65. * @param object $config
  66. * @return PDO
  67. */
  68. private function connect_to_server($config)
  69. {
  70. $dsn = $config->driver.':host='.$config->host.';dbname='.$config->database;
  71. if (isset($config->port)) $dsn .= ';port='.$config->port;
  72. $connection = new \PDO($dsn, $config->username, $config->password, $this->options);
  73. if (isset($config->charset))
  74. {
  75. $connection->prepare("SET NAMES '".$config->charset."'")->execute();
  76. }
  77. return $connection;
  78. }
  79. /**
  80. * Connect to a generic data source.
  81. *
  82. * @param object $config
  83. * @return PDO
  84. */
  85. private function connect_to_generic($config)
  86. {
  87. return new \PDO($config->driver.':'.$config->dsn, $config->username, $config->password, $this->options);
  88. }
  89. }