X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=inc%2Fstore%2Fsqlite.class.php;h=4bfbb29e83632d26f353647574a313dc2809cd94;hb=aa8c9f2a32ea75278d52c86c6a3a39d34bce5cc7;hp=d5208a295865e488118d307c2168143326a5d883;hpb=44e77bfa2481090e559b56fd8ffbe5b175ab55ca;p=github%2Fwallabag%2Fwallabag.git diff --git a/inc/store/sqlite.class.php b/inc/store/sqlite.class.php index d5208a29..4bfbb29e 100644 --- a/inc/store/sqlite.class.php +++ b/inc/store/sqlite.class.php @@ -17,7 +17,6 @@ class Sqlite extends Store { parent::__construct(); $this->handle = new PDO(self::$db_path); - $this->handle->exec('CREATE TABLE IF NOT EXISTS "entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE , "title" VARCHAR, "url" VARCHAR UNIQUE , "is_read" INTEGER DEFAULT 0, "is_fav" INTEGER DEFAULT 0, "content" BLOB)'); $this->handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } @@ -25,6 +24,56 @@ class Sqlite extends Store { return $this->handle; } + public function isInstalled() { + $sql = "SELECT name FROM sqlite_sequence WHERE name=?"; + $query = $this->executeQuery($sql, array('config')); + $hasConfig = $query->fetchAll(); + + if (count($hasConfig) == 0) + return FALSE; + + if (!$this->getLogin() || !$this->getPassword()) + return FALSE; + + return TRUE; + } + + public function install($login, $password) { + $this->getHandle()->exec('CREATE TABLE IF NOT EXISTS "config" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE , "name" VARCHAR UNIQUE, "value" BLOB)'); + + $this->handle->exec('CREATE TABLE IF NOT EXISTS "entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE , "title" VARCHAR, "url" VARCHAR UNIQUE , "is_read" INTEGER DEFAULT 0, "is_fav" INTEGER DEFAULT 0, "content" BLOB)'); + + if (!$this->getLogin()) { + $sql_login = 'INSERT INTO config ( name, value ) VALUES (?, ?)'; + $params_login = array('login', $login); + $query = $this->executeQuery($sql_login, $params_login); + } + + if (!$this->getPassword()) { + $sql_pass = 'INSERT INTO config ( name, value ) VALUES (?, ?)'; + $params_pass = array('password', $password); + $query = $this->executeQuery($sql_pass, $params_pass); + } + + return TRUE; + } + + public function getLogin() { + $sql = "SELECT value FROM config WHERE name=?"; + $query = $this->executeQuery($sql, array('login')); + $login = $query->fetchAll(); + + return isset($login[0]['value']) ? $login[0]['value'] : FALSE; + } + + public function getPassword() { + $sql = "SELECT value FROM config WHERE name=?"; + $query = $this->executeQuery($sql, array('password')); + $pass = $query->fetchAll(); + + return isset($pass[0]['value']) ? $pass[0]['value'] : FALSE; + } + private function executeQuery($sql, $params) { try { @@ -107,6 +156,7 @@ class Sqlite extends Store { $sql_action = 'INSERT INTO entries ( url, title, content ) VALUES (?, ?, ?)'; $params_action = array($url, $title, $content); $query = $this->executeQuery($sql_action, $params_action); + return $query; } public function deleteById($id) { @@ -114,6 +164,7 @@ class Sqlite extends Store { $sql_action = "DELETE FROM entries WHERE id=?"; $params_action = array($id); $query = $this->executeQuery($sql_action, $params_action); + return $query; } public function favoriteById($id) {