006a191544
* Move the database handling to Doctrine DBAL * Move Migrations to Doctrine Migrations * Rename migrations for Doctrine Migrations Uses * Fix Migrations * Change config parameters, introduce db name, host and port parameters and get rid of database url * Change install form for this * Add a CLI command to make migrations * Add config.test.php to be used with APP_ENV=test for testing Signed-off-by: Thomas Citharel <tcit@tcit.fr> CS Signed-off-by: Thomas Citharel <tcit@tcit.fr> Add sqlite to CI and execute migration in test env Signed-off-by: Thomas Citharel <tcit@tcit.fr> Typo Signed-off-by: Thomas Citharel <tcit@tcit.fr> SQLite is already inside the image... Signed-off-by: Thomas Citharel <tcit@tcit.fr> Rebase two new migrations Signed-off-by: Thomas Citharel <tcit@tcit.fr> Move from trait to abstract class and remove legacy migration table after checks Signed-off-by: Thomas Citharel <tcit@tcit.fr> CS Signed-off-by: Thomas Citharel <tcit@tcit.fr> Move doctrine command path inside CI Signed-off-by: Thomas Citharel <tcit@tcit.fr> Move abstract migration class to correct namespace and remove unused command Signed-off-by: Thomas Citharel <tcit@tcit.fr> CS Signed-off-by: Thomas Citharel <tcit@tcit.fr> Check for legacy migration table existence Signed-off-by: Thomas Citharel <tcit@tcit.fr> Check if legacy migration table exists before deleting it Signed-off-by: Thomas Citharel <tcit@tcit.fr> Add messages for skipped migrations and fix an issue with MySQL ERR_NO_DATE Migration Signed-off-by: Thomas Citharel <tcit@tcit.fr>
100 lines
2.7 KiB
PHP
100 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
* is not distributed with this file, you can obtain one at
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
*
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
|
*
|
|
* =============================
|
|
*
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
*
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
*/
|
|
namespace Framadate;
|
|
|
|
use PDO;
|
|
|
|
class FramaDB {
|
|
/**
|
|
* PDO Object, connection to database.
|
|
*/
|
|
private $pdo = null;
|
|
|
|
function __construct($connection_string, $user, $password) {
|
|
$this->pdo = new \PDO($connection_string, $user, $password);
|
|
$this->pdo->setAttribute(\PDO::ATTR_DEFAULT_FETCH_MODE, \PDO::FETCH_OBJ);
|
|
$this->pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
|
|
}
|
|
|
|
/**
|
|
* @return \PDO Connection to database
|
|
*/
|
|
function getPDO() {
|
|
return $this->pdo;
|
|
}
|
|
|
|
/**
|
|
* Find all tables in database.
|
|
*
|
|
* @return array|false The array of table names
|
|
*/
|
|
public function allTables()
|
|
{
|
|
$driver = $this->pdo->getAttribute(\PDO::ATTR_DRIVER_NAME);
|
|
switch ($driver) {
|
|
case 'mysql':
|
|
$result = $this->pdo->query('SHOW TABLES');
|
|
$schemas = $result->fetchAll(\PDO::FETCH_COLUMN);
|
|
break;
|
|
case 'pgsql':
|
|
$result = $this->pdo->query(
|
|
"SELECT table_name FROM information_schema.tables WHERE table_schema='public'"
|
|
);
|
|
$schemas = $result->fetchAll(\PDO::FETCH_COLUMN);
|
|
break;
|
|
default:
|
|
return false;
|
|
}
|
|
|
|
return $schemas;
|
|
}
|
|
|
|
function prepare($sql) {
|
|
return $this->pdo->prepare($sql);
|
|
}
|
|
|
|
function beginTransaction() {
|
|
$this->pdo->beginTransaction();
|
|
}
|
|
|
|
function commit() {
|
|
$this->pdo->commit();
|
|
}
|
|
|
|
function rollback() {
|
|
$this->pdo->rollback();
|
|
}
|
|
|
|
function errorCode() {
|
|
return $this->pdo->errorCode();
|
|
}
|
|
|
|
function errorInfo() {
|
|
return $this->pdo->errorInfo();
|
|
}
|
|
|
|
function query($sql) {
|
|
return $this->pdo->query($sql);
|
|
}
|
|
|
|
public function lastInsertId() {
|
|
return $this->pdo->lastInsertId();
|
|
}
|
|
}
|