Ticket #36935: 36935.2.diff
File 36935.2.diff, 6.4 KB (added by , 9 years ago) |
---|
-
src/wp-includes/class-wp-site.php
15 15 * 16 16 * @since 4.5.0 17 17 * 18 * @property int $id 19 * @property int $network_id 18 * @property int $id 19 * @property int $network_id 20 * @property-read string $blogname 21 * @property-read string $siteurl 22 * @property-read string $post_count 23 * @property-read string $home 20 24 */ 21 25 final class WP_Site { 22 26 … … 218 222 * Getter. 219 223 * 220 224 * Allows current multisite naming conventions when getting properties. 225 * Also allows to access extended properties from blog details. 221 226 * 222 227 * @since 4.6.0 223 228 * @access public … … 235 240 return $this->site_id; 236 241 case 'network_id': 237 242 return (int) $this->site_id; 243 case 'blogname': 244 case 'siteurl': 245 case 'post_count': 246 case 'home': 247 $details = $this->get_details(); 248 return $details->$key; 238 249 } 239 250 240 251 return null; … … 244 255 * Isset-er. 245 256 * 246 257 * Allows current multisite naming conventions when checking for properties. 258 * Also successfully checks for extended properties from blog details. 247 259 * 248 260 * @since 4.6.0 249 261 * @access public … … 257 269 case 'blog_id': 258 270 case 'site_id': 259 271 case 'network_id': 272 case 'blogname': 273 case 'siteurl': 274 case 'post_count': 275 case 'home': 260 276 return true; 261 277 } 262 278 … … 288 304 $this->$key = $value; 289 305 } 290 306 } 307 308 /** 309 * Retrieve the details for this site. 310 * 311 * This method is used internally to lazy-load the extended properties of a site. 312 * 313 * @since 4.6.0 314 * @access private 315 * 316 * @see WP_Site::__get() 317 * 318 * @return object A raw site object with all details included. 319 */ 320 private function get_details() { 321 $details = wp_cache_get( $this->blog_id, 'blog-details' ); 322 323 if ( $details ) { 324 if ( ! is_object( $details ) ) { 325 if ( $details != -1 ) { 326 // Clear old pre-serialized objects. Cache clients do better with that. 327 wp_cache_delete( $this->blog_id, 'blog-details' ); 328 unset($details); 329 } 330 } else { 331 return $details; 332 } 333 } 334 335 switch_to_blog( $this->blog_id ); 336 // Create a raw copy of the object for backwards compatibility with the filter below. 337 $details = new stdClass(); 338 foreach ( get_object_vars( $this ) as $key => $value ) { 339 $details->$key = $value; 340 } 341 $details->blogname = get_option( 'blogname' ); 342 $details->siteurl = get_option( 'siteurl' ); 343 $details->post_count = get_option( 'post_count' ); 344 $details->home = get_option( 'home' ); 345 restore_current_blog(); 346 347 /** 348 * Filters a blog's details. 349 * 350 * @since MU 351 * 352 * @param object $details The blog details. 353 */ 354 $details = apply_filters( 'blog_details', $details ); 355 356 wp_cache_set( $this->blog_id, $details, 'blog-details' ); 357 358 return $details; 359 } 291 360 } -
src/wp-includes/ms-blogs.php
108 108 * Retrieve the details for a blog from the blogs table and blog options. 109 109 * 110 110 * @since MU 111 * @since 4.6.0 Extended blog details are lazy-loaded through `WP_Site` and are available as object properties 112 * regardless of the `$get_all` parameter. 111 113 * 112 114 * @global wpdb $wpdb WordPress database abstraction object. 113 115 * … … 135 137 $blog = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->blogs WHERE domain = %s AND path = %s", $fields['domain'], $fields['path'] ) ); 136 138 } 137 139 if ( $blog ) { 138 wp_cache_set($blog->blog_id . 'short', $blog, 'blog-details'); 140 $key = md5( $blog->domain . $blog->path ); 141 wp_cache_set( $key, $blog, 'blog-lookup' ); 139 142 $blog_id = $blog->blog_id; 140 143 } else { 141 144 return false; … … 152 155 $blog = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->blogs WHERE domain = %s", $fields['domain'] ) ); 153 156 } 154 157 if ( $blog ) { 155 wp_cache_set($blog->blog_id . 'short', $blog, 'blog-details'); 158 $key = md5( $blog->domain ); 159 wp_cache_set( $key, $blog, 'blog-lookup' ); 156 160 $blog_id = $blog->blog_id; 157 161 } else { 158 162 return false; … … 171 175 172 176 $blog_id = (int) $blog_id; 173 177 174 $all = $get_all == true ? '' : 'short'; 175 $details = wp_cache_get( $blog_id . $all, 'blog-details' ); 176 177 if ( $details ) { 178 if ( ! is_object( $details ) ) { 179 if ( $details == -1 ) { 180 return false; 181 } else { 182 // Clear old pre-serialized objects. Cache clients do better with that. 183 wp_cache_delete( $blog_id . $all, 'blog-details' ); 184 unset($details); 185 } 186 } else { 187 return $details; 188 } 189 } 190 191 // Try the other cache. 192 if ( $get_all ) { 193 $details = wp_cache_get( $blog_id . 'short', 'blog-details' ); 178 if ( isset( $blog ) ) { 179 $blog = new WP_Site( $blog ); 194 180 } else { 195 $details = wp_cache_get( $blog_id, 'blog-details' ); 196 // If short was requested and full cache is set, we can return. 197 if ( $details ) { 198 if ( ! is_object( $details ) ) { 199 if ( $details == -1 ) { 200 return false; 201 } else { 202 // Clear old pre-serialized objects. Cache clients do better with that. 203 wp_cache_delete( $blog_id, 'blog-details' ); 204 unset($details); 205 } 206 } else { 207 return $details; 208 } 209 } 181 $blog = WP_Site::get_instance( $blog_id ); 210 182 } 211 183 212 if ( empty($details) ) { 213 $details = WP_Site::get_instance( $blog_id ); 214 if ( ! $details ) { 215 // Set the full cache. 216 wp_cache_set( $blog_id, -1, 'blog-details' ); 217 return false; 218 } 219 } 220 221 if ( ! $details instanceof WP_Site ) { 222 $details = new WP_Site( $details ); 223 } 224 225 if ( ! $get_all ) { 226 wp_cache_set( $blog_id . $all, $details, 'blog-details' ); 227 return $details; 228 } 229 230 switch_to_blog( $blog_id ); 231 $details->blogname = get_option( 'blogname' ); 232 $details->siteurl = get_option( 'siteurl' ); 233 $details->post_count = get_option( 'post_count' ); 234 $details->home = get_option( 'home' ); 235 restore_current_blog(); 236 237 /** 238 * Filters a blog's details. 239 * 240 * @since MU 241 * 242 * @param object $details The blog details. 243 */ 244 $details = apply_filters( 'blog_details', $details ); 245 246 wp_cache_set( $blog_id . $all, $details, 'blog-details' ); 247 248 $key = md5( $details->domain . $details->path ); 249 wp_cache_set( $key, $details, 'blog-lookup' ); 250 251 return $details; 184 return $blog; 252 185 } 253 186 254 187 /**