Make WordPress Core

Ticket #37923: 37923.2.diff

File 37923.2.diff, 19.8 KB (added by spacedmonkey, 7 years ago)
  • src/wp-admin/includes/ms.php

     
    127127                        $wpdb->query( "DROP TABLE IF EXISTS `$table`" );
    128128                }
    129129
     130                $blog_meta_ids = $wpdb->get_col( $wpdb->prepare( "SELECT meta_id FROM $wpdb->blogmeta WHERE blog_id = %d ", $blog_id ) );
     131                foreach ( $blog_meta_ids as $mid ) {
     132                        delete_metadata_by_mid( 'blog', $mid );
     133                }
     134
    130135                $wpdb->delete( $wpdb->blogs, array( 'blog_id' => $blog_id ) );
    131136
    132137                /**
  • src/wp-admin/includes/schema.php

     
    265265  PRIMARY KEY  (blog_id),
    266266  KEY db_version (db_version)
    267267) $charset_collate;
     268CREATE TABLE $wpdb->blogmeta (
     269  meta_id bigint(20) NOT NULL auto_increment,
     270  blog_id bigint(20) NOT NULL default '0',
     271  meta_key varchar(255) default NULL,
     272  meta_value longtext,
     273  PRIMARY KEY  (meta_id),
     274  KEY meta_key (meta_key($max_index_length)),
     275  KEY blog_id (blog_id)
     276) $charset_collate;
    268277CREATE TABLE $wpdb->registration_log (
    269278  ID bigint(20) NOT NULL auto_increment,
    270279  email varchar(255) NOT NULL default '',
  • src/wp-admin/includes/upgrade.php

     
    18811881                        }
    18821882                }
    18831883        }
     1884
     1885    // 4.9
     1886    if ( $wp_current_db_version < 40001 ) {
     1887        update_site_option( 'site_meta_supported', '1');
     1888    }
    18841889}
    18851890
    18861891//
  • src/wp-includes/class-wp-site-query.php

     
    3939                'limits'  => '',
    4040        );
    4141
     42
    4243        /**
    4344         * Date query container.
    4445         *
     
    136137         *     @type string       $search            Search term(s) to retrieve matching sites for. Default empty.
    137138         *     @type array        $search_columns    Array of column names to be searched. Accepts 'domain' and 'path'.
    138139         *                                           Default empty array.
    139          *     @type bool         $update_site_cache Whether to prime the cache for found sites. Default false.
     140         *     @type bool         $update_site_cache Whether to prime the cache for found sites. Default true.
     141     *     @type bool         $update_site_meta_cache Whether to prime the metadata cache for found sites.
     142     *                                                   Default true.
    140143         * }
    141144         */
    142145        public function __construct( $query = '' ) {
     
    172175                        'count'             => false,
    173176                        'date_query'        => null, // See WP_Date_Query
    174177                        'update_site_cache' => true,
     178                        'update_site_meta_cache' => true,
    175179                );
    176180
    177181                if ( ! empty( $query ) ) {
     
    224228         *
    225229         * @since 4.6.0
    226230         *
     231         * @global wpdb $wpdb WordPress database abstraction object.
     232         *
    227233         * @return array|int List of sites, or number of sites when 'count' is passed as a query var.
    228234         */
    229         public function get_sites() {
    230                 $this->parse_query();
     235    public function get_sites() {
     236                global $wpdb;
    231237
    232                 /**
    233                 * Fires before sites are retrieved.
    234                  *
    235                  * @since 4.6.0
    236                  *
    237                  * @param WP_Site_Query &$this Current instance of WP_Site_Query, passed by reference.
    238                  */
     238       /**
     239        * Fires before sites are retrieved.
     240                *
     241                * @since 4.6.0
     242                *
     243                * @param WP_Site_Query &$this Current instance of WP_Site_Query, passed by reference.
     244                */
    239245                do_action_ref_array( 'pre_get_sites', array( &$this ) );
     246                $this->parse_query();
     247
    240248
    241249                // $args can include anything. Only use the args defined in the query_var_defaults to compute the key.
    242250                $_args = wp_array_slice_assoc( $this->query_vars, array_keys( $this->query_var_defaults ) );
     
    286294
    287295                // Prime site network caches.
    288296                if ( $this->query_vars['update_site_cache'] ) {
    289                         _prime_site_caches( $site_ids );
     297            _prime_site_caches( $site_ids, $this->query_vars['update_site_meta_cache'] );
    290298                }
    291299
    292300                // Fetch full site objects from the primed cache.
     
    365373
    366374                        $orderby = implode( ', ', $orderby_array );
    367375                } else {
    368                         $orderby = "blog_id $order";
     376                        $orderby = "$wpdb->blogs.blog_id $order";
    369377                }
    370378
    371379                $number = absint( $this->query_vars['number'] );
     
    382390                if ( $this->query_vars['count'] ) {
    383391                        $fields = 'COUNT(*)';
    384392                } else {
    385                         $fields = 'blog_id';
     393                        $fields = "$wpdb->blogs.blog_id";
    386394                }
    387395
    388396                // Parse site IDs for an IN clause.
    389397                $site_id = absint( $this->query_vars['ID'] );
    390398                if ( ! empty( $site_id ) ) {
    391                         $this->sql_clauses['where']['ID'] = $wpdb->prepare( 'blog_id = %d', $site_id );
     399                        $this->sql_clauses['where']['ID'] = $wpdb->prepare( "$wpdb->blogs.blog_id = %d", $site_id );
    392400                }
    393401
    394402                // Parse site IDs for an IN clause.
    395403                if ( ! empty( $this->query_vars['site__in'] ) ) {
    396                         $this->sql_clauses['where']['site__in'] = "blog_id IN ( " . implode( ',', wp_parse_id_list( $this->query_vars['site__in'] ) ) . ' )';
     404                        $this->sql_clauses['where']['site__in'] = "$wpdb->blogs.blog_id IN ( " . implode( ',', wp_parse_id_list( $this->query_vars['site__in'] ) ) . ' )';
    397405                }
    398406
    399407                // Parse site IDs for a NOT IN clause.
    400408                if ( ! empty( $this->query_vars['site__not_in'] ) ) {
    401                         $this->sql_clauses['where']['site__not_in'] = "blog_id NOT IN ( " . implode( ',', wp_parse_id_list( $this->query_vars['site__not_in'] ) ) . ' )';
     409                        $this->sql_clauses['where']['site__not_in'] = "$wpdb->blogs.blog_id NOT IN ( " . implode( ',', wp_parse_id_list( $this->query_vars['site__not_in'] ) ) . ' )';
    402410                }
    403411
    404412                $network_id = absint( $this->query_vars['network_id'] );
     
    670678                                $parsed = 'CHAR_LENGTH(path)';
    671679                                break;
    672680                        case 'id':
    673                                 $parsed = 'blog_id';
     681                                $parsed = "$wpdb->blogs.blog_id";
    674682                                break;
    675683                }
    676684
  • src/wp-includes/load.php

     
    517517        }
    518518
    519519        if ( function_exists( 'wp_cache_add_global_groups' ) ) {
    520                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'site-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites' ) );
     520                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'site-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'blog_meta' ) );
    521521                wp_cache_add_non_persistent_groups( array( 'counts', 'plugins' ) );
    522522        }
    523523}
  • src/wp-includes/ms-blogs.php

     
    465465        wp_cache_delete( $domain_path_key, 'blog-id-cache' );
    466466        wp_cache_delete( 'current_blog_' . $blog->domain, 'site-options' );
    467467        wp_cache_delete( 'current_blog_' . $blog->domain . $blog->path, 'site-options' );
     468        wp_cache_delete( $blog_id, 'blog_meta' );
    468469
    469470        /**
    470471         * Fires immediately after a site has been removed from the object cache.
     
    541542 * Adds any sites from the given ids to the cache that do not already exist in cache.
    542543 *
    543544 * @since 4.6.0
     545 * @since 4.9.0 The $update_meta_cache parameter was added.
    544546 * @access private
    545547 *
    546548 * @see update_site_cache()
     549 * @see update_sitemeta_cache()
     550 *
    547551 * @global wpdb $wpdb WordPress database abstraction object.
    548552 *
    549  * @param array $ids ID list.
     553 * @param array $ids               ID list.
     554 * @param bool  $update_meta_cache Optional. Whether to update the meta cache. Default true.
    550555 */
    551 function _prime_site_caches( $ids ) {
     556function _prime_site_caches( $ids, $update_meta_cache = true ) {
    552557        global $wpdb;
    553558
    554559        $non_cached_ids = _get_non_cached_ids( $ids, 'sites' );
    555560        if ( ! empty( $non_cached_ids ) ) {
    556561                $fresh_sites = $wpdb->get_results( sprintf( "SELECT * FROM $wpdb->blogs WHERE blog_id IN (%s)", join( ",", array_map( 'intval', $non_cached_ids ) ) ) );
    557562
    558                 update_site_cache( $fresh_sites );
     563                update_site_cache( $fresh_sites, $update_meta_cache );
    559564        }
    560565}
    561566
     
    566571 *
    567572 * @param array $sites Array of site objects.
    568573 */
    569 function update_site_cache( $sites ) {
     574function update_site_cache( $sites, $update_meta_cache = true ) {
    570575        if ( ! $sites ) {
    571576                return;
    572577        }
    573 
     578    $site_ids = array();
    574579        foreach ( $sites as $site ) {
    575                 wp_cache_add( $site->blog_id, $site, 'sites' );
     580        $site_ids[] = $site->blog_id;
     581            wp_cache_add( $site->blog_id, $site, 'sites' );
    576582                wp_cache_add( $site->blog_id . 'short', $site, 'blog-details' );
    577583        }
     584
     585    if ( $update_meta_cache ) {
     586        update_sitemeta_cache( $site_ids );
     587    }
     588}
     589
     590/**
     591 * Updates metadata cache for list of site IDs.
     592 *
     593 * Performs SQL query to retrieve all metadata for the sites matching `$site_ids` and stores them in the cache.
     594 * Subsequent calls to `get_site_meta()` will not need to query the database.
     595 *
     596 * @since 4.9.0
     597 *
     598 * @param array $site_ids List of site IDs.
     599 * @return array|false Returns false if there is nothing to update. Returns an array of metadata on success.
     600 */
     601function update_sitemeta_cache( $site_ids ) {
     602        return update_meta_cache( 'blog', $site_ids );
    578603}
    579604
    580605/**
     
    638663        return $query->query( $args );
    639664}
    640665
     666
    641667/**
    642668 * Retrieve option value for a given blog id based on name of option.
    643669 *
     
    842868                        if ( is_array( $global_groups ) ) {
    843869                                wp_cache_add_global_groups( $global_groups );
    844870                        } else {
    845                                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details' ) );
     871                                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details', 'blog_meta' ) );
    846872                        }
    847873                        wp_cache_add_non_persistent_groups( array( 'counts', 'plugins' ) );
    848874                }
     
    916942                        if ( is_array( $global_groups ) ) {
    917943                                wp_cache_add_global_groups( $global_groups );
    918944                        } else {
    919                                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details' ) );
     945                                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details', 'blog_meta' ) );
    920946                        }
    921947                        wp_cache_add_non_persistent_groups( array( 'counts', 'plugins' ) );
    922948                }
  • src/wp-includes/option.php

     
    225225        if ( empty($site_id) )
    226226                $site_id = $wpdb->siteid;
    227227
    228         $core_options = array('site_name', 'siteurl', 'active_sitewide_plugins', '_site_transient_timeout_theme_roots', '_site_transient_theme_roots', 'site_admins', 'can_compress_scripts', 'global_terms_enabled', 'ms_files_rewriting' );
     228        $core_options = array('site_name', 'siteurl', 'active_sitewide_plugins', '_site_transient_timeout_theme_roots', '_site_transient_theme_roots', 'site_admins', 'can_compress_scripts', 'global_terms_enabled', 'ms_files_rewriting', 'site_meta_supported' );
    229229
    230230        $core_options_in = "'" . implode("', '", $core_options) . "'";
    231231        $options = $wpdb->get_results( $wpdb->prepare("SELECT meta_key, meta_value FROM $wpdb->sitemeta WHERE meta_key IN ($core_options_in) AND site_id = %d", $site_id) );
     
    20592059
    20602060        return $registered[ $option ]['default'];
    20612061}
     2062
     2063
     2064/**
     2065 * Add meta data field to a site.
     2066 *
     2067 * Site meta data is called "Custom Fields" on the Administration Screen.
     2068 *
     2069 * @since 4.9.0
     2070 *
     2071 * @param int    $site_id    Site ID.
     2072 * @param string $meta_key   Metadata name.
     2073 * @param mixed  $meta_value Metadata value. Must be serializable if non-scalar.
     2074 * @param bool   $unique     Optional. Whether the same key should not be added.
     2075 *                           Default false.
     2076 * @return int|false Meta ID on success, false on failure.
     2077 */
     2078function add_site_meta( $site_id, $meta_key, $meta_value, $unique = false ) {
     2079    if( !is_multisite() ){
     2080        return false;
     2081    }
     2082    // If site meta not installed, quit early
     2083    if( !get_site_option('site_meta_supported') ){
     2084        return false;
     2085    }
     2086
     2087    $added = add_metadata( 'blog', $site_id, $meta_key, $meta_value, $unique );
     2088
     2089    // Bust site query cache.
     2090    if ( $added ) {
     2091        wp_cache_set( 'last_changed', microtime(), 'sites' );
     2092    }
     2093
     2094    return $added;
     2095}
     2096
     2097/**
     2098 * Remove metadata matching criteria from a site.
     2099 *
     2100 * You can match based on the key, or key and value. Removing based on key and
     2101 * value, will keep from removing duplicate metadata with the same key. It also
     2102 * allows removing all metadata matching key, if needed.
     2103 *
     2104 * @since 4.9.0
     2105 *
     2106 * @param int    $site_id    Site ID.
     2107 * @param string $meta_key   Metadata name.
     2108 * @param mixed  $meta_value Optional. Metadata value. Must be serializable if
     2109 *                           non-scalar. Default empty.
     2110 * @return bool True on success, false on failure.
     2111 */
     2112function delete_site_meta( $site_id, $meta_key, $meta_value = '' ) {
     2113    if( !is_multisite() ){
     2114        return false;
     2115    }
     2116    // If site meta not installed, quit early
     2117    if( !get_site_option('site_meta_supported') ){
     2118        return false;
     2119    }
     2120
     2121    $deleted = delete_metadata( 'blog', $site_id, $meta_key, $meta_value );
     2122
     2123    // Bust site query cache.
     2124    if ( $deleted ) {
     2125        wp_cache_set( 'last_changed', microtime(), 'sites' );
     2126    }
     2127
     2128    return $deleted;
     2129}
     2130
     2131/**
     2132 * Retrieve site meta field for a site.
     2133 *
     2134 * @since 4.9.0
     2135 *
     2136 * @param int    $site_id Site ID.
     2137 * @param string $key     Optional. The meta key to retrieve. By default, returns
     2138 *                        data for all keys. Default empty.
     2139 * @param bool   $single  Optional. Whether to return a single value. Default false.
     2140 * @return mixed Will be an array if $single is false. Will be value of meta data
     2141 *               field if $single is true.
     2142 */
     2143function get_site_meta( $site_id, $key = '', $single = false ) {
     2144    if( !is_multisite() ){
     2145        return false;
     2146    }
     2147    // If site meta not installed, quit early
     2148    if( !get_site_option('site_meta_supported') ){
     2149        return false;
     2150    }
     2151    return get_metadata( 'blog', $site_id, $key, $single );
     2152}
     2153
     2154/**
     2155 * Update site meta field based on site ID.
     2156 *
     2157 * Use the $prev_value parameter to differentiate between meta fields with the
     2158 * same key and site ID.
     2159 *
     2160 * If the meta field for the site does not exist, it will be added.
     2161 *
     2162 * @since 4.9.0
     2163 *
     2164 * @param int    $site_id    Site ID.
     2165 * @param string $meta_key   Metadata key.
     2166 * @param mixed  $meta_value Metadata value. Must be serializable if non-scalar.
     2167 * @param mixed  $prev_value Optional. Previous value to check before removing.
     2168 *                           Default empty.
     2169 * @return int|bool Meta ID if the key didn't exist, true on successful update,
     2170 *                  false on failure.
     2171 */
     2172function update_site_meta( $site_id, $meta_key, $meta_value, $prev_value = '' ) {
     2173    if( !is_multisite() ){
     2174        return false;
     2175    }
     2176    // If site meta not installed, quit early
     2177    if( !get_site_option('site_meta_supported') ){
     2178        return false;
     2179    }
     2180
     2181    $updated = update_metadata( 'blog', $site_id, $meta_key, $meta_value, $prev_value );
     2182
     2183    // Bust site query cache.
     2184    if ( $updated ) {
     2185        wp_cache_set( 'last_changed', microtime(), 'sites' );
     2186    }
     2187
     2188    return $updated;
     2189}
     2190
     2191/**
     2192 * Delete everything from site meta matching meta key.
     2193 *
     2194 * @since 4.9.0
     2195 *
     2196 * @param string $meta_key Metadata key to search for when deleting.
     2197 * @return bool Whether the site meta key was deleted from the database.
     2198 */
     2199function delete_site_meta_by_key( $meta_key ) {
     2200    if( !is_multisite() ){
     2201        return false;
     2202    }
     2203    // If site meta not installed, quit early
     2204    if( !get_site_option('site_meta_supported') ){
     2205        return false;
     2206    }
     2207
     2208    return delete_metadata( 'blog', null, $meta_key, '', true );
     2209}
     2210 No newline at end of file
  • src/wp-includes/version.php

     
    1111 *
    1212 * @global int $wp_db_version
    1313 */
    14 $wp_db_version = 38590;
     14$wp_db_version = 40001;
    1515
    1616/**
    1717 * Holds the TinyMCE version
  • src/wp-includes/wp-db.php

     
    271271         * @see wpdb::tables()
    272272         * @var array
    273273         */
    274         var $ms_global_tables = array( 'blogs', 'signups', 'site', 'sitemeta',
     274        var $ms_global_tables = array( 'blogs', 'blogmeta', 'signups', 'site', 'sitemeta',
    275275                'sitecategories', 'registration_log', 'blog_versions' );
    276276
    277277        /**
     
    383383        public $blogs;
    384384
    385385        /**
     386         * Multisite Blog Metadata table
     387         *
     388         * @since 4.9.0
     389         * @access public
     390         * @var string
     391         */
     392        public $blogmeta;
     393
     394        /**
    386395         * Multisite Blog Versions table
    387396         *
    388397         * @since 3.0.0
  • src/wp-settings.php

     
    9595// Load early WordPress files.
    9696require( ABSPATH . WPINC . '/compat.php' );
    9797require( ABSPATH . WPINC . '/class-wp-list-util.php' );
     98require( ABSPATH . WPINC . '/formatting.php' );
     99require( ABSPATH . WPINC . '/meta.php' );
    98100require( ABSPATH . WPINC . '/functions.php' );
    99101require( ABSPATH . WPINC . '/class-wp-matchesmapregex.php' );
    100102require( ABSPATH . WPINC . '/class-wp.php' );
     
    142144// Load most of WordPress.
    143145require( ABSPATH . WPINC . '/class-wp-walker.php' );
    144146require( ABSPATH . WPINC . '/class-wp-ajax-response.php' );
    145 require( ABSPATH . WPINC . '/formatting.php' );
     147
    146148require( ABSPATH . WPINC . '/capabilities.php' );
    147149require( ABSPATH . WPINC . '/class-wp-roles.php' );
    148150require( ABSPATH . WPINC . '/class-wp-role.php' );
     
    157159require( ABSPATH . WPINC . '/class-wp-user-query.php' );
    158160require( ABSPATH . WPINC . '/class-wp-session-tokens.php' );
    159161require( ABSPATH . WPINC . '/class-wp-user-meta-session-tokens.php' );
    160 require( ABSPATH . WPINC . '/meta.php' );
    161162require( ABSPATH . WPINC . '/class-wp-meta-query.php' );
    162163require( ABSPATH . WPINC . '/class-wp-metadata-lazyloader.php' );
    163164require( ABSPATH . WPINC . '/general-template.php' );
  • tests/phpunit/includes/testcase.php

     
    323323                        $wp_object_cache->__remoteset();
    324324                }
    325325                wp_cache_flush();
    326                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details' ) );
     326                wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'useremail', 'userslugs', 'site-transient', 'site-options', 'blog-lookup', 'blog-details', 'rss', 'global-posts', 'blog-id-cache', 'networks', 'sites', 'site-details', 'blog_meta' ) );
    327327                wp_cache_add_non_persistent_groups( array( 'comment', 'counts', 'plugins' ) );
    328328        }
    329329