From 41e7e79ee720850739539746baae110386aba608 Mon Sep 17 00:00:00 2001 From: Makis Tracend Date: Mon, 20 Feb 2023 21:40:40 +1100 Subject: [PATCH] page model debug --- app/models/Page.php | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/app/models/Page.php b/app/models/Page.php index 47597ad..4bc437d 100644 --- a/app/models/Page.php +++ b/app/models/Page.php @@ -74,10 +74,27 @@ function schema( $schema=array() ){ if( !array_key_exists($key, $schema) ) $schema[$key] = ""; } } + } else { + // create table + $keys = implode(", ", array_keys( $schema ) ); + // FIX: The id needs to be setup as autoincrement + $keys = str_replace("id,", "id INTEGER PRIMARY KEY ASC,", $keys); + $page->create_table("pages", $keys ); } foreach( $schema as $key => $value ){ if( !array_key_exists($key, $this->rs) ) $this->rs[$key] = null; + // add the column if necessary + $sql = "SELECT COUNT(*) AS OK FROM pragma_table_info('pages') WHERE name='$key'"; + $results = $dbh->prepare( $sql ); + $results->execute(); + $column = $results->fetch(PDO::FETCH_ASSOC); + // + if( $column["OK"] == 0 ){ + $sql = "ALTER TABLE pages ADD COLUMN ". $key; + $results = $dbh->prepare($sql); + if( $results ) $results->execute(); + } } // save schema in the global namespace @@ -121,7 +138,7 @@ static function register($id, $key=false, $value="") { $results->execute(); $table = $results->fetch(PDO::FETCH_ASSOC); - // then check if the table exists + // [DEPRECATED] then check if the table exists if(!is_array($table)){ $keys = implode(", ", $columns); // FIX: The id needs to be setup as autoincrement @@ -129,13 +146,19 @@ static function register($id, $key=false, $value="") { $page->create_table("pages", $keys ); //$page->create_table("pages", "id INTEGER PRIMARY KEY ASC, title, content, path, date, tags, template"); } + + // [DEPRECATED] add the column if necessary + $sql = "SELECT COUNT(*) AS OK FROM pragma_table_info('pages') WHERE name='$key'"; + $results = $dbh->prepare($sql); + $results->execute(); + $column = $results->fetch(PDO::FETCH_ASSOC); - // add the column if necessary - if( array_key_exists("pages", $GLOBALS['db_schema']) && is_array($columns) && !in_array($key, $columns) ){ + // if( array_key_exists("pages", $GLOBALS['db_schema']) && is_array($columns) && !in_array($key, $columns) ){ + if( $column["OK"] == 0 ){ $sql = "ALTER TABLE pages ADD COLUMN ". $key; $results = $dbh->prepare($sql); if( $results ) $results->execute(); // there's a case where the column may already exist, in which case this will be false... - array_push( $columns, $key ); + array_push( $columns, $key ); // obsolete? } // get existing page (again?)