123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <?php
- /**
- * position_api.class.php 模块安装接口类
- *
- * @copyright (C) 2005-2010 PHPCMS
- * @license http://www.phpcms.cn/license/
- * @lastmodify 2010-8-31
- */
- defined('IN_PHPCMS') or exit('No permission resources.');
- pc_base::load_sys_func('dir');
- class module_api {
-
- private $db, $m_db, $installdir, $uninstaldir, $module, $isall;
- public $error_msg = '';
-
- public function __construct() {
- $this->db = pc_base::load_model('module_model');
- }
-
- /**
- * 模块安装
- * @param string $module 模块名
- */
- public function install($module = '') {
- define('INSTALL', true);
- if ($module) $this->module = $module;
- $this->installdir = PC_PATH.'modules'.DIRECTORY_SEPARATOR.$this->module.DIRECTORY_SEPARATOR.'install'.DIRECTORY_SEPARATOR;
-
- $this->check();
- $models = @require($this->installdir.'model.php');
- if (!is_array($models) || empty($models)) {
- $models = array('module');
- }
- if (!in_array('module', $models)) {
- array_unshift($models, 'module');
- }
- if (is_array($models) && !empty($models)) {
- foreach ($models as $m) {
- $this->m_db = pc_base::load_model($m.'_model');
- $sql = file_get_contents($this->installdir.$m.'.sql');
- $this->sql_execute($sql);
- }
- }
- if (file_exists($this->installdir.'extention.inc.php')) {
- $menu_db = pc_base::load_model('menu_model');
- @include ($this->installdir.'extention.inc.php');
- if(!defined('INSTALL_MODULE')) {
- $file = PC_PATH.'languages'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'lang').DIRECTORY_SEPARATOR.'system_menu.lang.php';
- if(file_exists($file)) {
- $content = file_get_contents($file);
- $content = substr($content,0,-2);
- $data = '';
- foreach ($language as $key => $l) {
- if (L($key, '', 'system_menu')==$key) {
- $data .= "\$LANG['".$key."'] = '".$l."';\r\n";
- }
- }
- $data = $content.$data."?>";
- file_put_contents($file,$data);
- } else {
- foreach ($language as $key =>$l) {
- if (L($key, '', 'system_menu')==$key) {
- $data .= "\$LANG['".$key."'] = '".$l."';\r\n";
- }
- }
- $data = "<?"."php\r\n\$data?>";
- file_put_contents($file,$data);
- }
- }
- }
- if(!defined('INSTALL_MODULE')) {
- if (file_exists($this->installdir.'languages'.DIRECTORY_SEPARATOR)) {
- dir_copy($this->installdir.'languages'.DIRECTORY_SEPARATOR, PC_PATH.'languages'.DIRECTORY_SEPARATOR);
- }
- if(file_exists($this->installdir.'templates'.DIRECTORY_SEPARATOR)) {
- dir_copy($this->installdir.'templates'.DIRECTORY_SEPARATOR, PC_PATH.'templates'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'tpl_name').DIRECTORY_SEPARATOR.$this->module.DIRECTORY_SEPARATOR);
- if (file_exists($this->installdir.'templates'.DIRECTORY_SEPARATOR.'name.inc.php')) {
- $keyid = 'templates|'.pc_base::load_config('system', 'tpl_name').'|'.$this->module;
- $file_explan[$keyid] = include $this->installdir.'templates'.DIRECTORY_SEPARATOR.'name.inc.php';
- $templatepath = PC_PATH.'templates'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'tpl_name').DIRECTORY_SEPARATOR;
- if (file_exists($templatepath.'config.php')) {
- $style_info = include $templatepath.'config.php';
- $style_info['file_explan'] = array_merge($style_info['file_explan'], $file_explan);
- @file_put_contents($templatepath.'config.php', '<?php return '.var_export($style_info, true).';?>');
- }
- unlink(PC_PATH.'templates'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'tpl_name').DIRECTORY_SEPARATOR.$this->module.DIRECTORY_SEPARATOR.'name.inc.php');
- }
- }
- }
- return true;
- }
-
- /**
- * 检查安装目录
- * @param string $module 模块名
- */
- public function check($module = '') {
- define('INSTALL', true);
- if ($module) $this->module = $module;
- if(!$this->module) {
- $this->error_msg = L('no_module');
- return false;
- }
- if(!defined('INSTALL_MODULE')) {
- if (dir_create(PC_PATH.'languages'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'lang').DIRECTORY_SEPARATOR.'test_create_dir')) {
- sleep(1);
- dir_delete(PC_PATH.'languages'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'lang').DIRECTORY_SEPARATOR.'test_create_dir');
-
- } else {
- $this->error_msg = L('lang_dir_no_write');
- return false;
- }
- }
- $r = $this->db->get_one(array('module'=>$this->module));
- if ($r) {
- $this->error_msg = L('this_module_installed');
- return false;
- }
- if (!$this->installdir) {
- $this->installdir = PC_PATH.'modules'.DIRECTORY_SEPARATOR.$this->module.DIRECTORY_SEPARATOR.'install'.DIRECTORY_SEPARATOR;
- }
- if (!is_dir($this->installdir)) {
- $this->error_msg = L('install_dir_no_exist');
- return false;
- }
- if (!file_exists($this->installdir.'module.sql')) {
- $this->error_msg = L('module_sql_no_exist');
- return false;
- }
- $models = @require($this->installdir.'model.php');
- if (is_array($models) && !empty($models)) {
- foreach ($models as $m) {
- if (!file_exists(PC_PATH.'model'.DIRECTORY_SEPARATOR.$m.'_model.class.php')) {
- $this->error_msg = $m.L('model_clas_no_exist');
- return false;
- }
- if (!file_exists($this->installdir.$m.'.sql')) {
- $this->error_msg = $m.L('sql_no_exist');
- return false;
- }
- }
- }
- return true;
- }
-
- /**
- * 模块卸载
- * @param string $module 模块名
- */
- public function uninstall($module) {
- define('UNINSTALL', true);
- if (!$module) {
- $this->error_msg = L('illegal_parameters');
- return false;
- }
- $this->module = $module;
- $this->uninstalldir = PC_PATH.'modules'.DIRECTORY_SEPARATOR.$this->module.DIRECTORY_SEPARATOR.'uninstall'.DIRECTORY_SEPARATOR;
- if (!is_dir($this->uninstalldir)) {
- $this->error_msg = L('uninstall_dir_no_exist');
- return false;
- }
- if (file_exists($this->uninstalldir.'model.php')) {
- $models = @require($this->uninstalldir.'model.php');
- if (is_array($models) && !empty($models)) {
- foreach ($models as $m) {
- if (!file_exists($this->uninstalldir.$m.'.sql')) {
- $this->error_msg = $this->module.DIRECTORY_SEPARATOR.'uninstall'.DIRECTORY_SEPARATOR.$m.L('sql_no_exist');
- return false;
- }
- }
- }
- }
- if (is_array($models) && !empty($models)) {
- foreach ($models as $m) {
- $this->m_db = pc_base::load_model($m.'_model');
- $sql = file_get_contents($this->uninstalldir.$m.'.sql');
- $this->sql_execute($sql);
- }
- }
- if (file_exists($this->uninstalldir.'extention.inc.php')) {
- @include ($this->uninstalldir.'extention.inc.php');
- }
- if (file_exists(PC_PATH.'languages'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'lang').DIRECTORY_SEPARATOR.$this->module.'.lang.php')) {
- @unlink(PC_PATH.'languages'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'lang').DIRECTORY_SEPARATOR.$this->module.'.lang.php');
- }
- if (is_dir(PC_PATH.'templates'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'tpl_name').DIRECTORY_SEPARATOR.$this->module)) {
- @dir_delete(PC_PATH.'templates'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'tpl_name').DIRECTORY_SEPARATOR.$this->module);
- }
- $templatepath = PC_PATH.'templates'.DIRECTORY_SEPARATOR.pc_base::load_config('system', 'tpl_name').DIRECTORY_SEPARATOR;
- if (file_exists($templatepath.'config.php')) {
- $keyid = 'templates|'.pc_base::load_config('system', 'tpl_name').'|'.$this->module;
- $style_info = include $templatepath.'config.php';
- unset($style_info['file_explan'][$keyid]);
- @file_put_contents($templatepath.'config.php', '<?php return '.var_export($style_info, true).';?>');
- }
- $menu_db = pc_base::load_model('menu_model');
- $menu_db->delete(array('m'=>$this->module));
- $this->db->delete(array('module'=>$this->module));
- return true;
- }
-
- /**
- * 执行mysql.sql文件,创建数据表等
- * @param string $sql sql语句
- */
- private function sql_execute($sql) {
- $sqls = $this->sql_split($sql);
- if (is_array($sqls)) {
- foreach ($sqls as $sql) {
- if (trim($sql) != '') {
- $this->m_db->query($sql);
- }
- }
- } else {
- $this->m_db->query($sqls);
- }
- return true;
- }
-
- /**
- * 处理sql语句,执行替换前缀都功能。
- * @param string $sql 原始的sql,将一些大众的部分替换成私有的
- */
- private function sql_split($sql) {
- $dbcharset = $GLOBALS['dbcharset'];
- if (!$dbcharset) {
- $dbcharset = pc_base::load_config('database','default');
- $dbcharset = $dbcharset['charset'];
- }
- if($this->m_db->version() > '4.1' && $dbcharset) {
- $sql = preg_replace("/TYPE=(InnoDB|MyISAM|MEMORY)( DEFAULT CHARSET=[^; ]+)?/", "ENGINE=\\1 DEFAULT CHARSET=".$dbcharset, $sql);
- }
- if($this->m_db->db_tablepre != "phpcms_") $sql = str_replace("phpcms_", $this->m_db->db_tablepre, $sql);
- $sql = str_replace(array("\r", '2010-9-05'), array("\n", date('Y-m-d')), $sql);
- $ret = array();
- $num = 0;
- $queriesarray = explode(";\n", trim($sql));
- unset($sql);
- foreach ($queriesarray as $query) {
- $ret[$num] = '';
- $queries = explode("\n", trim($query));
- $queries = array_filter($queries);
- foreach ($queries as $query) {
- $str1 = substr($query, 0, 1);
- if($str1 != '#' && $str1 != '-') $ret[$num] .= $query;
- }
- $num++;
- }
- return $ret;
- }
- }
- ?>
|