Make WordPress Core


Ignore:
Timestamp:
09/15/2017 11:14:49 AM (8 years ago)
Author:
flixos90
Message:

Multisite: Introduce get_main_site_id().

This function can be used to easily get the main site ID of a given network via the optional $network_id parameter, which defaults to the current network. The existing is_main_site() now uses the new function internally and now accepts an optional $network_id parameter as well.

The main purpose of the new function at this point is to ensure that the WP_Network::$blog_id property is always set. Magic getters in the class have been adjusted to auto-fill the property when it is accessed and empty. Furthermore the function encapsulates logic that was previously part of ms_load_current_site_and_network() and has been replaced with a call to the function now.

Props spacedmonkey, jeremyfelt, johnjamesjacoby, flixos90.
Fixes #29684.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r41369 r41380  
    43914391 *
    43924392 * @since 3.0.0
    4393  *
    4394  * @param int $site_id Optional. Site ID to test. Defaults to current site.
     4393 * @since 4.9.0 The $network_id parameter has been added.
     4394 *
     4395 * @param int $site_id    Optional. Site ID to test. Defaults to current site.
     4396 * @param int $network_id Optional. Network ID of the network to check for.
     4397 *                        Defaults to current network.
    43954398 * @return bool True if $site_id is the main site of the network, or if not
    43964399 *              running Multisite.
    43974400 */
    4398 function is_main_site( $site_id = null ) {
    4399     if ( ! is_multisite() )
     4401function is_main_site( $site_id = null, $network_id = null ) {
     4402    if ( ! is_multisite() ) {
    44004403        return true;
    4401 
    4402     if ( ! $site_id )
     4404    }
     4405
     4406    if ( ! $site_id ) {
    44034407        $site_id = get_current_blog_id();
    4404 
    4405     return (int) $site_id === (int) get_network()->site_id;
     4408    }
     4409
     4410    $site_id = (int) $site_id;
     4411
     4412    return $site_id === get_main_site_id( $network_id );
     4413}
     4414
     4415/**
     4416 * Gets the main site ID.
     4417 *
     4418 * @since 4.9.0
     4419 *
     4420 * @param int $network_id Optional. The ID of the network for which to get the main site.
     4421 *                        Defaults to the current network.
     4422 * @return int The ID of the main site.
     4423 */
     4424function get_main_site_id( $network_id = null ) {
     4425    if ( ! is_multisite() ) {
     4426        return 1;
     4427    }
     4428
     4429    $network = get_network( $network_id );
     4430    if ( ! $network ) {
     4431        return 0;
     4432    }
     4433
     4434    /**
     4435     * Filters the main site ID.
     4436     *
     4437     * Returning anything other than null will effectively short-circuit the function, returning
     4438     * the result parsed as an integer immediately.
     4439     *
     4440     * @since 4.9.0
     4441     *
     4442     * @param int|null $main_site_id If anything other than null is returned, it is interpreted as the main site ID.
     4443     * @param int $network_id The ID of the network for which the main site was detected.
     4444     */
     4445    $main_site_id = apply_filters( 'pre_get_main_site_id', null, $network->id );
     4446    if ( null !== $main_site_id ) {
     4447        return (int) $main_site_id;
     4448    }
     4449
     4450    if ( ( defined( 'DOMAIN_CURRENT_SITE' ) && defined( 'PATH_CURRENT_SITE' ) && $network->domain === DOMAIN_CURRENT_SITE && $network->path === PATH_CURRENT_SITE )
     4451         || ( defined( 'SITE_ID_CURRENT_SITE' ) && $network->id == SITE_ID_CURRENT_SITE ) ) {
     4452        if ( defined( 'BLOG_ID_CURRENT_SITE' ) ) {
     4453            return BLOG_ID_CURRENT_SITE;
     4454        } elseif ( defined( 'BLOGID_CURRENT_SITE' ) ) { // deprecated.
     4455            return BLOGID_CURRENT_SITE;
     4456        }
     4457    }
     4458
     4459    $site = get_site();
     4460    if ( $site->domain === $network->domain && $site->path === $network->path ) {
     4461        $main_site_id = (int) $site->id;
     4462    } else {
     4463        $main_site_id = wp_cache_get( 'network:' . $network->id . ':main_site', 'site-options' );
     4464        if ( false === $main_site_id ) {
     4465            $_sites = get_sites( array(
     4466                'fields'     => 'ids',
     4467                'number'     => 1,
     4468                'domain'     => $network->domain,
     4469                'path'       => $network->path,
     4470                'network_id' => $network->id,
     4471            ) );
     4472            $main_site_id = ! empty( $_sites ) ? array_shift( $_sites ) : 0;
     4473
     4474            wp_cache_add( 'network:' . $network->id . ':main_site', $main_site_id, 'site-options' );
     4475        }
     4476    }
     4477
     4478    return (int) $main_site_id;
    44064479}
    44074480
Note: See TracChangeset for help on using the changeset viewer.