XPressME Integration Kit

Trac

source: trunk/include/onupdate.php @ 81

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

r76 の続き 
XOOPSグループに対する権限設定でログイン毎に権限を更新するか、初回ログイン時のみ設定するかを選択できるようにした。
権限の選択に「WordPressのデフォルト権限」を追加

File size: 7.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_once(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        if (! enhanced_table_check($mydirname,'group_role')){
105                $xp_prefix = $mydirname;
106                if ($xp_prefix == 'wordpress'){
107                        $xp_prefix = 'wp';
108                }
109               
110                $charset_collate = '';
111                if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
112                        if ( ! empty($wpdb->charset) )
113                        $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
114                        if ( ! empty($wpdb->collate) )
115                        $charset_collate .= " COLLATE $wpdb->collate";
116                }
117       
118                $group_role = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_group_role' ;
119                $views_queries ="CREATE TABLE $group_role (
120                        groupid smallint(5) unsigned NOT NULL default '0',
121                        name varchar(50)  NOT NULL default '' ,
122                        description text  NOT NULL default '',
123                        group_type varchar(10)  NOT NULL default '' ,
124                        role varchar(20)  NOT NULL default '' ,
125                        login_all smallint(5) unsigned NOT NULL default '0' ,
126                        KEY groupid (groupid)
127                        )$charset_collate;";
128                dbDelta($views_queries);
129                $sql = "INSERT INTO $group_role (groupid, role) VALUES (1, 'administrator')";
130                $wpdb->query($sql);
131
132        }
133       
134        clean_template($mydirname,$xpress_version);
135
136        // update templates
137//      include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates.php' ;
138//      $msgs = xpress_update_templates($mid,$mydirname);
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
178if( ! function_exists( 'clean_template' ) ) :
179function clean_template($mydirname,$xpress_ver){
180                global $xoopsModule;
181               
182                $var = floatval($xpress_ver);
183                switch ($var){
184                        case ($var >= 0.62):
185                                $temp_file = "'". $mydirname . "_home.html','" . $mydirname. "_index.html','" . $mydirname . "_search.html','" . $mydirname . "_single.html'";
186                                break;
187                        case ($var >= 0.60):
188                                $temp_file = "'xpress_header.html','xpress_home.html','xpress_index.html','xpress_search.html','xpress_sidebar.html'";
189                                break;
190                        default:
191                                $temp_file = 'all';
192                }
193               
194                if ($temp_file != 'all'){                       
195                        $xoopsDB =& Database::getInstance();
196                        $db_tplfile = $xoopsDB->prefix('tplfile');
197                        $db_tplsource = $xoopsDB->prefix('tplsource');
198
199                        $sql = "SELECT * FROM $db_tplfile WHERE tpl_module = '$mydirname' AND NOT tpl_file IN($temp_file)";
200                        $res = $xoopsDB->query($sql, 0, 0);
201                        if ($res === false){
202                                return false;
203                        } else {
204                                $del_array = '';
205                                $i=0;
206                                while($row = $xoopsDB->fetchArray($res)){
207                                        if (!empty($del_array))
208                                        $del_array .= ',';
209                                        $del_array .= $row['tpl_id'];
210                                }
211                                if(!empty($del_array)){
212                                        $del_tplfile  = "DELETE FROM $db_tplfile WHERE tpl_id IN ($del_array)";
213                                        $result = $xoopsDB->query($del_tplfile, 0, 0);
214                                        $del_tplsource  = "DELETE FROM $del_tplsource WHERE tpl_id IN ($del_array)";
215                                        $result = $xoopsDB->query($del_tplfile, 0, 0);
216                                }
217                        }
218                }
219}
220endif;
221
222if( ! function_exists( 'enhanced_table_check' ) ) :
223function enhanced_table_check($mydirname,$table_name){
224                global $xoopsModule;
225               
226                $xoopsDB =& Database::getInstance();
227                if ($mydirname == 'wordpress'){
228                        $xpress_prefix=  $xoopsDB->prefix('wp_');
229                } else {
230                        $xpress_prefix=  $xoopsDB->prefix($mydirname . '_');
231                }
232                $db_enhanced = $xpress_prefix . $table_name;
233
234                $sql = "show tables like '$db_enhanced'";
235                $res = $xoopsDB->query($sql, 0, 0);
236                if ($res === false){
237                        return false;
238                } else {
239                        if ($xoopsDB->getRowsNum($res)  > 0)
240                                return true;
241                        else
242                                return false;
243                }
244}
245endif;
246
247?>
Note: See TracBrowser for help on using the repository browser.