mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
88 lines
2.9 KiB
PHP
88 lines
2.9 KiB
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Test\DatabaseDrivers;
|
|
|
|
use JKingWeb\Arsse\Arsse;
|
|
use JKingWeb\Arsse\Db\Driver;
|
|
|
|
trait SQLite3 {
|
|
protected static $implementation = "SQLite 3";
|
|
protected static $backend = "SQLite 3";
|
|
protected static $dbResultClass = \JKingWeb\Arsse\Db\SQLite3\Result::class;
|
|
protected static $dbStatementClass = \JKingWeb\Arsse\Db\SQLite3\Statement::class;
|
|
protected static $dbDriverClass = \JKingWeb\Arsse\Db\SQLite3\Driver::class;
|
|
protected static $stringOutput = false;
|
|
|
|
protected static function dbInterface() {
|
|
try {
|
|
$d = new \SQLite3(Arsse::$conf->dbSQLite3File);
|
|
} catch (\Throwable $e) {
|
|
return;
|
|
}
|
|
$d->enableExceptions(true);
|
|
return $d;
|
|
}
|
|
|
|
public static function dbTableList($db): array {
|
|
$listTables = "SELECT name from sqlite_master where type = 'table' and name like 'arsse^_%' escape '^'";
|
|
if ($db instanceof Driver) {
|
|
$tables = $db->query($listTables)->getAll();
|
|
$tables = sizeof($tables) ? array_column($tables, "name") : [];
|
|
} elseif ($db instanceof \PDO) {
|
|
retry:
|
|
try {
|
|
$tables = $db->query($listTables)->fetchAll(\PDO::FETCH_ASSOC);
|
|
} catch (\PDOException $e) {
|
|
goto retry;
|
|
}
|
|
$tables = sizeof($tables) ? array_column($tables, "name") : [];
|
|
} else {
|
|
$tables = [];
|
|
$result = $db->query($listTables);
|
|
while ($r = $result->fetchArray(\SQLITE3_ASSOC)) {
|
|
$tables[] = $r['name'];
|
|
}
|
|
$result->finalize();
|
|
}
|
|
return $tables;
|
|
}
|
|
|
|
public static function dbTruncate($db, array $afterStatements = []): void {
|
|
// rollback any pending transaction
|
|
try {
|
|
$db->exec("ROLLBACK");
|
|
} catch (\Throwable $e) {
|
|
}
|
|
foreach (self::dbTableList($db) as $table) {
|
|
if ($table === "arsse_meta") {
|
|
$db->exec("DELETE FROM $table where key <> 'schema_version'");
|
|
} else {
|
|
$db->exec("DELETE FROM $table");
|
|
}
|
|
}
|
|
foreach ($afterStatements as $st) {
|
|
$db->exec($st);
|
|
}
|
|
}
|
|
|
|
public static function dbRaze($db, array $afterStatements = []): void {
|
|
// rollback any pending transaction
|
|
try {
|
|
$db->exec("ROLLBACK");
|
|
} catch (\Throwable $e) {
|
|
}
|
|
$db->exec("PRAGMA foreign_keys=0");
|
|
foreach (self::dbTableList($db) as $table) {
|
|
$db->exec("DROP TABLE IF EXISTS $table");
|
|
}
|
|
$db->exec("PRAGMA user_version=0");
|
|
$db->exec("PRAGMA foreign_keys=1");
|
|
foreach ($afterStatements as $st) {
|
|
$db->exec($st);
|
|
}
|
|
}
|
|
}
|