XPressME Integration Kit

Trac

source: trunk/include/onupdate.php @ 102

Last change on this file since 102 was 102, checked in by toemon, 15 years ago

#64 アップデート毎にテンプレートファイルが重複するバグ修正

File size: 5.9 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
14        // for Cube 2.1
15        if( defined( 'XOOPS_CUBE_LEGACY' ) ) {
16                $root =& XCube_Root::getSingleton();
17                $root->mDelegateManager->add( 'Legacy.Admin.Event.ModuleUpdate.' . ucfirst($mydirname) . '.Success', '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//XPress TABLE UPGRADE
27        global $wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles,$wp_query;
28        define('WP_INSTALLING', true);
29        $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
30        $path = $mydirpath . '/';
31        if (file_exists($path . 'wp-load.php')) {
32                require_once $path . 'wp-load.php';
33        } else {
34                require_once $path . 'wp-config.php';
35        }
36        require_once($mydirpath . '/wp-admin/upgrade-functions.php');
37
38        if ( get_db_version($mydirname) != $wp_db_version ){
39                if( function_exists( 'wp_upgrade' ) )   {       
40                        wp_upgrade();
41                } else {
42                        wp_cache_flush();
43                        make_db_current_silent();
44                        upgrade_all();
45                        wp_cache_flush();
46                }                               
47        }
48
49        /* activate the tag plugin */
50        $plugin_current = "xpressme/xpressme.php";
51        update_option('active_plugins', array($plugin_current));
52        include_once(dirname(__FILE__) . '/../wp-content/plugins/'.$plugin_current);
53        do_action('activate_'.$plugin_current);
54       
55//      update_option("blog_charset", wp_blog_charset());
56        $xpress_version = $module->modinfo['version'];
57       
58        if (! enhanced_table_check($mydirname,'views')){
59                $xp_prefix = $mydirname;
60                if ($xp_prefix == 'wordpress'){
61                        $xp_prefix = 'wp';
62                }
63               
64                $charset_collate = '';
65                if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
66                        if ( ! empty($wpdb->charset) )
67                        $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
68                        if ( ! empty($wpdb->collate) )
69                        $charset_collate .= " COLLATE $wpdb->collate";
70                }
71                $views_table = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_views' ;
72                $views_queries ="CREATE TABLE $views_table (
73                post_id bigint(20) unsigned NOT NULL default '0',
74                post_views bigint(20) unsigned NOT NULL default '0',
75                KEY post_id (post_id)
76                )$charset_collate;";
77
78                dbDelta($views_queries);
79        }
80       
81        if (! enhanced_table_check($mydirname,'d3forum_link')){
82                $xp_prefix = $mydirname;
83                if ($xp_prefix == 'wordpress'){
84                        $xp_prefix = 'wp';
85                }
86               
87                $charset_collate = '';
88                if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
89                        if ( ! empty($wpdb->charset) )
90                        $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
91                        if ( ! empty($wpdb->collate) )
92                        $charset_collate .= " COLLATE $wpdb->collate";
93                }
94       
95                $d3forum_link = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_d3forum_link' ;
96                $queries ="CREATE TABLE $d3forum_link (
97                        comment_ID bigint(20) unsigned NOT NULL default '0',
98                        post_id int(10) unsigned NOT NULL default '0' ,
99                        wp_post_ID bigint(20) unsigned NOT NULL default '0',
100                        KEY post_id (post_id)
101                        )$charset_collate;";
102                dbDelta($queries);
103        }
104
105        if (! enhanced_table_check($mydirname,'group_role')){
106                $xp_prefix = $mydirname;
107                if ($xp_prefix == 'wordpress'){
108                        $xp_prefix = 'wp';
109                }
110               
111                $charset_collate = '';
112                if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
113                        if ( ! empty($wpdb->charset) )
114                        $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
115                        if ( ! empty($wpdb->collate) )
116                        $charset_collate .= " COLLATE $wpdb->collate";
117                }
118       
119                $group_role = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_group_role' ;
120                $views_queries ="CREATE TABLE $group_role (
121                        groupid smallint(5) unsigned NOT NULL default '0',
122                        name varchar(50)  NOT NULL default '' ,
123                        description text  NOT NULL default '',
124                        group_type varchar(10)  NOT NULL default '' ,
125                        role varchar(20)  NOT NULL default '' ,
126                        login_all smallint(5) unsigned NOT NULL default '0' ,
127                        KEY groupid (groupid)
128                        )$charset_collate;";
129                dbDelta($views_queries);
130                $sql = "INSERT INTO $group_role (groupid, role) VALUES (1, 'administrator')";
131                $wpdb->query($sql);
132
133        }
134       
135        // make templates
136        include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates_make.php' ;
137        $t_mess = xpress_templates_make($mid,$mydirname);
138        $ret = array_merge($ret,$t_mess);
139       
140        return true ;
141}
142endif;
143
144if( ! function_exists( 'xpress_message_append_onupdate' ) ) :
145function xpress_message_append_onupdate( &$module_obj , &$log )
146{
147        if( is_array( @$GLOBALS['msgs'] ) ) {
148                foreach( $GLOBALS['msgs'] as $message ) {
149                        $log->add( strip_tags( $message ) ) ;
150                }
151        }
152
153        // use mLog->addWarning() or mLog->addError() if necessary
154}
155endif;
156
157if( ! function_exists( 'get_db_version' ) ) :
158function get_db_version($mydirname){
159                global $xoopsModule;
160                $wp_prefix = $mydirname;
161                if ($wp_prefix == 'wordpress'){
162                        $wp_prefix = 'wp';
163                }
164                $xoopsDB =& Database::getInstance();
165                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options');
166
167                $sql = "SELECT option_value FROM $db_xpress_option WHERE option_name = 'db_version'";
168                $res = $xoopsDB->query($sql, 0, 0);
169                if ($res === false){
170                        return false;
171                } else {
172                        $row = $xoopsDB->fetchArray($res);
173                        return $row['option_value'];
174                }
175}
176endif;
177
178
179if( ! function_exists( 'enhanced_table_check' ) ) :
180function enhanced_table_check($mydirname,$table_name){
181                global $xoopsModule;
182               
183                $xoopsDB =& Database::getInstance();
184                if ($mydirname == 'wordpress'){
185                        $xpress_prefix=  $xoopsDB->prefix('wp_');
186                } else {
187                        $xpress_prefix=  $xoopsDB->prefix($mydirname . '_');
188                }
189                $db_enhanced = $xpress_prefix . $table_name;
190
191                $sql = "show tables like '$db_enhanced'";
192                $res = $xoopsDB->query($sql, 0, 0);
193                if ($res === false){
194                        return false;
195                } else {
196                        if ($xoopsDB->getRowsNum($res)  > 0)
197                                return true;
198                        else
199                                return false;
200                }
201}
202endif;
203
204?>
Note: See TracBrowser for help on using the repository browser.