[1] | 1 | <?php |
---|
| 2 | $mydirname = basename( dirname( dirname( __FILE__ ) ) ) ; |
---|
| 3 | |
---|
| 4 | eval( ' function xoops_module_update_'.$mydirname.'( $module ) { return xpress_onupdate_base( $module , "'.$mydirname.'" ) ; } ' ) ; |
---|
| 5 | |
---|
| 6 | |
---|
| 7 | if( ! function_exists( 'xpress_onupdate_base' ) ) : |
---|
| 8 | function 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 | } |
---|
[34] | 48 | /* activate the tag plugin */ |
---|
| 49 | $plugin_current = "xpressme/xpressme.php"; |
---|
| 50 | update_option('active_plugins', array($plugin_current)); |
---|
[77] | 51 | include_once(dirname(__FILE__) . '/../wp-content/plugins/'.$plugin_current); |
---|
[34] | 52 | do_action('activate_'.$plugin_current); |
---|
| 53 | |
---|
[1] | 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 | } |
---|
[76] | 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 | } |
---|
[1] | 117 | |
---|
[76] | 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 | KEY groupid (groupid) |
---|
| 126 | )$charset_collate;"; |
---|
| 127 | dbDelta($views_queries); |
---|
| 128 | } |
---|
| 129 | |
---|
[1] | 130 | clean_template($mydirname,$xpress_version); |
---|
| 131 | |
---|
| 132 | // update templates |
---|
| 133 | // include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates.php' ; |
---|
| 134 | // $msgs = xpress_update_templates($mid,$mydirname); |
---|
| 135 | |
---|
| 136 | return true ; |
---|
| 137 | } |
---|
| 138 | endif; |
---|
| 139 | |
---|
| 140 | if( ! function_exists( 'xpress_message_append_onupdate' ) ) : |
---|
| 141 | function xpress_message_append_onupdate( &$module_obj , &$log ) |
---|
| 142 | { |
---|
| 143 | if( is_array( @$GLOBALS['msgs'] ) ) { |
---|
| 144 | foreach( $GLOBALS['msgs'] as $message ) { |
---|
| 145 | $log->add( strip_tags( $message ) ) ; |
---|
| 146 | } |
---|
| 147 | } |
---|
| 148 | |
---|
| 149 | // use mLog->addWarning() or mLog->addError() if necessary |
---|
| 150 | } |
---|
| 151 | endif; |
---|
| 152 | |
---|
| 153 | if( ! function_exists( 'get_db_version' ) ) : |
---|
| 154 | function get_db_version($mydirname){ |
---|
| 155 | global $xoopsModule; |
---|
| 156 | $wp_prefix = $mydirname; |
---|
| 157 | if ($wp_prefix == 'wordpress'){ |
---|
| 158 | $wp_prefix = 'wp'; |
---|
| 159 | } |
---|
| 160 | $xoopsDB =& Database::getInstance(); |
---|
| 161 | $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options'); |
---|
| 162 | |
---|
| 163 | $sql = "SELECT option_value FROM $db_xpress_option WHERE option_name = 'db_version'"; |
---|
| 164 | $res = $xoopsDB->query($sql, 0, 0); |
---|
| 165 | if ($res === false){ |
---|
| 166 | return false; |
---|
| 167 | } else { |
---|
| 168 | $row = $xoopsDB->fetchArray($res); |
---|
| 169 | return $row['option_value']; |
---|
| 170 | } |
---|
| 171 | } |
---|
| 172 | endif; |
---|
| 173 | |
---|
| 174 | if( ! function_exists( 'clean_template' ) ) : |
---|
| 175 | function clean_template($mydirname,$xpress_ver){ |
---|
| 176 | global $xoopsModule; |
---|
| 177 | |
---|
| 178 | $var = floatval($xpress_ver); |
---|
| 179 | switch ($var){ |
---|
| 180 | case ($var >= 0.62): |
---|
| 181 | $temp_file = "'". $mydirname . "_home.html','" . $mydirname. "_index.html','" . $mydirname . "_search.html','" . $mydirname . "_single.html'"; |
---|
| 182 | break; |
---|
| 183 | case ($var >= 0.60): |
---|
| 184 | $temp_file = "'xpress_header.html','xpress_home.html','xpress_index.html','xpress_search.html','xpress_sidebar.html'"; |
---|
| 185 | break; |
---|
| 186 | default: |
---|
| 187 | $temp_file = 'all'; |
---|
| 188 | } |
---|
| 189 | |
---|
| 190 | if ($temp_file != 'all'){ |
---|
| 191 | $xoopsDB =& Database::getInstance(); |
---|
| 192 | $db_tplfile = $xoopsDB->prefix('tplfile'); |
---|
| 193 | $db_tplsource = $xoopsDB->prefix('tplsource'); |
---|
| 194 | |
---|
| 195 | $sql = "SELECT * FROM $db_tplfile WHERE tpl_module = '$mydirname' AND NOT tpl_file IN($temp_file)"; |
---|
| 196 | $res = $xoopsDB->query($sql, 0, 0); |
---|
| 197 | if ($res === false){ |
---|
| 198 | return false; |
---|
| 199 | } else { |
---|
| 200 | $del_array = ''; |
---|
| 201 | $i=0; |
---|
| 202 | while($row = $xoopsDB->fetchArray($res)){ |
---|
| 203 | if (!empty($del_array)) |
---|
| 204 | $del_array .= ','; |
---|
| 205 | $del_array .= $row['tpl_id']; |
---|
| 206 | } |
---|
| 207 | if(!empty($del_array)){ |
---|
| 208 | $del_tplfile = "DELETE FROM $db_tplfile WHERE tpl_id IN ($del_array)"; |
---|
| 209 | $result = $xoopsDB->query($del_tplfile, 0, 0); |
---|
| 210 | $del_tplsource = "DELETE FROM $del_tplsource WHERE tpl_id IN ($del_array)"; |
---|
| 211 | $result = $xoopsDB->query($del_tplfile, 0, 0); |
---|
| 212 | } |
---|
| 213 | } |
---|
| 214 | } |
---|
| 215 | } |
---|
| 216 | endif; |
---|
| 217 | |
---|
| 218 | if( ! function_exists( 'enhanced_table_check' ) ) : |
---|
| 219 | function enhanced_table_check($mydirname,$table_name){ |
---|
| 220 | global $xoopsModule; |
---|
| 221 | |
---|
| 222 | $xoopsDB =& Database::getInstance(); |
---|
| 223 | if ($mydirname == 'wordpress'){ |
---|
| 224 | $xpress_prefix= $xoopsDB->prefix('wp_'); |
---|
| 225 | } else { |
---|
| 226 | $xpress_prefix= $xoopsDB->prefix($mydirname . '_'); |
---|
| 227 | } |
---|
| 228 | $db_enhanced = $xpress_prefix . $table_name; |
---|
| 229 | |
---|
| 230 | $sql = "show tables like '$db_enhanced'"; |
---|
| 231 | $res = $xoopsDB->query($sql, 0, 0); |
---|
| 232 | if ($res === false){ |
---|
| 233 | return false; |
---|
| 234 | } else { |
---|
| 235 | if ($xoopsDB->getRowsNum($res) > 0) |
---|
| 236 | return true; |
---|
| 237 | else |
---|
| 238 | return false; |
---|
| 239 | } |
---|
| 240 | } |
---|
| 241 | endif; |
---|
| 242 | |
---|
| 243 | ?> |
---|