]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/ms-load.php
Wordpress 3.0.6-scripts
[autoinstalls/wordpress.git] / wp-includes / ms-load.php
1 <?php
2 /**
3  * These functions are needed to load Multisite.
4  *
5  * @since 3.0.0
6  *
7  * @package WordPress
8  * @subpackage Multisite
9  */
10
11 /**
12  * Whether a subdomain configuration is enabled.
13  *
14  * @since 3.0.0
15  *
16  * @return bool True if subdomain configuration is enabled, false otherwise.
17  */
18 function is_subdomain_install() {
19         if ( defined('SUBDOMAIN_INSTALL') )
20                 return SUBDOMAIN_INSTALL;
21
22         if ( defined('VHOST') && VHOST == 'yes' )
23                 return true;
24
25         return false;
26 }
27
28 /**
29  * Checks status of current blog.
30  *
31  * Checks if the blog is deleted, inactive, archived, or spammed.
32  *
33  * Dies with a default message if the blog does not pass the check.
34  *
35  * To change the default message when a blog does not pass the check,
36  * use the wp-content/blog-deleted.php, blog-inactive.php and
37  * blog-suspended.php drop-ins.
38  *
39  * @return bool|string Returns true on success, or drop-in file to include.
40  */
41 function ms_site_check() {
42         global $wpdb, $current_blog;
43
44         // Allow short-circuiting
45         $check = apply_filters('ms_site_check', null);
46         if ( null !== $check )
47                 return true;
48
49         // Allow super admins to see blocked sites
50         if ( is_super_admin() )
51                 return true;
52
53         if ( '1' == $current_blog->deleted ) {
54                 if ( file_exists( WP_CONTENT_DIR . '/blog-deleted.php' ) ) {
55                         return WP_CONTENT_DIR . '/blog-deleted.php';
56                 } else {
57                         header( 'HTTP/1.1 410 Gone' );
58                         wp_die( /*WP_I18N_USER_DELETED_BLOG*/'This user has elected to delete their account and the content is no longer available.'/*/WP_I18N_USER_DELETED_BLOG*/ );
59                 }
60         }
61
62         if ( '2' == $current_blog->deleted ) {
63                 if ( file_exists( WP_CONTENT_DIR . '/blog-inactive.php' ) )
64                         return WP_CONTENT_DIR . '/blog-inactive.php';
65                 else
66                         wp_die( sprintf( /*WP_I18N_BLOG_NOT_ACTIVATED*/'This site has not been activated yet. If you are having problems activating your site, please contact <a href="mailto:%1$s">%1$s</a>.'/*/WP_I18N_BLOG_NOT_ACTIVATED*/, str_replace( '@', ' AT ', get_site_option( 'admin_email', "support@{$current_site->domain}" ) ) ) );
67         }
68
69         if ( $current_blog->archived == '1' || $current_blog->spam == '1' ) {
70                 if ( file_exists( WP_CONTENT_DIR . '/blog-suspended.php' ) ) {
71                         return WP_CONTENT_DIR . '/blog-suspended.php';
72                 } else {
73                         header( 'HTTP/1.1 410 Gone' );
74                         wp_die( /*WP_I18N_ARCHIVED*/'This site has been archived or suspended.'/*/WP_I18N_ARCHIVED*/ );
75                 }
76         }
77
78         return true;
79 }
80
81 /**
82  * Sets current site name.
83  *
84  * @access private
85  * @since 3.0.0
86  * @return object $current_site object with site_name
87  */
88 function get_current_site_name( $current_site ) {
89         global $wpdb;
90         $current_site->site_name = wp_cache_get( $current_site->id . ':current_site_name', 'site-options' );
91         if ( ! $current_site->site_name ) {
92                 $current_site->site_name = wp_cache_get( $current_site->id . ':site_name', 'site-options' );
93                 if ( ! $current_site->site_name ) {
94                         $current_site->site_name = $wpdb->get_var( $wpdb->prepare( "SELECT meta_value FROM $wpdb->sitemeta WHERE site_id = %d AND meta_key = 'site_name'", $current_site->id ) );
95                         if ( ! $current_site->site_name )
96                                 $current_site->site_name = ucfirst( $current_site->domain );
97                 }
98                 wp_cache_set( $current_site->id . ':current_site_name', $current_site->site_name, 'site-options' );
99         }
100         return $current_site;
101 }
102
103 /**
104  * Sets current_site object.
105  *
106  * @access private
107  * @since 3.0.0
108  * @return object $current_site object
109  */
110 function wpmu_current_site() {
111         global $wpdb, $current_site, $domain, $path, $sites, $cookie_domain;
112         if ( defined( 'DOMAIN_CURRENT_SITE' ) && defined( 'PATH_CURRENT_SITE' ) ) {
113                 $current_site->id = defined( 'SITE_ID_CURRENT_SITE' ) ? SITE_ID_CURRENT_SITE : 1;
114                 $current_site->domain = DOMAIN_CURRENT_SITE;
115                 $current_site->path   = $path = PATH_CURRENT_SITE;
116                 if ( defined( 'BLOG_ID_CURRENT_SITE' ) )
117                         $current_site->blog_id = BLOG_ID_CURRENT_SITE;
118                 elseif ( defined( 'BLOGID_CURRENT_SITE' ) ) // deprecated.
119                         $current_site->blog_id = BLOGID_CURRENT_SITE;
120                 if ( DOMAIN_CURRENT_SITE == $domain )
121                         $current_site->cookie_domain = $cookie_domain;
122                 elseif ( substr( $current_site->domain, 0, 4 ) == 'www.' )
123                         $current_site->cookie_domain = substr( $current_site->domain, 4 );
124                 else
125                         $current_site->cookie_domain = $current_site->domain;
126
127                 wp_load_core_site_options( $current_site->id );
128
129                 return $current_site;
130         }
131
132         $current_site = wp_cache_get( 'current_site', 'site-options' );
133         if ( $current_site )
134                 return $current_site;
135
136         $sites = $wpdb->get_results( "SELECT * FROM $wpdb->site" ); // usually only one site
137         if ( 1 == count( $sites ) ) {
138                 $current_site = $sites[0];
139                 wp_load_core_site_options( $current_site->id );
140                 $path = $current_site->path;
141                 $current_site->blog_id = $wpdb->get_var( $wpdb->prepare( "SELECT blog_id FROM $wpdb->blogs WHERE domain = %s AND path = %s", $current_site->domain, $current_site->path ) );
142                 $current_site = get_current_site_name( $current_site );
143                 if ( substr( $current_site->domain, 0, 4 ) == 'www.' )
144                         $current_site->cookie_domain = substr( $current_site->domain, 4 );
145                 wp_cache_set( 'current_site', $current_site, 'site-options' );
146                 return $current_site;
147         }
148         $path = substr( $_SERVER[ 'REQUEST_URI' ], 0, 1 + strpos( $_SERVER[ 'REQUEST_URI' ], '/', 1 ) );
149
150         if ( $domain == $cookie_domain )
151                 $current_site = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->site WHERE domain = %s AND path = %s", $domain, $path ) );
152         else
153                 $current_site = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->site WHERE domain IN ( %s, %s ) AND path = %s ORDER BY CHAR_LENGTH( domain ) DESC LIMIT 1", $domain, $cookie_domain, $path ) );
154
155         if ( ! $current_site ) {
156                 if ( $domain == $cookie_domain )
157                         $current_site = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->site WHERE domain = %s AND path='/'", $domain ) );
158                 else
159                         $current_site = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->site WHERE domain IN ( %s, %s ) AND path = '/' ORDER BY CHAR_LENGTH( domain ) DESC LIMIT 1", $domain, $cookie_domain, $path ) );
160         }
161
162         if ( $current_site ) {
163                 $path = $current_site->path;
164                 $current_site->cookie_domain = $cookie_domain;
165                 return $current_site;
166         }
167
168         if ( is_subdomain_install() ) {
169                 $sitedomain = substr( $domain, 1 + strpos( $domain, '.' ) );
170                 $current_site = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->site WHERE domain = %s AND path = %s", $sitedomain, $path) );
171                 if ( $current_site ) {
172                         $current_site->cookie_domain = $current_site->domain;
173                         return $current_site;
174                 }
175
176                 $current_site = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->site WHERE domain = %s AND path='/'", $sitedomain) );
177         }
178
179         if ( $current_site || defined( 'WP_INSTALLING' ) ) {
180                 $path = '/';
181                 return $current_site;
182         }
183
184         // Still no dice.
185         if ( 1 == count( $sites ) )
186                 wp_die( sprintf( /*WP_I18N_BLOG_DOESNT_EXIST*/'That site does not exist. Please try <a href="%s">%s</a>.'/*/WP_I18N_BLOG_DOESNT_EXIST*/, $sites[0]->domain . $sites[0]->path ) );
187         else
188                 wp_die( /*WP_I18N_NO_SITE_DEFINED*/'No site defined on this host. If you are the owner of this site, please check <a href="http://codex.wordpress.org/Debugging_a_WordPress_Network">Debugging a WordPress Network</a> for help.'/*/WP_I18N_NO_SITE_DEFINED*/ );
189 }
190
191 /**
192  * Displays a failure message.
193  *
194  * Used when a blog's tables do not exist. Checks for a missing $wpdb->site table as well.
195  *
196  * @access private
197  * @since 3.0.0
198  */
199 function ms_not_installed() {
200         global $wpdb, $domain, $path;
201
202         $title = /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/;
203         $msg  = '<h1>' . $title . '</h1>';
204         if ( ! is_admin() )
205                 die( $msg );
206         $msg .= '<p>' . /*WP_I18N_CONTACT_OWNER*/'If your site does not display, please contact the owner of this network.'/*/WP_I18N_CONTACT_OWNER*/ . '';
207         $msg .= ' ' . /*WP_I18N_CHECK_MYSQL*/'If you are the owner of this network please check that MySQL is running properly and all tables are error free.'/*/WP_I18N_CHECK_MYSQL*/ . '</p>';
208         if ( false && !$wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) )
209                 $msg .= '<p>' . sprintf( /*WP_I18N_TABLES_MISSING_LONG*/'<strong>Database tables are missing.</strong> This means that MySQL is not running, WordPress was not installed properly, or someone deleted <code>%s</code>. You really should look at your database now.'/*/WP_I18N_TABLES_MISSING_LONG*/, $wpdb->site ) . '</p>';
210         else
211                 $msg .= '<p>' . sprintf( /*WP_I18N_NO_SITE_FOUND*/'<strong>Could not find site <code>%1$s</code>.</strong> Searched for table <code>%2$s</code> in database <code>%3$s</code>. Is that right?'/*/WP_I18N_NO_SITE_FOUND*/, rtrim( $domain . $path, '/' ), $wpdb->blogs, DB_NAME ) . '</p>';
212         $msg .= '<p><strong>' . /*WP_I18N_WHAT_DO_I_DO*/'What do I do now?'/*WP_I18N_WHAT_DO_I_DO*/ . '</strong> ';
213         $msg .= /*WP_I18N_RTFM*/'Read the <a target="_blank" href="http://codex.wordpress.org/Debugging_a_WordPress_Network">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.'/*/WP_I18N_RTFM*/;
214         $msg .= ' ' . /*WP_I18N_STUCK*/'If you&#8217;re still stuck with this message, then check that your database contains the following tables:'/*/WP_I18N_STUCK*/ . '</p><ul>';
215         foreach ( $wpdb->tables('global') as $t => $table ) {
216                 if ( 'sitecategories' == $t )
217                         continue;
218                 $msg .= '<li>' . $table . '</li>';
219         }
220         $msg .= '</ul>';
221
222         wp_die( $msg, $title );
223 }
224
225 ?>