XPressME Integration Kit

Trac

source: trunk/xpressme_integration_kit/class/config_from_xoops.class.php @ 583

Last change on this file since 583 was 583, checked in by toemon, 14 years ago

xoops_mod_wordpress060_alphaの複製モジュールからのアップデート対応 fixes#335

File size: 11.3 KB
Line 
1<?php
2/*
3 * XPressME - WordPress for XOOPS
4 *
5 * @copyright   XPressME Project http://www.toemon.com
6 * @license             http://www.fsf.org/copyleft/gpl.html GNU public license
7 * @author              toemon
8 * @package             module::xpress
9 */
10
11/*
12 * The function to acquire only a set value without calling the XOOPS system is here.
13 */
14class ConfigFromXoops{
15        var $xoops_mainfile_path;
16        var $define_arry = array();     
17        var $external_define_path;
18        var $xp_config_file_path;
19        var $xoops_root_path;
20        var $xoops_url;
21        var $xoops_trust_path;
22        var $xoops_db_prefix;
23        var $xoops_db_name;
24        var $xoops_db_user;
25        var $xoops_db_pass;
26        var $xoops_db_host;
27        var $module_name;
28        var $module_path;
29        var $module_url;
30        var $module_db_prefix;
31        var $module_version;
32        var $module_codename;   
33        var $xoops_upload_path;
34        var $xoops_upload_url;
35        var $xoops_db_salt;
36        var $xoops_salt;
37        var $is_impress;
38        var $impress_db_config_file;
39        var $wp_db_version;
40        var $wp_version;
41        var $is_wp_me;
42        var $xoops_language;
43        var $module_id;
44        var $module_config= array();
45       
46        function __constructor()        //for PHP5
47    {
48        $this->ConfigFromXoops();
49       
50    }
51   
52    function xpress_eval($str){
53        $eval_str = '$ret = ' . $str . ' ;';
54        eval($eval_str);
55        return $ret;
56    }
57
58    function ConfigFromXoops()  //for PHP4 constructor
59    { 
60        $this->xoops_mainfile_path = $this->get_xoops_mainfile_path();
61        $this->module_path=dirname(dirname(__FILE__));
62        $this->module_name=basename($this->module_path);
63        $this->xp_config_file_path = $this->module_path . '/xp-config.php';
64       
65        // start /admin/index.php page detect
66        $php_script_name = $_SERVER['SCRIPT_NAME'];
67                $php_query_string = $_SERVER['QUERY_STRING'];
68                $admin_page =   basename(dirname(dirname(__FILE__))) . '/admin/index.php';
69                $is_xoops_module_admin = false;
70                if (strstr($php_script_name,$admin_page) !== false) $is_xoops_module_admin = true;
71                if (strstr($php_query_string,$admin_page) !== false) $is_xoops_module_admin = true;
72        // end of /admin/index.php page detect
73       
74        if (file_exists($this->xp_config_file_path)){   // file exists xp-config.php
75                $this->_get_value_by_xp_config_file();
76        }else if (defined('XOOPS_MAINFILE_INCLUDED') && !$is_xoops_module_admin){ // loaded XOOPS mainfile.php
77                $this->_get_value_by_xoops_define();
78        } else {  // A set value is acquired from mainfile.php by the pattern match.
79                        if(file_exists($this->xoops_mainfile_path)){
80                        $this->_get_value_by_xoops_mainfile();
81                        // Value 'is_impress' and value 'external_define_path' used in the under
82                        // are set in _get_value_by_xoops_mainfile().
83                                if ($this->is_impress){         // DB Config from Impress CMS impress_db_config file
84                                        $this->_get_value_by_impress_db_config_file();
85                                } else if(!empty($this->external_define_path)){ // file exists mainfile.php in the trust pass.
86                                        $this->_get_value_by_trust_mainfile();
87                                }
88                        } // end of if file_exists
89                       
90                }
91
92                //  define from /settings/definition.inc.php (XCL)  or /include/common.php(2016a-JP)
93                $this->xoops_upload_path = $this->xoops_root_path .'/uploads';
94                $this->xoops_upload_url = $this->xoops_url . '/uploads';
95                $this->module_db_prefix = $this->xoops_db_prefix  . '_' . preg_replace('/wordpress/','wp',$this->module_name) . '_';
96               
97                $this->set_module_version();
98                $this->set_wp_version();
99    }
100
101        // A set value is acquired from XOOPS mainfile.php by the pattern match.
102        function _get_value_by_xoops_mainfile(){
103                $array_file = file($this->xoops_mainfile_path);
104                $pattern = '^\s*define\s*\(\s*(\'[^\']+\'|"[^"]+")\s*,\s*([^\s]+.*)\s*\)\s*;';
105                $impress_include_pattern = '^\s*(include_once|include)\s*\(\s*XOOPS_TRUST_PATH\s*.\s*[\'"]([^\'"]+)[\'"]\s*\)';
106                $external_define_file_pattern = '^\s*(include_once|include|require_once|require_once)\s*\((.*mainfile\.php.*)\)';
107                for ($i = 0 ; $i <count($array_file) ; $i++){
108                        if (preg_match('/' . $pattern . '/' ,$array_file[$i],$matchs)){
109                                $keys = $matchs[1];
110                                if (preg_match('/^\'[^\']*\'$/',$keys)) $keys = preg_replace('/\'/', '', $keys);
111                                if (preg_match('/^"[^"]*"$/',$keys)) $keys = preg_replace('/"/', '', $keys);
112                                $key_value = $matchs[2];
113
114                                switch ($keys){
115                                        case  'XOOPS_ROOT_PATH':
116                                                $this->xoops_root_path = $this->xpress_eval($key_value);
117                                                break;
118                                        case  'XOOPS_URL':
119                                                $this->xoops_url = $this->xpress_eval($key_value);
120                                                $this->module_url = $this->xoops_url . '/modules/' . $this->module_name;
121                                                break;
122                                        case  'XOOPS_TRUST_PATH':
123                                                $this->xoops_trust_path = $this->xpress_eval($key_value);
124                                                break;
125                                        case  'XOOPS_DB_PREFIX':
126                                                $this->xoops_db_prefix = $this->xpress_eval($key_value);
127                                                break;
128                                        case  'XOOPS_DB_NAME':
129                                                $this->xoops_db_name = $this->xpress_eval($key_value);
130                                                break;
131                                        case  'XOOPS_DB_USER':
132                                                $this->xoops_db_user = $this->xpress_eval($key_value);
133                                                break;
134                                        case  'XOOPS_DB_PASS':
135                                                $this->xoops_db_pass = $this->xpress_eval($key_value);
136                                                break;
137                                        case  'XOOPS_DB_HOST':
138                                                $this->xoops_db_host = $this->xpress_eval($key_value);
139                                                break;
140                                        case  'XOOPS_DB_SALT':
141                                                $this->xoops_db_salt = $this->xpress_eval($key_value);
142                                                break;
143                                        case  'XOOPS_SALT':
144                                                $this->xoops_salt = $this->xpress_eval($key_value);
145                                                break;
146                                        default :
147                                               
148                                }       // end of switch
149                        }        // end of if preg_match
150                       
151                        // Check External Define File
152                        if (preg_match('/' . $external_define_file_pattern . '/' ,$array_file[$i],$trust_main_matchs)){
153                                $include_path = $this->xpress_eval($trust_main_matchs[2]);
154                                if (file_exists($include_path))
155                                        $this->external_define_path = $include_path;
156                        }
157                       
158                        // Check ImpressCMS
159                        if (preg_match('/' . $impress_include_pattern . '/' ,$array_file[$i],$impres_matchs)){
160                                $this->is_impress = true;
161                                $this->impress_db_config_file = $this->xoops_trust_path . $impres_matchs[2];
162                        }
163                } // end of for loop           
164        }
165        // A set value is acquired from XOOPS define value .
166        function _get_value_by_xoops_define(){
167                $this->xoops_root_path = XOOPS_ROOT_PATH;
168                $this->xoops_url = XOOPS_URL;
169                $this->module_url = $this->xoops_url . '/modules/' . $this->module_name;
170                if(defined('XOOPS_TRUST_PATH')) $this->xoops_trust_path = XOOPS_TRUST_PATH; else $this->xoops_trust_path = '';
171                $this->xoops_db_prefix = XOOPS_DB_PREFIX;
172                $this->xoops_db_name = XOOPS_DB_NAME;
173                $this->xoops_db_user = XOOPS_DB_USER;
174                $this->xoops_db_pass = XOOPS_DB_PASS;
175                $this->xoops_db_host = XOOPS_DB_HOST;
176                if(defined('XOOPS_DB_SALT')) $this->xoops_db_salt = XOOPS_DB_SALT; else $this->xoops_db_salt = '';
177                if(defined('XOOPS_SALT')) $this->xoops_salt = XOOPS_SALT; else $this->xoops_salt = '';
178        }
179        // A set value is acquired from xp-config.php .
180        function _get_value_by_xp_config_file(){
181            require_once($this->xp_config_file_path);
182                $this->xoops_root_path =XP_XOOPS_ROOT_PATH;
183                $this->xoops_url = XP_XOOPS_URL;
184                $this->module_url = $this->xoops_url . '/modules/' . $this->module_name;
185                if(defined('XP_XOOPS_TRUST_PATH')) $this->xoops_trust_path = XP_XOOPS_TRUST_PATH; else $this->xoops_trust_path = '';
186                $this->xoops_db_prefix = XP_XOOPS_DB_PREFIX;
187                $this->xoops_db_name = XP_XOOPS_DB_NAME;
188                $this->xoops_db_user = XP_XOOPS_DB_USER;
189                $this->xoops_db_pass = XP_XOOPS_DB_PASS;
190                $this->xoops_db_host = XP_XOOPS_DB_HOST;
191                if(defined('XP_XOOPS_DB_SALT')) $this->xoops_db_salt = XP_XOOPS_DB_SALT; else $this->xoops_db_salt = '';
192                if(defined('XOOPS_SALT')) $this->xoops_salt = XP_XOOPS_SALT; else $this->xoops_salt = '';
193        }
194       
195        // A set value is acquired from config file in the trust pass by the pattern match.
196    function _get_value_by_impress_db_config_file(){
197                if(file_exists($this->impress_db_config_file)){
198                        $array_file = file($this->impress_db_config_file);
199                        $pattern = '^\s*define\s*\(\s*(\'[^\']+\'|"[^"]+")\s*,\s*(\'[^\']*\'|"[^"]*"|[^\'"])\s*\)\s*;';
200                        for ($i = 0 ; $i <count($array_file) ; $i++){
201                                if (preg_match('/' . $pattern . '/' ,$array_file[$i],$matchs)){
202                                        $keys = $matchs[1];
203                                        if (preg_match('/^\'[^\']*\'$/',$keys)) $keys = preg_replace('/\'/', '', $keys);
204                                        if (preg_match('/^"[^"]*"$/',$keys)) $keys = preg_replace('/"/', '', $keys);
205                                        $key_value = $matchs[2];
206
207                                        switch ($keys){
208                                                case  'SDATA_DB_SALT':
209                                                        $this->xoops_db_salt = $this->xpress_eval($key_value);
210                                                        break;
211                                                case  'SDATA_DB_PREFIX':
212                                                        $this->xoops_db_prefix = $this->xpress_eval($key_value);
213                                                        break;
214                                                case  'SDATA_DB_NAME':
215                                                        $this->xoops_db_name = $this->xpress_eval($key_value);
216                                                        break;
217                                                case  'SDATA_DB_USER':
218                                                        $this->xoops_db_user = $this->xpress_eval($key_value);
219                                                        break;
220                                                case  'SDATA_DB_PASS':
221                                                        $this->xoops_db_pass = $this->xpress_eval($key_value);
222                                                        break;
223                                                case  'SDATA_DB_HOST':
224                                                        $this->xoops_db_host = $this->xpress_eval($key_value);
225                                                        break;
226                                                default :
227                                                       
228                                        }       // end of switch
229                                }
230                        } // end of for
231                } // end of if file_exists
232    }
233   
234    function _get_value_by_trust_mainfile(){
235                // When the definition is written in mainfile.php in the trust passing
236                if(file_exists($this->external_define_path)){
237                        require_once($this->external_define_path);
238                       
239                        $this->xoops_root_path = XOOPS_ROOT_PATH;
240                $this->xoops_url = XOOPS_URL;
241                $this->module_url = $this->xoops_url . '/modules/' . $this->module_name;
242                if(defined('XOOPS_TRUST_PATH')) $this->xoops_trust_path = XOOPS_TRUST_PATH; else $this->xoops_trust_path = '';
243                $this->xoops_db_prefix = XOOPS_DB_PREFIX;
244                $this->xoops_db_name = XOOPS_DB_NAME;
245                $this->xoops_db_user = XOOPS_DB_USER;
246                $this->xoops_db_pass = XOOPS_DB_PASS;
247                $this->xoops_db_host = XOOPS_DB_HOST;
248                        if(defined('XOOPS_DB_SALT')) $this->xoops_db_salt = XOOPS_DB_SALT; else $this->xoops_db_salt = '';
249                        if(defined('XOOPS_SALT')) $this->xoops_salt = XOOPS_SALT; else $this->xoops_salt = '';
250                } // end of if file_exists
251        }       
252   
253    function get_xoops_mainfile_path(){
254        return dirname(dirname(dirname(dirname(__FILE__)))) . '/mainfile.php';
255    }
256   
257    // set XPressME module virsion and codename from xoops_versions.php
258    function set_module_version(){
259        $xoops_version_file = dirname(dirname(__FILE__)) . '/xoops_version.php';
260                if(file_exists($xoops_version_file)){
261                        $version_file = file($xoops_version_file);
262                        $version_pattern = '^\s*(\$modversion\[\s*\'version\'\s*\])\s*=\s*[\'"]([^\'"]*)[\'"]';
263                        $codename_pattern = '^\s*(\$modversion\[\s*\'codename\'\s*\])\s*=\s*[\'"]([^\'"]*)[\'"]';
264                        $version_found = false;
265                        $codename_found = false;
266                        for ($i = 0 ; $i <count($version_file) ; $i++){
267                                if (preg_match( "/$version_pattern/", $version_file[$i] ,$v_matches )){
268                                        $this->module_version = $v_matches[2];
269                                        $version_found = true;
270                                }
271                                if (preg_match( "/$codename_pattern/", $version_file[$i] ,$c_matches )){
272                                        $this->module_codename = $c_matches[2];
273                                        $codename_found = true;
274                                }
275                                if ( $version_found && $codename_found ) break;
276                        }
277                }
278    }
279   
280    function set_wp_version(){
281        include dirname(dirname(__FILE__)) . '/wp-includes/version.php';
282       
283        $this->wp_db_version = $wp_db_version;
284               
285                $this->wp_version = str_replace("ME", "", $wp_version);
286               
287                $pattern = 'ME.*';
288        if (preg_match('/' . $pattern . '/' ,$wp_version)){
289                        $this->is_wp_me = true;
290                } else {
291                        $this->is_wp_me = true;
292                }
293    }
294   
295}
296?>
Note: See TracBrowser for help on using the repository browser.