XPressME Integration Kit

Trac

source: branches/Ver3.0/xpressme_integration_kit/include/add_xpress_process.php @ 757

Last change on this file since 757 was 757, checked in by toemon, 13 years ago

ConfigFromXoopsクラスを廃止し、modInfoクラスを使用するように変更
WP2.2以下で使用するテンプレートold_templateの廃止

File size: 7.9 KB
Line 
1<?php
2// used wptouch plugin & iPhone access check (thx uemu)
3function is_iphone_with_wptouch(){
4        global $wptouch_plugin;
5        if (is_object($wptouch_plugin)) return $wptouch_plugin->applemobile;
6        return false;
7}
8
9function ob_end_flush_child($now_ob_level){
10        // The flash does the output buffer of WP before doing rendering.
11        // Example: comment_quicktags plugin does not flash buffer specifically.
12        while(ob_get_level() > $now_ob_level) ob_end_flush();
13        $ob_level = ob_get_level();
14}
15function safe_site_url(){
16        global $modInfo,$blog_id,$blogname;
17       
18        if (is_xpress_index_page_call()){
19               
20                if (!empty($_POST['submit_url_change'])) {
21                        if (!empty($_POST['site_url_set'])) {
22                                update_option('siteurl' , $_POST['site_url_set']);
23                        }
24                        if (!empty($_POST['home_url_set'])) {
25                                update_option('home' , $_POST['home_url_set']);
26                        }
27                }
28                if (!empty($_POST['submit_redirect'])) {
29                        $url = get_option('home') . '/wp-admin/options-permalink.php';
30//                      echo $url;
31                        wp_redirect($url);
32                        exit();
33                }
34
35                $siteurl = get_option('siteurl');
36                $home = get_option('home');
37                $module_url = $modInfo->get_module_url();
38                $module_name = $modInfo->get_module_name();
39                $schema = ( isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ) ? 'https://' : 'http://';
40                $guess_url = preg_replace('|/' . $module_name . '/.*|i', '/' . $module_name, $schema . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
41                $blog_sub_path = '';
42                if(function_exists('is_multisite') && is_multisite()){
43                        if ($blog_id > 0 && $blog_id != BLOG_ID_CURRENT_SITE){
44                                $blog_sub_path = '/' .$blogname;
45                        }
46                }
47                $guess_url .= $blog_sub_path;
48                $xoops_module_url = $module_url.$blog_sub_path;
49               
50                $site_url_error =  false;
51                if(strcmp($siteurl,$guess_url) !== 0) {
52                        if (!@fclose(@fopen($siteurl . '/xoops_version.php', "r"))){
53                                $site_url_error = true;
54                        }
55                }
56                $home_url_error = false;
57                if(strcmp($guess_url,$home) !== 0) {
58                        $home_url_error = true;
59                }
60                if ($site_url_error || $home_url_error){
61                        include $modInfo->get_xoops_header_path();
62                        $form = '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n";
63                        $form .= '<table cellspacing="1" cellpadding="1" border="0">';
64                        $form .= '<tbody>';
65                        if ($site_url_error){
66                                $site_url_error_log = __('Can not access WordPress address (URL).','xpressme');
67                                $form .= '<tr><td colspan="3"><font color="red"><b>' . $site_url_error_log . '</b></font></td></tr>';
68                                $form .= '<tr>';
69                                $form .= '<td width="16">&nbsp;</td>';
70                                $form .= '<td width="64">'.__('WordPress address (URL)').'</td>';
71                                $form .= '<td>';
72                                $form .= $siteurl . '<br />';
73                                $form .= '&emsp;to<br />';
74                                $form .= '<input name="site_url_set" type="text" size="64" maxlength="200" value="'  . $guess_url . '" /></td>';
75                                $form .= '</tr>';
76
77                        }
78                        if ($home_url_error){
79                                if ($site_url_error) $form .= '<tr><td colspan="3">&nbsp;</td></tr>';;
80                                $home_url_error_log = __('WordPress Blog address (URL) is different from access URL.','xpressme');
81                                $form .= '<tr><td colspan="3"><font color="red"><b>' . $home_url_error_log . '</b></font></td></tr>';
82                                $form .= '<tr>';
83                                $form .= '<td width="16">&nbsp;</td>';
84                                $form .= '<td width="144">'. __('Blog address (URL)') .'</td>';
85                                $form .= '<td>';
86                                $form .= $home . '<br />';
87                                $form .= '&emsp;to<br />';
88                                $form .= '<input name="home_url_set" type="text" size="64" maxlength="200" value="'  . $guess_url . '" /></td>';
89                                $form .= '</tr>';
90                        }
91                        $form .= '</tbody>';
92                        $form .= '</table><br />';
93                        $form .= '<input type="submit" value= "'.__('Save Changes').'" name="submit_url_change" />' ."\n";
94                        $form .= '</form>' ."\n";
95                        echo $form;
96                        include $modInfo->get_xoops_footer_path();
97                        exit();
98                }
99                if (!empty($_POST['home_url_set'])) {
100                        $url = get_option('home') . '/wp-admin/options-permalink.php';
101                        $form = '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n";
102                        $form .= '<p><font color="blue"><b>'. __('After Blog address (URL) is set, it is necessary to set the permalink again.','xpressme').'</b></font></p>';
103                        $form .= '<input type="submit" value= "'.__('Permalink Settings').'" name="submit_redirect" />' ."\n";
104                        $form .= '</form>' ."\n";
105                        include $modInfo->get_xoops_header_path();
106                        echo $form;
107                        include $modInfo->get_xoops_footer_path();
108                        exit();
109                }
110
111        }
112}
113require_once( dirname( __FILE__ ).'/request_url.php');
114require_once( dirname( __FILE__ ).'/memory_limit.php');
115
116$global_session = $_SESSION;
117if (is_xpress_index_page_call()){
118        require_once( dirname( __FILE__ ).'/wp_check.php');
119        if (!is_wpdb_installed()){
120                include $modInfo->get_xoops_header_path();
121                echo "<h2>Wordpress has not been installed yet. </h2>";
122                include $modInfo->get_xoops_footer_path();
123                exit();
124        }
125
126        xpress_set_memory_limmit(); // Set memory limmit.(Limmit Value from XPressMe modele config.)
127        unset($offset);         //This Trap is provides the case where $offset is defined on the XOOPS side.
128       
129        require_once(ABSPATH.'wp-settings.php');
130       
131        //When it is not possible to connect it correctly at site home URL on the WordPress side,
132        //URL is corrected based on accessed URL.
133
134        global $xoopsUserIsAdmin;
135        if ($xoopsUserIsAdmin) safe_site_url();
136
137        if (!is_object($xoopsUser)){    // before login auth cookie clear
138                wp_logout();
139        }
140        wp();
141        //for Event notification update on single post to which link is changed by permalink
142        if ( is_404() ) {
143                if (!empty($_POST['not_redirect'])) {
144                        include '../../mainfile.php';
145                        require_once XOOPS_ROOT_PATH.'/include/notification_update.php';
146                        exit();
147                }
148        }
149       
150        if (!function_exists('is_wordpress_style')){    // When the XPressME plug-in is invalid
151                require_once dirname( __FILE__ ).'/xpress_active_plugin.php' ;
152                xpress_pulugin_activation('xpressme/xpressme.php');
153                // reloaded
154                header('Location: ' . $modInfo->get_module_url() . '/');
155               
156                $err_str = "The activation of the XPressME plugin was executed.<br />\n";
157                $err_str .= "Because the XPressME plugin was invalid.<br />\n";
158                $err_str .= "Please do the rereading seeing on the page.\n";                   
159                die($err_str);
160        }
161       
162        Notification_reserve_send();
163        ob_start();
164                $now_ob_level = ob_get_level();
165                require_once( ABSPATH . WPINC . '/template-loader.php' );
166                ob_end_flush_child($now_ob_level);
167                $wp_output = ob_get_contents();
168        ob_end_clean();
169       
170        // insert credit
171        $pattern = '<body';
172        $replace = "\n<!-- credit " . xpress_credit('echo=0&no_link=1') . " -->\n<body";
173        $wp_output = preg_replace("/" . $pattern . "/s", $replace, $wp_output);
174                       
175        //Rendering Select
176        if(
177                is_wordpress_style()            // When the display mode is WordPress style
178                || is_feed()                            // It judges it here because it does in is_index_page() through feed to which the permalink is set.
179                || is_iphone_with_wptouch()     // When iPhone access & used wptouch plugin (thx uemu)
180        ){
181
182                        echo $wp_output;
183        } else {
184                        require_once( dirname( __FILE__ ).'/xpress_render.php' );
185                        xpress_render($wp_output);
186        }
187
188        //When there is no block cache, and an optional block is different, cache is refreshed.
189        //When adding, and changing and deleting Post & Comment, block cache is refreshed by add_action at any time.
190        // This Function in xpressme plugin
191        require_once( dirname( __FILE__ ).'/xpress_block_render.php' );
192        xpress_unnecessary_block_cache_delete($modInfo->get_module_dirname());
193        if (is_home()) {
194                xpress_block_cache_refresh($modInfo->get_module_dirname());
195                require_once( dirname( __FILE__ ).'/xpress_block_header.php' );
196                set_xpress_block_header($modInfo->get_module_dirname());
197        }
198        if ( ini_get( 'register_globals' ) )
199                $_SESSION = $global_session; //restore a session erased by wp_unregister_GLOBALS
200       
201        exit();         // The return to wp-blog-header.php is stolen here
202}
203xpress_set_memory_limmit(); // Set memory limmit.(Limmit Value from XPressMe modele config.)
204require_once(ABSPATH.'wp-settings.php');
205if ( ini_get( 'register_globals' ) )
206        $_SESSION = $global_session; //restore a session erased by wp_unregister_GLOBALS
207?>
Note: See TracBrowser for help on using the repository browser.