mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-04 22:46:10 -05:00
* PDO refactor * Automatic prefix when using the syntax `_tableName` * Uniformity: MySQL is now PDO::ATTR_EMULATE_PREPARES = false just like SQLite and PostgreSQL, with consequences such as only one statement per query * Use PDO methods exec(), query(), prepare() + execute() in a more efficient way * Remove auto-update SQL code for versions older than FreshRSS 1.5 (3 years old) * The name of the default category is set in PHP instead of in the DB (simplies SQL and allows changing the name according to the FreshRSS language) * Rename `->bd` to `->pdo` (less of a frenshism, and more informative) * Fix some requests, which were not compatible with MySQL prepared statements * Whitespace * Fix syntax for PostgreSQL sequences + MySQL install * Minor formatting * Fix lastInsertId for PostgreSQL * Use PHP 5.6+ const Take advantage of https://github.com/FreshRSS/FreshRSS/pull/2527 https://www.php.net/manual/en/migration56.new-features.php * A bit of forgotten PHP 5.6 simplification for cURL * Forgotten $s * Mini fix custom user config https://github.com/FreshRSS/FreshRSS/pull/2490/files#r326290346 * More work on install.php but not finished * install.php working * More cleaning of PDO in install * Even more simplification Take advantage of PDO->exec() to run multiple statements * Disallow changing the name of the default category https://github.com/FreshRSS/FreshRSS/pull/2522#discussion_r326967724
73 lines
2.1 KiB
PHP
73 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This class is used to test database is well-constructed.
|
|
*/
|
|
class FreshRSS_DatabaseDAOPGSQL extends FreshRSS_DatabaseDAOSQLite {
|
|
|
|
//PostgreSQL error codes
|
|
const UNDEFINED_COLUMN = '42703';
|
|
const UNDEFINED_TABLE = '42P01';
|
|
|
|
public function tablesAreCorrect() {
|
|
$db = FreshRSS_Context::$system_conf->db;
|
|
$dbowner = $db['user'];
|
|
$sql = 'SELECT * FROM pg_catalog.pg_tables where tableowner=?';
|
|
$stm = $this->pdo->prepare($sql);
|
|
$values = array($dbowner);
|
|
$stm->execute($values);
|
|
$res = $stm->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
$tables = array(
|
|
$this->pdo->prefix() . 'category' => false,
|
|
$this->pdo->prefix() . 'feed' => false,
|
|
$this->pdo->prefix() . 'entry' => false,
|
|
$this->pdo->prefix() . 'entrytmp' => false,
|
|
$this->pdo->prefix() . 'tag' => false,
|
|
$this->pdo->prefix() . 'entrytag' => false,
|
|
);
|
|
foreach ($res as $value) {
|
|
$tables[array_pop($value)] = true;
|
|
}
|
|
|
|
return count(array_keys($tables, true, true)) == count($tables);
|
|
}
|
|
|
|
public function getSchema($table) {
|
|
$sql = 'select column_name as field, data_type as type, column_default as default, is_nullable as null from INFORMATION_SCHEMA.COLUMNS where table_name = ?';
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->execute(array($this->pdo->prefix() . $table));
|
|
return $this->listDaoToSchema($stm->fetchAll(PDO::FETCH_ASSOC));
|
|
}
|
|
|
|
public function daoToSchema($dao) {
|
|
return array(
|
|
'name' => $dao['field'],
|
|
'type' => strtolower($dao['type']),
|
|
'notnull' => (bool)$dao['null'],
|
|
'default' => $dao['default'],
|
|
);
|
|
}
|
|
|
|
public function size($all = true) {
|
|
$db = FreshRSS_Context::$system_conf->db;
|
|
$sql = 'SELECT pg_size_pretty(pg_database_size(?))';
|
|
$values = array($db['base']);
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->execute($values);
|
|
$res = $stm->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
return $res[0];
|
|
}
|
|
|
|
public function optimize() {
|
|
$ok = true;
|
|
$tables = array('category', 'feed', 'entry', 'entrytmp', 'tag', 'entrytag');
|
|
|
|
foreach ($tables as $table) {
|
|
$sql = 'VACUUM `_' . $table . '`';
|
|
$ok &= ($this->pdo->exec($sql) !== false);
|
|
}
|
|
return $ok;
|
|
}
|
|
}
|