PageRenderTime 50ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-includes/ms-load.php

http://comanda2015.googlecode.com/
PHP | 254 lines | 156 code | 34 blank | 64 comment | 53 complexity | 8bc6e2e627d214e0b40292f8fccca2f9 MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1
  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. * Whether a subdomain configuration is enabled.
  12. *
  13. * @since 3.0.0
  14. *
  15. * @return bool True if subdomain configuration is enabled, false otherwise.
  16. */
  17. function is_subdomain_install() {
  18. if ( defined('SUBDOMAIN_INSTALL') )
  19. return SUBDOMAIN_INSTALL;
  20. if ( defined('VHOST') && VHOST == 'yes' )
  21. return true;
  22. return false;
  23. }
  24. /**
  25. * Returns array of network plugin files to be included in global scope.
  26. *
  27. * The default directory is wp-content/plugins. To change the default directory
  28. * manually, define <code>WP_PLUGIN_DIR</code> and <code>WP_PLUGIN_URL</code>
  29. * in wp-config.php.
  30. *
  31. * @access private
  32. * @since 3.1.0
  33. * @return array Files to include
  34. */
  35. function wp_get_active_network_plugins() {
  36. $active_plugins = (array) get_site_option( 'active_sitewide_plugins', array() );
  37. if ( empty( $active_plugins ) )
  38. return array();
  39. $plugins = array();
  40. $active_plugins = array_keys( $active_plugins );
  41. sort( $active_plugins );
  42. foreach ( $active_plugins as $plugin ) {
  43. if ( ! validate_file( $plugin ) // $plugin must validate as file
  44. && '.php' == substr( $plugin, -4 ) // $plugin must end with '.php'
  45. && file_exists( WP_PLUGIN_DIR . '/' . $plugin ) // $plugin must exist
  46. )
  47. $plugins[] = WP_PLUGIN_DIR . '/' . $plugin;
  48. }
  49. return $plugins;
  50. }
  51. /**
  52. * Checks status of current blog.
  53. *
  54. * Checks if the blog is deleted, inactive, archived, or spammed.
  55. *
  56. * Dies with a default message if the blog does not pass the check.
  57. *
  58. * To change the default message when a blog does not pass the check,
  59. * use the wp-content/blog-deleted.php, blog-inactive.php and
  60. * blog-suspended.php drop-ins.
  61. *
  62. * @return bool|string Returns true on success, or drop-in file to include.
  63. */
  64. function ms_site_check() {
  65. global $wpdb, $current_blog;
  66. // Allow short-circuiting
  67. $check = apply_filters('ms_site_check', null);
  68. if ( null !== $check )
  69. return true;
  70. // Allow super admins to see blocked sites
  71. if ( is_super_admin() )
  72. return true;
  73. if ( '1' == $current_blog->deleted ) {
  74. if ( file_exists( WP_CONTENT_DIR . '/blog-deleted.php' ) )
  75. return WP_CONTENT_DIR . '/blog-deleted.php';
  76. else
  77. wp_die( __( 'This user has elected to delete their account and the content is no longer available.' ), '', array( 'response' => 410 ) );
  78. }
  79. if ( '2' == $current_blog->deleted ) {
  80. if ( file_exists( WP_CONTENT_DIR . '/blog-inactive.php' ) )
  81. return WP_CONTENT_DIR . '/blog-inactive.php';
  82. else
  83. wp_die( sprintf( __( '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>.' ), str_replace( '@', ' AT ', get_site_option( 'admin_email', "support@{$current_site->domain}" ) ) ) );
  84. }
  85. if ( $current_blog->archived == '1' || $current_blog->spam == '1' ) {
  86. if ( file_exists( WP_CONTENT_DIR . '/blog-suspended.php' ) )
  87. return WP_CONTENT_DIR . '/blog-suspended.php';
  88. else
  89. wp_die( __( 'This site has been archived or suspended.' ), '', array( 'response' => 410 ) );
  90. }
  91. return true;
  92. }
  93. /**
  94. * Sets current site name.
  95. *
  96. * @access private
  97. * @since 3.0.0
  98. * @return object $current_site object with site_name
  99. */
  100. function get_current_site_name( $current_site ) {
  101. global $wpdb;
  102. $current_site->site_name = wp_cache_get( $current_site->id . ':site_name', 'site-options' );
  103. if ( ! $current_site->site_name ) {
  104. $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 ) );
  105. if ( ! $current_site->site_name )
  106. $current_site->site_name = ucfirst( $current_site->domain );
  107. wp_cache_set( $current_site->id . ':site_name', $current_site->site_name, 'site-options' );
  108. }
  109. return $current_site;
  110. }
  111. /**
  112. * Sets current_site object.
  113. *
  114. * @access private
  115. * @since 3.0.0
  116. * @return object $current_site object
  117. */
  118. function wpmu_current_site() {
  119. global $wpdb, $current_site, $domain, $path, $sites, $cookie_domain;
  120. if ( empty( $current_site ) )
  121. $current_site = new stdClass;
  122. if ( defined( 'DOMAIN_CURRENT_SITE' ) && defined( 'PATH_CURRENT_SITE' ) ) {
  123. $current_site->id = defined( 'SITE_ID_CURRENT_SITE' ) ? SITE_ID_CURRENT_SITE : 1;
  124. $current_site->domain = DOMAIN_CURRENT_SITE;
  125. $current_site->path = $path = PATH_CURRENT_SITE;
  126. if ( defined( 'BLOG_ID_CURRENT_SITE' ) )
  127. $current_site->blog_id = BLOG_ID_CURRENT_SITE;
  128. elseif ( defined( 'BLOGID_CURRENT_SITE' ) ) // deprecated.
  129. $current_site->blog_id = BLOGID_CURRENT_SITE;
  130. if ( DOMAIN_CURRENT_SITE == $domain )
  131. $current_site->cookie_domain = $cookie_domain;
  132. elseif ( substr( $current_site->domain, 0, 4 ) == 'www.' )
  133. $current_site->cookie_domain = substr( $current_site->domain, 4 );
  134. else
  135. $current_site->cookie_domain = $current_site->domain;
  136. wp_load_core_site_options( $current_site->id );
  137. return $current_site;
  138. }
  139. $current_site = wp_cache_get( 'current_site', 'site-options' );
  140. if ( $current_site )
  141. return $current_site;
  142. $sites = $wpdb->get_results( "SELECT * FROM $wpdb->site" ); // usually only one site
  143. if ( 1 == count( $sites ) ) {
  144. $current_site = $sites[0];
  145. wp_load_core_site_options( $current_site->id );
  146. $path = $current_site->path;
  147. $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 ) );
  148. $current_site = get_current_site_name( $current_site );
  149. if ( substr( $current_site->domain, 0, 4 ) == 'www.' )
  150. $current_site->cookie_domain = substr( $current_site->domain, 4 );
  151. wp_cache_set( 'current_site', $current_site, 'site-options' );
  152. return $current_site;
  153. }
  154. $path = substr( $_SERVER[ 'REQUEST_URI' ], 0, 1 + strpos( $_SERVER[ 'REQUEST_URI' ], '/', 1 ) );
  155. if ( $domain == $cookie_domain )
  156. $current_site = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->site WHERE domain = %s AND path = %s", $domain, $path ) );
  157. else
  158. $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 ) );
  159. if ( ! $current_site ) {
  160. if ( $domain == $cookie_domain )
  161. $current_site = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->site WHERE domain = %s AND path='/'", $domain ) );
  162. else
  163. $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 ) );
  164. }
  165. if ( $current_site ) {
  166. $path = $current_site->path;
  167. $current_site->cookie_domain = $cookie_domain;
  168. return $current_site;
  169. }
  170. if ( is_subdomain_install() ) {
  171. $sitedomain = substr( $domain, 1 + strpos( $domain, '.' ) );
  172. $current_site = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->site WHERE domain = %s AND path = %s", $sitedomain, $path) );
  173. if ( $current_site ) {
  174. $current_site->cookie_domain = $current_site->domain;
  175. return $current_site;
  176. }
  177. $current_site = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->site WHERE domain = %s AND path='/'", $sitedomain) );
  178. }
  179. if ( $current_site || defined( 'WP_INSTALLING' ) ) {
  180. $path = '/';
  181. return $current_site;
  182. }
  183. // Still no dice.
  184. if ( 1 == count( $sites ) )
  185. wp_die( sprintf( /*WP_I18N_BLOG_DOESNT_EXIST*/'?????? ????? ?? ??????????. ?????????? <a href="%s">%s</a>.'/*/WP_I18N_BLOG_DOESNT_EXIST*/, $sites[0]->domain . $sites[0]->path ) );
  186. else
  187. wp_die( /*WP_I18N_NO_SITE_DEFINED*/'????? ?????? ?? ????????????? ?? ???? ????. ???? ?? ???????? ????? ?????, ?????????? ? ?????? <a href="http://codex.wordpress.org/Debugging_a_WordPress_Network">&laquo;??????? ???? WordPress&raquo;</a>.'/*/WP_I18N_NO_SITE_DEFINED*/ );
  188. }
  189. /**
  190. * Displays a failure message.
  191. *
  192. * Used when a blog's tables do not exist. Checks for a missing $wpdb->site table as well.
  193. *
  194. * @access private
  195. * @since 3.0.0
  196. */
  197. function ms_not_installed() {
  198. global $wpdb, $domain, $path;
  199. $title = /*WP_I18N_FATAL_ERROR*/'?????? ????????? ?????????? ? ????? ??????'/*/WP_I18N_FATAL_ERROR*/;
  200. $msg = '<h1>' . $title . '</h1>';
  201. if ( ! is_admin() )
  202. die( $msg );
  203. $msg .= '<p>' . /*WP_I18N_CONTACT_OWNER*/'???? ??? ???? ?? ????????????, ????????? ? ??????????????? ???? ????.'/*/WP_I18N_CONTACT_OWNER*/ . '';
  204. $msg .= ' ' . /*WP_I18N_CHECK_MYSQL*/'???? ?? ????????????? ???? &#8212; ?????????, ??? MySQL ???????? ? ? ???????? ??? ??????.'/*/WP_I18N_CHECK_MYSQL*/ . '</p>';
  205. if ( false && !$wpdb->get_var( "SHOW TABLES LIKE '$wpdb->site'" ) )
  206. $msg .= '<p>' . sprintf( /*WP_I18N_TABLES_MISSING_LONG*/'<strong>? ???? ?????? ??????????? ???????.</strong> ??? ??????, ??? MySQL ?? ???????, WordPress ??????????? ??????????, ???? ???-?? ?????? <code>%s</code>. ????? ????????? ???? ??????.'/*/WP_I18N_TABLES_MISSING_LONG*/, $wpdb->site ) . '</p>';
  207. else
  208. $msg .= '<p>' . sprintf( /*WP_I18N_NO_SITE_FOUND*/'<strong>?? ??????? ????? ???? <code>%1$s</code>.</strong> ????? ?????????? ? ??????? <code>%2$s</code> ???? ?????? <code>%3$s</code>. ??? ??????????'/*/WP_I18N_NO_SITE_FOUND*/, rtrim( $domain . $path, '/' ), $wpdb->blogs, DB_NAME ) . '</p>';
  209. $msg .= '<p><strong>' . /*WP_I18N_WHAT_DO_I_DO*/'??? ?????? ???????'/*/WP_I18N_WHAT_DO_I_DO*/ . '</strong> ';
  210. $msg .= /*WP_I18N_RTFM*/'???????? ???????? ??? <a target="_blank" href="http://codex.wordpress.org/Debugging_a_WordPress_Network">????????? ?? ???????</a>. ????????? ???????????? ????? ?????? ??? ??????, ??? ????? ?????????.'/*/WP_I18N_RTFM*/;
  211. $msg .= ' ' . /*WP_I18N_STUCK*/'???? ?? ??-???????? ?????? ??? ????????? &#8212; ?????????, ??? ? ???? ?????? ?????????? ????????? ???????:'/*/WP_I18N_STUCK*/ . '</p><ul>';
  212. foreach ( $wpdb->tables('global') as $t => $table ) {
  213. if ( 'sitecategories' == $t )
  214. continue;
  215. $msg .= '<li>' . $table . '</li>';
  216. }
  217. $msg .= '</ul>';
  218. wp_die( $msg, $title );
  219. }
  220. ?>