mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
1529fc367a
Null and (>0) integer tested so far Many related changes to accomodate the necessary type juggling (required for databases other than SQLite).
93 lines
No EOL
4 KiB
PHP
93 lines
No EOL
4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\NewsSync\Db;
|
|
|
|
class DriverSQLite3 implements Driver {
|
|
use Common;
|
|
|
|
protected $db;
|
|
protected $data;
|
|
|
|
public function __construct(\JKingWeb\NewsSync\RuntimeData $data, bool $install = false) {
|
|
// check to make sure required extension is loaded
|
|
if(!class_exists("SQLite3")) throw new Exception("extMissing", self::driverName());
|
|
$this->data = $data;
|
|
$file = $data->conf->dbSQLite3File;
|
|
// if the file exists (or we're initializing the database), try to open it and set initial options
|
|
try {
|
|
$this->db = new \SQLite3($file, ($install) ? \SQLITE3_OPEN_READWRITE | \SQLITE3_OPEN_CREATE : \SQLITE3_OPEN_READWRITE, $data->conf->dbSQLite3Key);
|
|
$this->db->enableExceptions(true);
|
|
$this->exec("PRAGMA journal_mode = wal");
|
|
$this->exec("PRAGMA foreign_keys = yes");
|
|
} 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);
|
|
}
|
|
}
|
|
|
|
public function __destruct() {
|
|
try{$this->db->close();} catch(\Exception $e) {}
|
|
unset($this->db);
|
|
}
|
|
|
|
|
|
static public function driverName(): string {
|
|
return "SQLite 3";
|
|
}
|
|
|
|
public function schemaVersion(): int {
|
|
return $this->query("PRAGMA user_version")->getSingle();
|
|
}
|
|
|
|
public function update(int $to): bool {
|
|
$ver = $this->schemaVersion();
|
|
if(!$this->data->conf->dbSQLite3AutoUpd) throw new Update\Exception("manual", ['version' => $ver, 'driver_name' => $this->driverName()]);
|
|
if($ver >= $to) throw new Update\Exception("tooNew", ['difference' => ($ver - $to), 'current' => $ver, 'target' => $to, 'driver_name' => $this->driverName()]);
|
|
$sep = \DIRECTORY_SEPARATOR;
|
|
$path = \JKingWeb\NewsSync\BASE."sql".$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 Update\Exception("fileMissing", ['file' => $file, 'driver_name' => $this->driverName()]);
|
|
if(!is_readable($file)) throw new Update\Exception("fileUnreadable", ['file' => $file, 'driver_name' => $this->driverName()]);
|
|
$sql = @file_get_contents($file);
|
|
if($sql===false) throw new Update\Exception("fileUnusable", ['file' => $file, 'driver_name' => $this->driverName()]);
|
|
$this->exec($sql);
|
|
} catch(\Throwable $e) {
|
|
// undo any partial changes from the failed update
|
|
$this->rollback();
|
|
// 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;
|
|
}
|
|
|
|
public function exec(string $query): bool {
|
|
return (bool) $this->db->exec($query);
|
|
}
|
|
|
|
public function query(string $query): Result {
|
|
return new ResultSQLite3($this->db->query($query), $this->db->changes());
|
|
}
|
|
|
|
public function prepareArray(string $query, array $paramTypes): Statement {
|
|
return new StatementSQLite3($this->db, $this->db->prepare($query), $paramTypes);
|
|
}
|
|
} |