mirror of
https://github.com/Pathduck/gallery3.git
synced 2024-10-29 21:07:18 -04:00
Create module helper and refactor all the code that creates, updates
and deletes modules into it.
This commit is contained in:
parent
6d7130bffc
commit
0fe8d44472
@ -20,17 +20,17 @@
|
||||
class core_installer {
|
||||
public static function install() {
|
||||
$db = Database::instance();
|
||||
$version = 0;
|
||||
try {
|
||||
$base_version = ORM::factory("module")->where("name", "core")->find()->version;
|
||||
$version = module::get_version("core");
|
||||
} catch (Exception $e) {
|
||||
if ($e->getCode() == E_DATABASE_ERROR) {
|
||||
$base_version = 0;
|
||||
} else {
|
||||
if ($e->getCode() != E_DATABASE_ERROR) {
|
||||
Kohana::log("error", $e);
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
|
||||
if ($base_version == 0) {
|
||||
if ($version == 0) {
|
||||
$db->query("CREATE TABLE `modules` (
|
||||
`id` int(9) NOT NULL auto_increment,
|
||||
`name` char(255) default NULL,
|
||||
@ -63,10 +63,7 @@ class core_installer {
|
||||
@mkdir(VARPATH . $dir);
|
||||
}
|
||||
|
||||
$core = ORM::factory("module")->where("name", "core")->find();
|
||||
$core->name = "core";
|
||||
$core->version = 1;
|
||||
$core->save();
|
||||
module::set_version("core", 1);
|
||||
|
||||
$root = ORM::factory("item");
|
||||
$root->type = 'album';
|
||||
|
43
core/helpers/module.php
Normal file
43
core/helpers/module.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.");
|
||||
/**
|
||||
* Gallery - a web based photo album viewer and editor
|
||||
* Copyright (C) 2000-2008 Bharat Mediratta
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or (at
|
||||
* your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* This is the API for handling modules.
|
||||
*
|
||||
* Note: by design, this class does not do any permission checking.
|
||||
*/
|
||||
class Module_Core {
|
||||
public static function get_version($module_name) {
|
||||
return ORM::factory("module")->where("name", $module_name)->find()->version;
|
||||
}
|
||||
|
||||
public static function set_version($module_name, $version) {
|
||||
$module = ORM::factory("module")->where("name", $module_name)->find();
|
||||
if (!$module->loaded) {
|
||||
$module->name = $module_name;
|
||||
}
|
||||
$module->version = 1;
|
||||
$module->save();
|
||||
}
|
||||
|
||||
public static function delete ($module_name) {
|
||||
ORM::factory("module")->where("name", $module_name)->find()->delete();
|
||||
}
|
||||
}
|
@ -21,19 +21,10 @@ class comment_installer {
|
||||
public static function install() {
|
||||
Kohana::log("debug", "comment_installer::install");
|
||||
$db = Database::instance();
|
||||
try {
|
||||
$base_version = ORM::factory("module")->where("name", "comment")->find()->version;
|
||||
} catch (Exception $e) {
|
||||
if ($e->getCode() == E_DATABASE_ERROR) {
|
||||
$base_version = 0;
|
||||
} else {
|
||||
Kohana::log("error", $e);
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
Kohana::log("debug", "base_version: $base_version");
|
||||
$version = module::get_version("comment");
|
||||
Kohana::log("debug", "version: $version");
|
||||
|
||||
if ($base_version == 0) {
|
||||
if ($version == 0) {
|
||||
$db->query("CREATE TABLE IF NOT EXISTS `comments` (
|
||||
`id` int(9) NOT NULL auto_increment,
|
||||
`author` varchar(255) default NULL,
|
||||
@ -44,16 +35,13 @@ class comment_installer {
|
||||
PRIMARY KEY (`id`))
|
||||
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
|
||||
|
||||
$comment_module = ORM::factory("module")->where("name", "comment")->find();
|
||||
$comment_module->name = "comment";
|
||||
$comment_module->version = 1;
|
||||
$comment_module->save();
|
||||
module::set_version("comment", 1);
|
||||
}
|
||||
}
|
||||
|
||||
public static function uninstall() {
|
||||
$db = Database::instance();
|
||||
$db->query("DROP TABLE IF EXISTS `comments`;");
|
||||
ORM::factory("module")->where("name", "comment")->find()->delete();
|
||||
module::delete("comment");
|
||||
}
|
||||
}
|
||||
|
@ -23,19 +23,10 @@ class user_installer {
|
||||
public static function install() {
|
||||
Kohana::log("debug", "user_installer::install");
|
||||
$db = Database::instance();
|
||||
try {
|
||||
$base_version = ORM::factory("module")->where("name", "user")->find()->version;
|
||||
} catch (Exception $e) {
|
||||
if ($e->getCode() == E_DATABASE_ERROR) {
|
||||
$base_version = 0;
|
||||
} else {
|
||||
Kohana::log("error", $e);
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
Kohana::log("debug", "base_version: $base_version");
|
||||
$version = module::get_version("user");
|
||||
Kohana::log("debug", "version: $version");
|
||||
|
||||
if ($base_version == 0) {
|
||||
if ($version == 0) {
|
||||
$db->query("CREATE TABLE IF NOT EXISTS `users` (
|
||||
`id` int(9) NOT NULL auto_increment,
|
||||
`name` varchar(255) NOT NULL,
|
||||
@ -62,10 +53,7 @@ class user_installer {
|
||||
UNIQUE KEY(`user_id`, `group_id`))
|
||||
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
|
||||
|
||||
$user_module = ORM::factory("module")->where("name", "user")->find();
|
||||
$user_module->name = "user";
|
||||
$user_module->version = 1;
|
||||
$user_module->save();
|
||||
module::set_version("user", 1);
|
||||
|
||||
$user = ORM::factory("user")->where("name", "admin")->find();
|
||||
$user->name = "admin";
|
||||
@ -92,6 +80,6 @@ class user_installer {
|
||||
$db->query("DROP TABLE IF EXISTS `users`;");
|
||||
$db->query("DROP TABLE IF EXISTS `groups`;");
|
||||
$db->query("DROP TABLE IF EXISTS `groups_users`;");
|
||||
ORM::factory("module")->where("name", "user")->find()->delete();
|
||||
module::delete("user");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user