Make WordPress Core

Ticket #40180: 40180.4.diff

File 40180.4.diff, 9.6 KB (added by flixos90, 7 years ago)
  • src/wp-includes/ms-blogs.php

     
    538538}
    539539
    540540/**
     541 * Retrieves a site by given site data.
     542 *
     543 * @since 4.9.0
     544 *
     545 * @param string     $field      Name of a field to query against. Either 'id', 'slug' or 'url', or
     546 *                               'domain' (only if a subdomain install) or 'path' (only if a subdirectory
     547 *                               install).
     548 * @param string|int $value      The search value for $field.
     549 * @param int|null   $network_id Optional. ID of the network. Default is the current network.
     550 * @return WP_Site|null The site object or null if not found.
     551 */
     552function get_site_by( $field, $value, $network_id = null ) {
     553        $args = array();
     554
     555        switch ( $field ) {
     556                case 'id':
     557                        return get_site( $value );
     558                case 'slug':
     559                        $network = get_network( $network_id );
     560                        if ( ! $network ) {
     561                                return null;
     562                        }
     563
     564                        if ( is_subdomain_install() ) {
     565                                $args['domain'] = trim( $value, '/' ) . '.' . preg_replace( '|^www\.|', '', $network->domain );
     566                                $args['path'] = $network->path;
     567                        } else {
     568                                $args['domain'] = $network->domain;
     569                                $args['path'] = $network->path . trim( $value, '/' ) . '/';
     570                        }
     571                        break;
     572                case 'url':
     573                        if ( 0 !== strpos( $value, 'http://' ) && 0 !== strpos( $value, 'https://' ) ) {
     574                                $value = 'http://' . $value;
     575                        }
     576
     577                        $parts = wp_parse_url( $value );
     578                        if ( ! $parts ) {
     579                                return null;
     580                        }
     581
     582                        $args['domain'] = $parts['host'];
     583                        if ( ! empty( $parts['path'] ) ) {
     584                                $args['path'] = '/' . trim( $parts['path'], '/' ) . '/';
     585                        } else {
     586                                $args['path'] = '/';
     587                        }
     588                        break;
     589                case 'domain':
     590                        if ( ! is_subdomain_install() ) {
     591                                return null;
     592                        }
     593
     594                        $args['domain'] = $value;
     595                        break;
     596                case 'path':
     597                        if ( is_subdomain_install() ) {
     598                                return null;
     599                        }
     600
     601                        $args['path'] = '/' . trim( $value, '/' ) . '/';
     602                        break;
     603                default:
     604                        return null;
     605        }
     606
     607        $args['number'] = 1;
     608
     609        if ( isset( $args['domain'] ) && substr( $args['domain'], 0, 4 ) === 'www.' ) {
     610                $nowww = substr( $args['domain'], 4 );
     611
     612                $args['domain__in'] = array( $nowww, $args['domain'] );
     613                unset( $args['domain'] );
     614
     615                $args['orderby'] = 'domain_length';
     616                $args['order']   = 'DESC';
     617        }
     618
     619        if ( isset( $args['path'] ) ) {
     620                $args['path'] = str_replace( '//', '/', $args['path'] );
     621        }
     622
     623        if ( ! empty( $network_id ) ) {
     624                $args['network_id'] = (int) $network_id;
     625        }
     626
     627        $sites = get_sites( $args );
     628
     629        if ( empty( $sites ) ) {
     630                return null;
     631        }
     632
     633        return array_shift( $sites );
     634}
     635
     636/**
    541637 * Adds any sites from the given ids to the cache that do not already exist in cache.
    542638 *
    543639 * @since 4.6.0
  • tests/phpunit/tests/multisite/getSiteBy.php

     
     1<?php
     2
     3if ( is_multisite() ) :
     4/**
     5 * Test get_site_by() in multisite.
     6 *
     7 * @ticket 40180
     8 * @group ms-site
     9 * @group multisite
     10 */
     11class Tests_Multisite_Get_Site_By extends WP_UnitTestCase {
     12        protected static $network_ids;
     13        protected static $site_ids;
     14
     15        public static function wpSetUpBeforeClass( $factory ) {
     16                self::$network_ids = array(
     17                        'wordpress.org/'         => array( 'domain' => 'wordpress.org',     'path' => '/' ),
     18                        'www.wordpress.net/'     => array( 'domain' => 'www.wordpress.net', 'path' => '/' ),
     19                );
     20
     21                foreach ( self::$network_ids as &$id ) {
     22                        $id = $factory->network->create( $id );
     23                }
     24                unset( $id );
     25
     26                self::$site_ids = array(
     27                        'wordpress.org/'              => array( 'domain' => 'wordpress.org',     'path' => '/',     'site_id' => self::$network_ids['wordpress.org/'] ),
     28                        'foo.wordpress.org/'          => array( 'domain' => 'foo.wordpress.org', 'path' => '/',     'site_id' => self::$network_ids['wordpress.org/'] ),
     29                        'wordpress.org/foo/'          => array( 'domain' => 'wordpress.org',     'path' => '/foo/', 'site_id' => self::$network_ids['wordpress.org/'] ),
     30                        'www.wordpress.org/'          => array( 'domain' => 'www.wordpress.org', 'path' => '/',     'site_id' => self::$network_ids['wordpress.org/'] ),
     31                        'www.wordpress.net/'          => array( 'domain' => 'www.wordpress.net', 'path' => '/',     'site_id' => self::$network_ids['www.wordpress.net/'] ),
     32                        'foo.wordpress.net/'          => array( 'domain' => 'foo.wordpress.net', 'path' => '/',     'site_id' => self::$network_ids['www.wordpress.net/'] ),
     33                        'www.wordpress.net/foo/'      => array( 'domain' => 'www.wordpress.net', 'path' => '/foo/', 'site_id' => self::$network_ids['www.wordpress.net/'] ),
     34                );
     35
     36                foreach ( self::$site_ids as &$id ) {
     37                        $id = $factory->blog->create( $id );
     38                }
     39                unset( $id );
     40        }
     41
     42        public static function wpTearDownAfterClass() {
     43                global $wpdb;
     44
     45                foreach( self::$site_ids as $id ) {
     46                        wpmu_delete_blog( $id, true );
     47                }
     48
     49                foreach( self::$network_ids as $id ) {
     50                        $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->sitemeta} WHERE site_id = %d", $id ) );
     51                        $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->site} WHERE id= %d", $id ) );
     52                }
     53
     54                wp_update_network_site_counts();
     55        }
     56
     57        public function test_get_site_by_id() {
     58                $result = get_site_by( 'id', self::$site_ids['wordpress.org/'] );
     59                $this->assertInstanceOf( 'WP_Site', $result );
     60                $this->assertEquals( self::$site_ids['wordpress.org/'], $result->id );
     61        }
     62
     63        public function test_get_site_by_current_id() {
     64                $result = get_site_by( 'id', null );
     65                $this->assertInstanceOf( 'WP_Site', $result );
     66                $this->assertEquals( get_current_blog_id(), $result->id );
     67        }
     68
     69        public function test_get_site_by_slug_subdomain() {
     70                if ( ! is_subdomain_install() ) {
     71                        $this->markTestSkipped( 'This test is only valid in a subdomain configuration.' );
     72                }
     73
     74                $result = get_site_by( 'slug', 'foo', self::$network_ids['wordpress.org/'] );
     75                $this->assertInstanceOf( 'WP_Site', $result );
     76                $this->assertEquals( self::$site_ids['foo.wordpress.org/'], $result->id );
     77        }
     78
     79        public function test_get_site_by_slug_with_www_subdomain() {
     80                if ( ! is_subdomain_install() ) {
     81                        $this->markTestSkipped( 'This test is only valid in a subdomain configuration.' );
     82                }
     83
     84                $result = get_site_by( 'slug', 'foo', self::$network_ids['www.wordpress.net/'] );
     85                $this->assertInstanceOf( 'WP_Site', $result );
     86                $this->assertEquals( self::$site_ids['foo.wordpress.net/'], $result->id );
     87        }
     88
     89        public function test_get_site_by_slug_subdirectory() {
     90                if ( is_subdomain_install() ) {
     91                        $this->markTestSkipped( 'This test is only valid in a subdirectory configuration.' );
     92                }
     93
     94                $result = get_site_by( 'slug', 'foo', self::$network_ids['wordpress.org/'] );
     95                $this->assertInstanceOf( 'WP_Site', $result );
     96                $this->assertEquals( self::$site_ids['wordpress.org/foo/'], $result->id );
     97        }
     98
     99        public function test_get_site_by_slug_with_www_subdirectory() {
     100                if ( is_subdomain_install() ) {
     101                        $this->markTestSkipped( 'This test is only valid in a subdirectory configuration.' );
     102                }
     103
     104                $result = get_site_by( 'slug', 'foo', self::$network_ids['www.wordpress.net/'] );
     105                $this->assertInstanceOf( 'WP_Site', $result );
     106                $this->assertEquals( self::$site_ids['www.wordpress.net/foo/'], $result->id );
     107        }
     108
     109        public function test_get_site_by_slug_with_invalid_network() {
     110                $result = get_site_by( 'slug', 'foo', 444 );
     111                $this->assertNull( $result );
     112        }
     113
     114        /**
     115         * @dataProvider data_get_site_by_url
     116         */
     117        public function test_get_site_by_url( $url, $expected ) {
     118                $result = get_site_by( 'url', $url );
     119                $this->assertInstanceOf( 'WP_Site', $result );
     120                $this->assertEquals( self::$site_ids[ $expected ], $result->id );
     121        }
     122
     123        public function data_get_site_by_url() {
     124                return array(
     125                        array(
     126                                'wordpress.org/foo/',
     127                                'wordpress.org/foo/',
     128                        ),
     129                        array(
     130                                'wordpress.org/foo',
     131                                'wordpress.org/foo/',
     132                        ),
     133                        array(
     134                                'foo.wordpress.org/',
     135                                'foo.wordpress.org/',
     136                        ),
     137                        array(
     138                                'foo.wordpress.org',
     139                                'foo.wordpress.org/',
     140                        ),
     141                        array(
     142                                'www.wordpress.net/',
     143                                'www.wordpress.net/',
     144                        ),
     145                        array(
     146                                'www.wordpress.org/',
     147                                'www.wordpress.org/',
     148                        ),
     149                );
     150        }
     151
     152        public function test_get_site_by_url_with_invalid_url() {
     153                $result = get_site_by( 'url', 'not a url' );
     154                $this->assertNull( $result );
     155        }
     156
     157        public function test_get_site_by_domain_subdomain() {
     158                if ( ! is_subdomain_install() ) {
     159                        $this->markTestSkipped( 'This test is only valid in a subdomain configuration.' );
     160                }
     161
     162                $result = get_site_by( 'domain', 'foo.wordpress.org' );
     163                $this->assertInstanceOf( 'WP_Site', $result );
     164                $this->assertEquals( self::$site_ids['foo.wordpress.org/'], $result->id );
     165        }
     166
     167        public function test_get_site_by_domain_subdirectory() {
     168                if ( is_subdomain_install() ) {
     169                        $this->markTestSkipped( 'This test is only valid in a subdirectory configuration.' );
     170                }
     171
     172                $result = get_site_by( 'domain', 'foo.wordpress.org' );
     173                $this->assertNull( $result );
     174        }
     175
     176        public function test_get_site_by_path_subdomain() {
     177                if ( ! is_subdomain_install() ) {
     178                        $this->markTestSkipped( 'This test is only valid in a subdomain configuration.' );
     179                }
     180
     181                $result = get_site_by( 'path', '/foo/' );
     182                $this->assertNull( $result );
     183        }
     184
     185        public function test_get_site_by_path_subdirectory() {
     186                if ( is_subdomain_install() ) {
     187                        $this->markTestSkipped( 'This test is only valid in a subdirectory configuration.' );
     188                }
     189
     190                $result = get_site_by( 'path', '/foo/' );
     191                $this->assertInstanceOf( 'WP_Site', $result );
     192                $this->assertEquals( self::$site_ids['wordpress.org/foo/'], $result->id );
     193        }
     194}
     195
     196endif;