summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-12-30 11:17:16 +0100
committerAndreas Unterkircher <unki@netshadow.at>2007-12-30 11:17:16 +0100
commite8bc8f7d5f8dea6906f6e61ba464353c92e87ccf (patch)
tree9bf9c43da5c34a6b884149522cd7fc8d319ffa7c /phpfspot.class.php
parentaf140085fe603c00c7ce98435b89d2ee56a10cd9 (diff)
issue82, read out F-Spot DB version to differ between different databases schemas
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php28
1 files changed, 26 insertions, 2 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index e2b24a8..6d357e5 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -32,6 +32,7 @@ class PHPFSPOT {
var $tmpl;
var $tags;
var $avail_tags;
+ private $dbver;
/**
* class constructor
@@ -58,7 +59,9 @@ class PHPFSPOT {
print $this->cfg->fspot_db ." is not writeable for user ". $this->getuid() ."\n";
exit(1);
}
-
+
+ $this->dbver = $this->getFspotDBVersion();
+
if(!is_writeable(dirname($this->cfg->phpfspot_db))) {
print dirname($this->cfg->phpfspot_db) .": directory is not writeable!";
exit(1);
@@ -1051,6 +1054,7 @@ class PHPFSPOT {
{
$this->tmpl->assign('version', $this->cfg->version);
$this->tmpl->assign('product', $this->cfg->product);
+ $this->tmpl->assign('db_version', $this->dbver);
$this->tmpl->show("credits.tpl");
} // showCredits()
@@ -2102,6 +2106,26 @@ class PHPFSPOT {
} // checkDbIndices()
-}
+ /**
+ * retrive F-Spot database version
+ *
+ * this function will return the F-Spot database version number
+ * It is stored within the sqlite3 database in the table meta
+ */
+ public function getFspotDBVersion()
+ {
+ if($result = $this->db->db_fetchSingleRow("
+ SELECT data as version
+ FROM meta
+ WHERE
+ name LIKE 'F-Spot Database Version'
+ "))
+ return $result['version'];
+
+ return null;
+
+ } // getFspotDBVersion()
+
+} // class PHPFSPOT
?>