szurubooru/src/DatabaseConnection.php

45 lines
804 B
PHP
Raw Normal View History

<?php
namespace Szurubooru;
use Szurubooru\Config;
2014-09-14 18:41:14 +02:00
class DatabaseConnection
{
2014-09-14 16:16:15 +02:00
private $pdo;
private $config;
public function __construct(Config $config)
{
2014-09-14 16:16:15 +02:00
$this->config = $config;
}
2014-09-14 16:16:15 +02:00
public function getPDO()
{
2014-09-14 16:16:15 +02:00
if (!$this->pdo)
{
$this->createPDO();
}
return $this->pdo;
}
public function getDriver()
{
return $this->getPDO()->getAttribute(\PDO::ATTR_DRIVER_NAME);
}
2014-09-14 16:16:15 +02:00
public function close()
{
2014-09-14 16:16:15 +02:00
$this->pdo = null;
}
2014-09-14 16:16:15 +02:00
private function createPDO()
{
2014-09-14 16:16:15 +02:00
$cwd = getcwd();
if ($this->config->getDataDirectory())
chdir($this->config->getDataDirectory());
$this->pdo = new PDOEx($this->config->database->dsn, $this->config->database->user,
2014-09-28 16:26:44 +02:00
$this->config->database->password);
2014-09-14 16:16:15 +02:00
$this->pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
chdir($cwd);
}
}