XPressME Integration Kit

Trac

source: branches/Ver2.4/xpressme_integration_kit/include/onupdate.php @ 814

Last change on this file since 814 was 814, checked in by toemon, 12 years ago

_notify_reserveと_group_roleテーブルが作成されないバグを修正 Fixes#415

File size: 11.3 KB
Line 
1<?php
2$mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
3
4eval( ' function xoops_module_update_'.$mydirname.'( $module ) { return xpress_onupdate_base( $module , "'.$mydirname.'" ) ; } ' ) ;
5
6
7if( ! function_exists( 'xpress_onupdate_base' ) ) :
8function xpress_onupdate_base( $module , $mydirname )
9{
10        // transations on module update
11
12        global $msgs ; // TODO :-D
13        // for Cube 2.1
14        if( defined( 'XOOPS_CUBE_LEGACY' ) ) {
15                $root =& XCube_Root::getSingleton();
16                $root->mDelegateManager->add( 'Legacy.Admin.Event.ModuleUpdate.' . ucfirst($mydirname) . '.Success', 'xpress_message_append_onupdate' ) ;
17                $root->mDelegateManager->add( 'Legacy.Admin.Event.ModuleUpdate.' . ucfirst($mydirname) . '.Fail', 'xpress_message_append_onupdate' ) ;
18                $msgs = array() ;
19        } else {
20                if( ! is_array( $msgs ) ) $msgs = array() ;
21        }
22
23        $db =& Database::getInstance() ;
24        $mid = $module->getVar('mid') ;
25       
26
27
28//XPressME Update
29        global $wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles,$wp_query;
30        global $xoops_db;
31        $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
32        $path = $mydirpath . '/';
33
34// permission and wordpress files check
35        require_once ($path . 'include/pre_check.php');
36        if(! xp_permission_check($mydirname, $mydirpath)){
37                $msgs = $GLOBALS["err_log"];
38                return false;
39        }
40
41//Site_url and home of an optional table are repaired.
42        $site_url= XOOPS_URL."/modules/".$mydirname;
43        xpress_put_siteurl($mydirname,$site_url);
44        $home = get_xpress_option($mydirname,'home');
45        $home_check = 'home option is right';
46        if (strcmp($site_url,$home) !== 0 ){
47                if (!@fclose(@fopen($home . '/xoops_version.php', "r"))){
48                        xpress_put_home($mydirname,$site_url);
49                        $home_check = 'Change home option $home to $site_url';
50                }
51        }
52        $msgs[] = $home_check;
53// XPressME orignal table update
54        $t_mess = xpress_table_make($module , $mydirname);
55        $msgs = array_merge($msgs,$t_mess);
56
57// make templates
58        include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates_make.php' ;
59        $mod_version = $module->getVar('version') ;
60
61        $t_mess = xpress_clean_templates_file($mydirname,$mod_version);
62        $msgs = array_merge($msgs,$t_mess);
63       
64        $t_mess = xpress_templates_make($mid,$mydirname);
65        $msgs = array_merge($msgs,$t_mess);
66
67// The activation processing of the XPressME plugin is omitted.
68// Because the XPressME plugin is done with wp-config in activation
69
70        /* activate the xpressme plugin */
71//      require_once dirname( __FILE__ ).'/xpress_active_plugin.php';
72//      if (xpress_pulugin_activation('xpressme/xpressme.php')){
73//              $msgs[] = 'The xpressme plug-in was activated.';
74//      }
75       
76        return true ;
77}
78endif;
79
80if( ! function_exists( 'xpress_put_siteurl' ) ) :
81function xpress_put_siteurl($mydirname,$url){
82                global $xoopsModule;
83                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname);
84                $xoopsDB =& Database::getInstance();
85                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options');
86
87                $sql = "UPDATE $db_xpress_option SET option_value = '$url' WHERE option_name = 'siteurl'";
88                $res = $xoopsDB->queryF($sql, 0, 0);
89}
90endif;
91
92if( ! function_exists( 'xpress_put_home' ) ) :
93function xpress_put_home($mydirname,$url){
94                global $xoopsModule;
95                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname);
96                $xoopsDB =& Database::getInstance();
97                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options');
98
99                $sql = "UPDATE $db_xpress_option SET option_value = '$url' WHERE option_name = 'home'";
100                $res = $xoopsDB->queryF($sql, 0, 0);
101}
102endif;
103
104if( ! function_exists( 'get_xpress_option' ) ) {
105        function get_xpress_option($mydirname,$option_name){
106                global $xoopsModule;
107                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname);
108                $xoopsDB =& Database::getInstance();
109                $option_table = $xoopsDB->prefix($wp_prefix . '_options');
110
111                $sql = "SELECT option_value FROM $option_table WHERE option_name = '" . $option_name . "'";
112               
113                $result =  $xoopsDB->query($sql, 0, 0);
114                if ($xoopsDB->getRowsNum($result)  > 0){
115                        $row = $xoopsDB->fetchArray($result);
116                        return $row['option_value'];
117                }
118                return 0;
119        }
120}
121
122if( ! function_exists( 'xpress_message_append_onupdate' ) ) :
123function xpress_message_append_onupdate( &$module_obj , &$log )
124{
125        if( is_array( @$GLOBALS['msgs'] ) ) {
126                foreach( $GLOBALS['msgs'] as $message ) {
127                        $log->add( strip_tags( $message ) ) ;
128                }
129        }
130
131        // use mLog->addWarning() or mLog->addError() if necessary
132}
133endif;
134
135if( ! function_exists( 'get_db_version' ) ) :
136function get_db_version($mydirname){
137                global $xoopsModule;
138                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname);
139                $xoopsDB =& Database::getInstance();
140                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options');
141
142                $sql = "SELECT option_value FROM $db_xpress_option WHERE option_name = 'db_version'";
143                $res = $xoopsDB->query($sql, 0, 0);
144                if ($res === false){
145                        return false;
146                } else {
147                        $row = $xoopsDB->fetchArray($res);
148                        return $row['option_value'];
149                }
150}
151endif;
152
153if( ! function_exists( 'xpress_block_check' ) ) :
154function xpress_block_check($mydirname){
155        include_once(dirname(dirname(__FILE__)) . '/class/check_blocks_class.php');
156
157        $xoops_block_check =& xoops_block_check::getInstance();
158
159        if ( !$xoops_block_check->is_admin() )
160        {
161                $cont = 'Block Check Pass';
162                return cont;
163        }
164
165        switch ( $xoops_block_check->get_op() )
166        {
167                case "remove_block":
168                        $cont = $xoops_block_check->remove_block();
169                        break;
170
171                default:
172                        $cont = $xoops_block_check->check_blocks($mydirname);
173                        break;
174        }
175        return $cont;
176}
177endif;
178
179if( ! function_exists( 'xpress_table_make' ) ) :
180function xpress_table_make($module, $mydirname)
181{
182        $db =& Database::getInstance() ;
183        $mid = $module->getVar('mid') ;
184
185// XPressME orignal table update
186        $xp_prefix = preg_replace('/wordpress/','wp',$mydirname);
187        $msgs = array();
188
189        $views_table = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_views' ;
190        if (! enhanced_table_check($mydirname,'views')){
191                $queries ="CREATE TABLE $views_table (
192                blog_id bigint(20) unsigned NOT NULL default '0',
193                post_id bigint(20) unsigned NOT NULL default '0',
194                post_views bigint(20) unsigned NOT NULL default '0',
195                KEY post_id (post_id)
196                ) TYPE=MyISAM";
197                $db->queryF( $queries ) ;
198                $msgs[] = "$views_table table of XPressME was made.";
199        } else {
200                if (!is_found_table_column($views_table,'blog_id')){
201                        $queries ="ALTER TABLE $views_table ADD blog_id bigint(20)  FIRST";
202                        $db->queryF( $queries ) ;
203                        $msgs[] = "$views_table  ADD blog_id .";
204                }
205               
206                // The table is repaired.
207                $non_blogid_sql ="SELECT * FROM $views_table WHERE blog_id IS NULL OR blog_id < 1";
208                $non_blogid_res = $db->query($non_blogid_sql, 0, 0);
209                while($row = $db->fetchArray($non_blogid_res)){
210                        $total_view = $row['post_views'];
211                        $post_id = $row['post_id'];
212                        $new_blogid_sql ="SELECT SUM(post_views) as post_views_sum FROM $views_table WHERE post_id = $post_id AND blog_id = 1 GROUP BY post_id";
213                        $new_blogid_res = $db->query($new_blogid_sql, 0, 0);
214                        if ($db->getRowsNum($new_blogid_res)  > 0){
215                                $new_row = $db->fetchArray($new_blogid_res);
216                                $total_view = $total_view + $new_row['post_views_sum'];
217                                $del_sql = "DELETE FROM $views_table WHERE post_id = $post_id AND blog_id = 1";
218                                $db->queryF( $del_sql ) ;
219                        }
220                        $update_sql = "UPDATE $views_table SET post_views = $total_view , blog_id = 1 WHERE post_id = $post_id AND (blog_id IS NULL OR blog_id < 1)";
221                        $db->queryF( $update_sql ) ;
222                }
223        }
224       
225        $d3forum_link = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_d3forum_link' ;
226        if (! enhanced_table_check($mydirname,'d3forum_link')){
227                $queries ="CREATE TABLE $d3forum_link (
228                        comment_ID bigint(20) unsigned NOT NULL default '0',
229                        post_id int(10) unsigned NOT NULL default '0' ,
230                        wp_post_ID bigint(20) unsigned NOT NULL default '0',
231                        forum_id bigint(20) unsigned NOT NULL default '0',
232                        blog_id bigint(20) unsigned NOT NULL default '0',
233                        KEY post_id (post_id)
234                        )TYPE=MyISAM";
235                $db->queryF( $queries ) ;
236                $msgs[] = "$d3forum_link table of XPressME was made.";
237        } else {
238                if (!is_found_table_column($d3forum_link,'forum_id')){
239                        $queries ="ALTER TABLE $d3forum_link ADD forum_id bigint(20) unsigned NOT NULL default '0' AFTER wp_post_ID";
240                        $db->queryF( $queries ) ;
241                        $msgs[] = "$d3forum_link  ADD forum_id .";
242                        // The table is repaired.
243//                      $update_sql = "UPDATE $d3forum_link SET forum_id = 1 WHERE(forum_id IS NULL OR forum_id < 1)";
244//                      $db->queryF( $update_sql ) ;
245                }
246                if (!is_found_table_column($d3forum_link,'blog_id')){
247                        $queries ="ALTER TABLE $d3forum_link ADD blog_id bigint(20)  unsigned NOT NULL default '0' AFTER forum_id";
248                        $db->queryF( $queries ) ;
249                        $msgs[] = "$d3forum_link  ADD blog_id .";
250                        // The table is repaired.
251                        $update_sql = "UPDATE $d3forum_link SET blog_id = 1 WHERE(blog_id IS NULL OR blog_id < 1)";
252                        $db->queryF( $update_sql ) ;
253                }
254        }
255
256        $group_role = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_group_role' ;
257        if (! enhanced_table_check($mydirname,'group_role')){
258                $queries ="CREATE TABLE $group_role (
259                        groupid smallint(5) unsigned NOT NULL default '0',
260                        blog_id bigint(20) unsigned NOT NULL default '0',
261                        name varchar(50)  NOT NULL default '' ,
262                        description text ,
263                        group_type varchar(50)  NOT NULL default '' ,
264                        role varchar(20)  NOT NULL default '' ,
265                        login_all smallint(5) unsigned NOT NULL default '0' ,
266                        KEY groupid (groupid)
267                        )TYPE=MyISAM";
268                $db->queryF( $queries ) ;
269                $sql = "INSERT INTO $group_role (groupid, role) VALUES (1, 'administrator')";
270                $db->queryF( $sql ) ;
271                $msgs[] = "$group_role table of XPressME was made.";
272        } else {
273                if (!is_found_table_column($group_role,'blog_id')){
274                        $queries ="ALTER TABLE $group_role ADD blog_id bigint(20)  AFTER groupid";
275                        $db->queryF( $queries ) ;
276                        $msgs[] = "$group_role  ADD blog_id .";
277                }
278                // The table is repaired.
279                $update_sql = "UPDATE $group_role SET blog_id = 1 WHERE(blog_id IS NULL OR blog_id < 1)";
280                $db->queryF( $update_sql ) ;
281        }
282       
283        if (! enhanced_table_check($mydirname,'notify_reserve')){
284                $notify_reserve = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_notify_reserve' ;
285                $queries ="CREATE TABLE $notify_reserve (
286                        notify_reserve_id bigint(20) NOT NULL AUTO_INCREMENT ,
287                        notify_reserve_status varchar(20)  NOT NULL default '' ,
288                        category text ,
289                        item_id bigint(20) unsigned NOT NULL default '0',
290                        event varchar(20) NOT NULL default '',
291                        extra_tags_arry longtext NOT NULL ,
292                        user_list_arry longtext NOT NULL ,
293                        module_id smallint(5) unsigned NOT NULL default '0' ,
294                        omit_user_id varchar(20) NOT NULL default '' ,
295                        KEY notify_reserve_id (notify_reserve_id)
296                        )TYPE=MyISAM";
297                $db->queryF( $queries ) ;
298                $msgs[] = "$notify_reserve table of XPressME was made.";
299        }
300        return $msgs;
301}
302endif;
303
304if( ! function_exists( 'enhanced_table_check' ) ) :
305function enhanced_table_check($mydirname,$table_name){
306                global $xoopsModule;
307               
308                $xoopsDB =& Database::getInstance();
309                $xpress_prefix = $xoopsDB->prefix(preg_replace('/wordpress/','wp',$mydirname) . '_');
310                $db_enhanced = $xpress_prefix . $table_name;
311
312                $sql = "show tables like '$db_enhanced'";
313                $res = $xoopsDB->query($sql, 0, 0);
314                if ($res === false){
315                        return false;
316                } else {
317                        if ($xoopsDB->getRowsNum($res)  > 0)
318                                return true;
319                        else
320                                return false;
321                }
322}
323endif;
324
325if( ! function_exists( 'is_found_table_column' ) ) :
326function is_found_table_column($table,$column){
327                global $xoopsModule;
328                $xoopsDB =& Database::getInstance();
329
330                $sql = "DESCRIBE $table $column";
331                $res = $xoopsDB->queryF($sql, 0, 0);
332                if ($res === false){
333                        return false;
334                } else {
335                        if ($xoopsDB->getRowsNum($res)  > 0)
336                                return true;
337                        else
338                                return false;
339                }
340}
341endif;
342
343
344?>
Note: See TracBrowser for help on using the repository browser.