mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 09:02:41 +00:00
f902346b6c
- RuntimeData has now been replaced by a single static Data class - The Data class has a load() method which fills the same role as the constructor of RuntimeData - The static Lang class is now an instantiable class and is a member of Data - All tests have been adjusted and pass - The Exception tests no longer require convoluted workarounds: a simple mock for Data::$l suffices; Lang tests also use a mock to prevent loops now instead of using a workaround
137 lines
No EOL
5.8 KiB
PHP
137 lines
No EOL
5.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Db\SQLite3;
|
|
use JKingWeb\Arsse\Data;
|
|
use JKingWeb\Arsse\Db\Exception;
|
|
use JKingWeb\Arsse\Db\ExceptionInput;
|
|
use JKingWeb\Arsse\Db\ExceptionTimeout;
|
|
|
|
|
|
class Driver extends \JKingWeb\Arsse\Db\AbstractDriver {
|
|
use ExceptionBuilder;
|
|
|
|
const SQLITE_BUSY = 5;
|
|
const SQLITE_CONSTRAINT = 19;
|
|
const SQLITE_MISMATCH = 20;
|
|
|
|
protected $db;
|
|
|
|
public function __construct(bool $install = false) {
|
|
// check to make sure required extension is loaded
|
|
if(!class_exists("SQLite3")) throw new Exception("extMissing", self::driverName());
|
|
$file = Data::$conf->dbSQLite3File;
|
|
// if the file exists (or we're initializing the database), try to open it
|
|
try {
|
|
$this->db = new \SQLite3($file, ($install) ? \SQLITE3_OPEN_READWRITE | \SQLITE3_OPEN_CREATE : \SQLITE3_OPEN_READWRITE, Data::$conf->dbSQLite3Key);
|
|
} catch(\Throwable $e) {
|
|
// if opening the database doesn't work, check various pre-conditions to find out what the problem might be
|
|
if(!file_exists($file)) {
|
|
if($install && !is_writable(dirname($file))) throw new Exception("fileUncreatable", dirname($file));
|
|
throw new Exception("fileMissing", $file);
|
|
}
|
|
if(!is_readable($file) && !is_writable($file)) throw new Exception("fileUnusable", $file);
|
|
if(!is_readable($file)) throw new Exception("fileUnreadable", $file);
|
|
if(!is_writable($file)) throw new Exception("fileUnwritable", $file);
|
|
// otherwise the database is probably corrupt
|
|
throw new Exception("fileCorrupt", $mainfile);
|
|
}
|
|
try {
|
|
// set initial options
|
|
$this->db->enableExceptions(true);
|
|
$this->exec("PRAGMA journal_mode = wal");
|
|
$this->exec("PRAGMA foreign_keys = yes");
|
|
// Create custom functions
|
|
$this->db->createFunction('DATEFORMAT', [CustomFunctions::class, 'dateFormat'], 2);
|
|
} catch(\Exception $e) {
|
|
list($excClass, $excMsg, $excData) = $this->exceptionBuild();
|
|
throw new $excClass($excMsg, $excData);
|
|
}
|
|
}
|
|
|
|
public function __destruct() {
|
|
try{$this->db->close();} catch(\Exception $e) {}
|
|
unset($this->db);
|
|
}
|
|
|
|
|
|
static public function driverName(): string {
|
|
return Data::$l->msg("Driver.Db.SQLite3.Name");
|
|
}
|
|
|
|
public function schemaVersion(): int {
|
|
return $this->query("PRAGMA user_version")->getValue();
|
|
}
|
|
|
|
public function schemaUpdate(int $to): bool {
|
|
$ver = $this->schemaVersion();
|
|
if(!Data::$conf->dbSQLite3AutoUpd) throw new Exception("updateManual", ['version' => $ver, 'driver_name' => $this->driverName()]);
|
|
if($ver >= $to) throw new Exception("updateTooNew", ['difference' => ($ver - $to), 'current' => $ver, 'target' => $to, 'driver_name' => $this->driverName()]);
|
|
$sep = \DIRECTORY_SEPARATOR;
|
|
$path = Data::$conf->dbSchemaBase.$sep."SQLite3".$sep;
|
|
$this->lock();
|
|
$this->begin();
|
|
for($a = $ver; $a < $to; $a++) {
|
|
$this->begin();
|
|
try {
|
|
$file = $path.$a.".sql";
|
|
if(!file_exists($file)) throw new Exception("updateFileMissing", ['file' => $file, 'driver_name' => $this->driverName(), 'current' => $a]);
|
|
if(!is_readable($file)) throw new Exception("updateFileUnreadable", ['file' => $file, 'driver_name' => $this->driverName(), 'current' => $a]);
|
|
$sql = @file_get_contents($file);
|
|
if($sql===false) throw new Exception("updateFileUnusable", ['file' => $file, 'driver_name' => $this->driverName(), 'current' => $a]);
|
|
try {
|
|
$this->exec($sql);
|
|
} catch(\Exception $e) {
|
|
throw new Exception("updateFileError", ['file' => $file, 'driver_name' => $this->driverName(), 'current' => $a, 'message' => $this->getError()]);
|
|
}
|
|
if($this->schemaVersion() != $a+1) throw new Exception("updateFileIncomplete", ['file' => $file, 'driver_name' => $this->driverName(), 'current' => $a]);
|
|
} catch(\Throwable $e) {
|
|
// undo any partial changes from the failed update
|
|
$this->rollback();
|
|
$this->unlock();
|
|
// commit any successful updates if updating by more than one version
|
|
$this->commit(true);
|
|
// throw the error received
|
|
throw $e;
|
|
}
|
|
$this->commit();
|
|
}
|
|
$this->unlock();
|
|
$this->commit();
|
|
return true;
|
|
}
|
|
|
|
protected function getError(): string {
|
|
return $this->db->lastErrorMsg();
|
|
}
|
|
|
|
public function exec(string $query): bool {
|
|
try {
|
|
return (bool) $this->db->exec($query);
|
|
} catch(\Exception $e) {
|
|
list($excClass, $excMsg, $excData) = $this->exceptionBuild();
|
|
throw new $excClass($excMsg, $excData);
|
|
}
|
|
}
|
|
|
|
public function query(string $query): \JKingWeb\Arsse\Db\Result {
|
|
try {
|
|
$r = $this->db->query($query);
|
|
} catch(\Exception $e) {
|
|
list($excClass, $excMsg, $excData) = $this->exceptionBuild();
|
|
throw new $excClass($excMsg, $excData);
|
|
}
|
|
$changes = $this->db->changes();
|
|
$lastId = $this->db->lastInsertRowID();
|
|
return new Result($r, [$changes, $lastId]);
|
|
}
|
|
|
|
public function prepareArray(string $query, array $paramTypes): \JKingWeb\Arsse\Db\Statement {
|
|
try {
|
|
$s = $this->db->prepare($query);
|
|
} catch(\Exception $e) {
|
|
list($excClass, $excMsg, $excData) = $this->exceptionBuild();
|
|
throw new $excClass($excMsg, $excData);
|
|
}
|
|
return new Statement($this->db, $s, $paramTypes);
|
|
}
|
|
} |