XPressME Integration Kit

Trac

source: trunk/include/onupdate.php @ 34

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

モジュールインストール・アップデート時にxpressmeプラグインを有効にする #42

File size: 6.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
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        /* activate the tag plugin */
49        $plugin_current = "xpressme/xpressme.php";
50        update_option('active_plugins', array($plugin_current));
51        include(dirname(__FILE__) . '/../wp-content/plugins/'.$plugin_current);
52        do_action('activate_'.$plugin_current);
53       
54//      update_option("blog_charset", wp_blog_charset());
55        $xpress_version = $module->modinfo['version'];
56       
57        if (! enhanced_table_check($mydirname,'views')){
58                $xp_prefix = $mydirname;
59                if ($xp_prefix == 'wordpress'){
60                        $xp_prefix = 'wp';
61                }
62               
63                $charset_collate = '';
64                if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
65                        if ( ! empty($wpdb->charset) )
66                        $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
67                        if ( ! empty($wpdb->collate) )
68                        $charset_collate .= " COLLATE $wpdb->collate";
69                }
70                $views_table = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_views' ;
71                $views_queries ="CREATE TABLE $views_table (
72                post_id bigint(20) unsigned NOT NULL default '0',
73                post_views bigint(20) unsigned NOT NULL default '0',
74                KEY post_id (post_id)
75                )$charset_collate;";
76
77                dbDelta($views_queries);
78        }
79       
80        if (! enhanced_table_check($mydirname,'d3forum_link')){
81                $xp_prefix = $mydirname;
82                if ($xp_prefix == 'wordpress'){
83                        $xp_prefix = 'wp';
84                }
85               
86                $charset_collate = '';
87                if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
88                        if ( ! empty($wpdb->charset) )
89                        $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
90                        if ( ! empty($wpdb->collate) )
91                        $charset_collate .= " COLLATE $wpdb->collate";
92                }
93       
94                $d3forum_link = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_d3forum_link' ;
95                $queries ="CREATE TABLE $d3forum_link (
96                        comment_ID bigint(20) unsigned NOT NULL default '0',
97                        post_id int(10) unsigned NOT NULL default '0' ,
98                        wp_post_ID bigint(20) unsigned NOT NULL default '0',
99                        KEY post_id (post_id)
100                        )$charset_collate;";
101                dbDelta($queries);
102        }
103       
104        clean_template($mydirname,$xpress_version);
105
106        // update templates
107//      include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates.php' ;
108//      $msgs = xpress_update_templates($mid,$mydirname);
109       
110        return true ;
111}
112endif;
113
114if( ! function_exists( 'xpress_message_append_onupdate' ) ) :
115function xpress_message_append_onupdate( &$module_obj , &$log )
116{
117        if( is_array( @$GLOBALS['msgs'] ) ) {
118                foreach( $GLOBALS['msgs'] as $message ) {
119                        $log->add( strip_tags( $message ) ) ;
120                }
121        }
122
123        // use mLog->addWarning() or mLog->addError() if necessary
124}
125endif;
126
127if( ! function_exists( 'get_db_version' ) ) :
128function get_db_version($mydirname){
129                global $xoopsModule;
130                $wp_prefix = $mydirname;
131                if ($wp_prefix == 'wordpress'){
132                        $wp_prefix = 'wp';
133                }
134                $xoopsDB =& Database::getInstance();
135                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options');
136
137                $sql = "SELECT option_value FROM $db_xpress_option WHERE option_name = 'db_version'";
138                $res = $xoopsDB->query($sql, 0, 0);
139                if ($res === false){
140                        return false;
141                } else {
142                        $row = $xoopsDB->fetchArray($res);
143                        return $row['option_value'];
144                }
145}
146endif;
147
148if( ! function_exists( 'clean_template' ) ) :
149function clean_template($mydirname,$xpress_ver){
150                global $xoopsModule;
151               
152                $var = floatval($xpress_ver);
153                switch ($var){
154                        case ($var >= 0.62):
155                                $temp_file = "'". $mydirname . "_home.html','" . $mydirname. "_index.html','" . $mydirname . "_search.html','" . $mydirname . "_single.html'";
156                                break;
157                        case ($var >= 0.60):
158                                $temp_file = "'xpress_header.html','xpress_home.html','xpress_index.html','xpress_search.html','xpress_sidebar.html'";
159                                break;
160                        default:
161                                $temp_file = 'all';
162                }
163               
164                if ($temp_file != 'all'){                       
165                        $xoopsDB =& Database::getInstance();
166                        $db_tplfile = $xoopsDB->prefix('tplfile');
167                        $db_tplsource = $xoopsDB->prefix('tplsource');
168
169                        $sql = "SELECT * FROM $db_tplfile WHERE tpl_module = '$mydirname' AND NOT tpl_file IN($temp_file)";
170                        $res = $xoopsDB->query($sql, 0, 0);
171                        if ($res === false){
172                                return false;
173                        } else {
174                                $del_array = '';
175                                $i=0;
176                                while($row = $xoopsDB->fetchArray($res)){
177                                        if (!empty($del_array))
178                                        $del_array .= ',';
179                                        $del_array .= $row['tpl_id'];
180                                }
181                                if(!empty($del_array)){
182                                        $del_tplfile  = "DELETE FROM $db_tplfile WHERE tpl_id IN ($del_array)";
183                                        $result = $xoopsDB->query($del_tplfile, 0, 0);
184                                        $del_tplsource  = "DELETE FROM $del_tplsource WHERE tpl_id IN ($del_array)";
185                                        $result = $xoopsDB->query($del_tplfile, 0, 0);
186                                }
187                        }
188                }
189}
190endif;
191
192if( ! function_exists( 'enhanced_table_check' ) ) :
193function enhanced_table_check($mydirname,$table_name){
194                global $xoopsModule;
195               
196                $xoopsDB =& Database::getInstance();
197                if ($mydirname == 'wordpress'){
198                        $xpress_prefix=  $xoopsDB->prefix('wp_');
199                } else {
200                        $xpress_prefix=  $xoopsDB->prefix($mydirname . '_');
201                }
202                $db_enhanced = $xpress_prefix . $table_name;
203
204                $sql = "show tables like '$db_enhanced'";
205                $res = $xoopsDB->query($sql, 0, 0);
206                if ($res === false){
207                        return false;
208                } else {
209                        if ($xoopsDB->getRowsNum($res)  > 0)
210                                return true;
211                        else
212                                return false;
213                }
214}
215endif;
216
217?>
Note: See TracBrowser for help on using the repository browser.