Make WordPress Core

Ticket #40886: 40886.2.diff

File 40886.2.diff, 18.5 KB (added by pento, 8 years ago)
  • src/wp-includes/rest-api.php

     
    324324                $url .= '/' . ltrim( $path, '/' );
    325325        } else {
    326326                $url = trailingslashit( get_home_url( $blog_id, '', $scheme ) );
     327                // nginx only allows HTTP/1.0 methods when redirecting from / to /index.php
     328                // To work around this, we manually add index.php to the URL, avoiding the redirect.
     329                if ( 'index.php' !== substr( $url, 9 ) ) {
     330                        $url .= 'index.php';
     331                }
    327332
    328333                $path = '/' . ltrim( $path, '/' );
    329334
  • tests/phpunit/tests/oembed/controller.php

     
    409409        }
    410410
    411411        function test_get_oembed_endpoint_url() {
    412                 $this->assertEquals( home_url() . '/?rest_route=/oembed/1.0/embed', get_oembed_endpoint_url() );
    413                 $this->assertEquals( home_url() . '/?rest_route=/oembed/1.0/embed', get_oembed_endpoint_url( '', 'json' ) );
    414                 $this->assertEquals( home_url() . '/?rest_route=/oembed/1.0/embed', get_oembed_endpoint_url( '', 'xml' ) );
     412                $this->assertEquals( home_url() . '/index.php?rest_route=/oembed/1.0/embed', get_oembed_endpoint_url() );
     413                $this->assertEquals( home_url() . '/index.php?rest_route=/oembed/1.0/embed', get_oembed_endpoint_url( '', 'json' ) );
     414                $this->assertEquals( home_url() . '/index.php?rest_route=/oembed/1.0/embed', get_oembed_endpoint_url( '', 'xml' ) );
    415415
    416416                $post_id     = $this->factory()->post->create();
    417417                $url         = get_permalink( $post_id );
    418418                $url_encoded = urlencode( $url );
    419419
    420                 $this->assertEquals( home_url() . '/?rest_route=%2Foembed%2F1.0%2Fembed&url=' . $url_encoded, get_oembed_endpoint_url( $url ) );
    421                 $this->assertEquals( home_url() . '/?rest_route=%2Foembed%2F1.0%2Fembed&url=' . $url_encoded . '&format=xml', get_oembed_endpoint_url( $url, 'xml' ) );
     420                $this->assertEquals( home_url() . '/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=' . $url_encoded, get_oembed_endpoint_url( $url ) );
     421                $this->assertEquals( home_url() . '/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=' . $url_encoded . '&format=xml', get_oembed_endpoint_url( $url, 'xml' ) );
    422422        }
    423423
    424424        function test_get_oembed_endpoint_url_pretty_permalinks() {
  • tests/phpunit/tests/rest-api/rest-request.php

     
    547547                        ),
    548548                        array(
    549549                                'permalink_structure' => '',
    550                                 'original_url'        => 'http://' . WP_TESTS_DOMAIN . '/?rest_route=%2Fwp%2Fv2%2Fposts%2F1&foo=bar',
     550                                'original_url'        => 'http://' . WP_TESTS_DOMAIN . '/index.php?rest_route=%2Fwp%2Fv2%2Fposts%2F1&foo=bar',
    551551                        ),
    552552                );
    553553        }
  • tests/phpunit/tests/rest-api.php

     
    314314
    315315                // In non-pretty case, we get a query string to invoke the rest router.
    316316                $this->set_permalink_structure( '' );
    317                 $this->assertEquals( 'http://' . WP_TESTS_DOMAIN . '/?rest_route=/', get_rest_url() );
    318 
     317                $this->assertEquals( 'http://' . WP_TESTS_DOMAIN . '/index.php?rest_route=/', get_rest_url() );
    319318        }
     319
    320320        /**
    321321         * @ticket 34299
    322322         */
  • tests/qunit/fixtures/wp-api-generated.js

     
    3737                }
    3838            ],
    3939            "_links": {
    40                 "self": "http://example.org/?rest_route=/"
     40                "self": "http://example.org/index.php?rest_route=/"
    4141            }
    4242        },
    4343        "/oembed/1.0": {
     
    6363                }
    6464            ],
    6565            "_links": {
    66                 "self": "http://example.org/?rest_route=/oembed/1.0"
     66                "self": "http://example.org/index.php?rest_route=/oembed/1.0"
    6767            }
    6868        },
    6969        "/oembed/1.0/embed": {
     
    9292                }
    9393            ],
    9494            "_links": {
    95                 "self": "http://example.org/?rest_route=/oembed/1.0/embed"
     95                "self": "http://example.org/index.php?rest_route=/oembed/1.0/embed"
    9696            }
    9797        },
    9898        "/oembed/1.0/proxy": {
     
    142142                }
    143143            ],
    144144            "_links": {
    145                 "self": "http://example.org/?rest_route=/oembed/1.0/proxy"
     145                "self": "http://example.org/index.php?rest_route=/oembed/1.0/proxy"
    146146            }
    147147        },
    148148        "/wp/v2": {
     
    168168                }
    169169            ],
    170170            "_links": {
    171                 "self": "http://example.org/?rest_route=/wp/v2"
     171                "self": "http://example.org/index.php?rest_route=/wp/v2"
    172172            }
    173173        },
    174174        "/wp/v2/posts": {
     
    495495                }
    496496            ],
    497497            "_links": {
    498                 "self": "http://example.org/?rest_route=/wp/v2/posts"
     498                "self": "http://example.org/index.php?rest_route=/wp/v2/posts"
    499499            }
    500500        },
    501501        "/wp/v2/posts/(?P<id>[\\d]+)": {
     
    10661066                }
    10671067            ],
    10681068            "_links": {
    1069                 "self": "http://example.org/?rest_route=/wp/v2/pages"
     1069                "self": "http://example.org/index.php?rest_route=/wp/v2/pages"
    10701070            }
    10711071        },
    10721072        "/wp/v2/pages/(?P<id>[\\d]+)": {
     
    16041604                }
    16051605            ],
    16061606            "_links": {
    1607                 "self": "http://example.org/?rest_route=/wp/v2/media"
     1607                "self": "http://example.org/index.php?rest_route=/wp/v2/media"
    16081608            }
    16091609        },
    16101610        "/wp/v2/media/(?P<id>[\\d]+)": {
     
    17881788                }
    17891789            ],
    17901790            "_links": {
    1791                 "self": "http://example.org/?rest_route=/wp/v2/types"
     1791                "self": "http://example.org/index.php?rest_route=/wp/v2/types"
    17921792            }
    17931793        },
    17941794        "/wp/v2/types/(?P<type>[\\w-]+)": {
     
    18481848                }
    18491849            ],
    18501850            "_links": {
    1851                 "self": "http://example.org/?rest_route=/wp/v2/statuses"
     1851                "self": "http://example.org/index.php?rest_route=/wp/v2/statuses"
    18521852            }
    18531853        },
    18541854        "/wp/v2/statuses/(?P<status>[\\w-]+)": {
     
    19131913                }
    19141914            ],
    19151915            "_links": {
    1916                 "self": "http://example.org/?rest_route=/wp/v2/taxonomies"
     1916                "self": "http://example.org/index.php?rest_route=/wp/v2/taxonomies"
    19171917            }
    19181918        },
    19191919        "/wp/v2/taxonomies/(?P<taxonomy>[\\w-]+)": {
     
    20902090                }
    20912091            ],
    20922092            "_links": {
    2093                 "self": "http://example.org/?rest_route=/wp/v2/categories"
     2093                "self": "http://example.org/index.php?rest_route=/wp/v2/categories"
    20942094            }
    20952095        },
    20962096        "/wp/v2/categories/(?P<id>[\\d]+)": {
     
    23232323                }
    23242324            ],
    23252325            "_links": {
    2326                 "self": "http://example.org/?rest_route=/wp/v2/tags"
     2326                "self": "http://example.org/index.php?rest_route=/wp/v2/tags"
    23272327            }
    23282328        },
    23292329        "/wp/v2/tags/(?P<id>[\\d]+)": {
     
    26032603                }
    26042604            ],
    26052605            "_links": {
    2606                 "self": "http://example.org/?rest_route=/wp/v2/users"
     2606                "self": "http://example.org/index.php?rest_route=/wp/v2/users"
    26072607            }
    26082608        },
    26092609        "/wp/v2/users/(?P<id>[\\d]+)": {
     
    28852885                }
    28862886            ],
    28872887            "_links": {
    2888                 "self": "http://example.org/?rest_route=/wp/v2/users/me"
     2888                "self": "http://example.org/index.php?rest_route=/wp/v2/users/me"
    28892889            }
    28902890        },
    28912891        "/wp/v2/comments": {
     
    31293129                }
    31303130            ],
    31313131            "_links": {
    3132                 "self": "http://example.org/?rest_route=/wp/v2/comments"
     3132                "self": "http://example.org/index.php?rest_route=/wp/v2/comments"
    31333133            }
    31343134        },
    31353135        "/wp/v2/comments/(?P<id>[\\d]+)": {
     
    33833383                }
    33843384            ],
    33853385            "_links": {
    3386                 "self": "http://example.org/?rest_route=/wp/v2/settings"
     3386                "self": "http://example.org/index.php?rest_route=/wp/v2/settings"
    33873387            }
    33883388        }
    33893389    }
     
    34153415                }
    34163416            ],
    34173417            "_links": {
    3418                 "self": "http://example.org/?rest_route=/oembed/1.0"
     3418                "self": "http://example.org/index.php?rest_route=/oembed/1.0"
    34193419            }
    34203420        },
    34213421        "/oembed/1.0/embed": {
     
    34443444                }
    34453445            ],
    34463446            "_links": {
    3447                 "self": "http://example.org/?rest_route=/oembed/1.0/embed"
     3447                "self": "http://example.org/index.php?rest_route=/oembed/1.0/embed"
    34483448            }
    34493449        },
    34503450        "/oembed/1.0/proxy": {
     
    34943494                }
    34953495            ],
    34963496            "_links": {
    3497                 "self": "http://example.org/?rest_route=/oembed/1.0/proxy"
     3497                "self": "http://example.org/index.php?rest_route=/oembed/1.0/proxy"
    34983498            }
    34993499        }
    35003500    }
     
    35733573            ],
    35743574            "collection": [
    35753575                {
    3576                     "href": "http://example.org/?rest_route=/wp/v2/posts"
     3576                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts"
    35773577                }
    35783578            ],
    35793579            "about": [
    35803580                {
    3581                     "href": "http://example.org/?rest_route=/wp/v2/types/post"
     3581                    "href": "http://example.org/index.php?rest_route=/wp/v2/types/post"
    35823582                }
    35833583            ],
    35843584            "replies": [
     
    37543754            ],
    37553755            "collection": [
    37563756                {
    3757                     "href": "http://example.org/?rest_route=/wp/v2/pages"
     3757                    "href": "http://example.org/index.php?rest_route=/wp/v2/pages"
    37583758                }
    37593759            ],
    37603760            "about": [
    37613761                {
    3762                     "href": "http://example.org/?rest_route=/wp/v2/types/page"
     3762                    "href": "http://example.org/index.php?rest_route=/wp/v2/types/page"
    37633763                }
    37643764            ],
    37653765            "replies": [
     
    39203920            ],
    39213921            "collection": [
    39223922                {
    3923                     "href": "http://example.org/?rest_route=/wp/v2/media"
     3923                    "href": "http://example.org/index.php?rest_route=/wp/v2/media"
    39243924                }
    39253925            ],
    39263926            "about": [
    39273927                {
    3928                     "href": "http://example.org/?rest_route=/wp/v2/types/attachment"
     3928                    "href": "http://example.org/index.php?rest_route=/wp/v2/types/attachment"
    39293929                }
    39303930            ],
    39313931            "replies": [
     
    39873987        "_links": {
    39883988            "collection": [
    39893989                {
    3990                     "href": "http://example.org/?rest_route=/wp/v2/types"
     3990                    "href": "http://example.org/index.php?rest_route=/wp/v2/types"
    39913991                }
    39923992            ],
    39933993            "wp:items": [
    39943994                {
    3995                     "href": "http://example.org/?rest_route=/wp/v2/posts"
     3995                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts"
    39963996                }
    39973997            ],
    39983998            "curies": [
     
    40144014        "_links": {
    40154015            "collection": [
    40164016                {
    4017                     "href": "http://example.org/?rest_route=/wp/v2/types"
     4017                    "href": "http://example.org/index.php?rest_route=/wp/v2/types"
    40184018                }
    40194019            ],
    40204020            "wp:items": [
    40214021                {
    4022                     "href": "http://example.org/?rest_route=/wp/v2/pages"
     4022                    "href": "http://example.org/index.php?rest_route=/wp/v2/pages"
    40234023                }
    40244024            ],
    40254025            "curies": [
     
    40414041        "_links": {
    40424042            "collection": [
    40434043                {
    4044                     "href": "http://example.org/?rest_route=/wp/v2/types"
     4044                    "href": "http://example.org/index.php?rest_route=/wp/v2/types"
    40454045                }
    40464046            ],
    40474047            "wp:items": [
    40484048                {
    4049                     "href": "http://example.org/?rest_route=/wp/v2/media"
     4049                    "href": "http://example.org/index.php?rest_route=/wp/v2/media"
    40504050                }
    40514051            ],
    40524052            "curies": [
     
    40814081        "_links": {
    40824082            "archives": [
    40834083                {
    4084                     "href": "http://example.org/?rest_route=/wp/v2/posts"
     4084                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts"
    40854085                }
    40864086            ]
    40874087        }
     
    40944094        "_links": {
    40954095            "archives": [
    40964096                {
    4097                     "href": "http://example.org/?rest_route=%2Fwp%2Fv2%2Fposts&status=future"
     4097                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fposts&status=future"
    40984098                }
    40994099            ]
    41004100        }
     
    41074107        "_links": {
    41084108            "archives": [
    41094109                {
    4110                     "href": "http://example.org/?rest_route=%2Fwp%2Fv2%2Fposts&status=draft"
     4110                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fposts&status=draft"
    41114111                }
    41124112            ]
    41134113        }
     
    41204120        "_links": {
    41214121            "archives": [
    41224122                {
    4123                     "href": "http://example.org/?rest_route=%2Fwp%2Fv2%2Fposts&status=pending"
     4123                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fposts&status=pending"
    41244124                }
    41254125            ]
    41264126        }
     
    41334133        "_links": {
    41344134            "archives": [
    41354135                {
    4136                     "href": "http://example.org/?rest_route=%2Fwp%2Fv2%2Fposts&status=private"
     4136                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fposts&status=private"
    41374137                }
    41384138            ]
    41394139        }
     
    41464146        "_links": {
    41474147            "archives": [
    41484148                {
    4149                     "href": "http://example.org/?rest_route=%2Fwp%2Fv2%2Fposts&status=trash"
     4149                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fposts&status=trash"
    41504150                }
    41514151            ]
    41524152        }
     
    41734173        "_links": {
    41744174            "collection": [
    41754175                {
    4176                     "href": "http://example.org/?rest_route=/wp/v2/taxonomies"
     4176                    "href": "http://example.org/index.php?rest_route=/wp/v2/taxonomies"
    41774177                }
    41784178            ],
    41794179            "wp:items": [
    41804180                {
    4181                     "href": "http://example.org/?rest_route=/wp/v2/categories"
     4181                    "href": "http://example.org/index.php?rest_route=/wp/v2/categories"
    41824182                }
    41834183            ],
    41844184            "curies": [
     
    42024202        "_links": {
    42034203            "collection": [
    42044204                {
    4205                     "href": "http://example.org/?rest_route=/wp/v2/taxonomies"
     4205                    "href": "http://example.org/index.php?rest_route=/wp/v2/taxonomies"
    42064206                }
    42074207            ],
    42084208            "wp:items": [
    42094209                {
    4210                     "href": "http://example.org/?rest_route=/wp/v2/tags"
     4210                    "href": "http://example.org/index.php?rest_route=/wp/v2/tags"
    42114211                }
    42124212            ],
    42134213            "curies": [
     
    42464246        "_links": {
    42474247            "self": [
    42484248                {
    4249                     "href": "http://example.org/?rest_route=/wp/v2/categories/1"
     4249                    "href": "http://example.org/index.php?rest_route=/wp/v2/categories/1"
    42504250                }
    42514251            ],
    42524252            "collection": [
    42534253                {
    4254                     "href": "http://example.org/?rest_route=/wp/v2/categories"
     4254                    "href": "http://example.org/index.php?rest_route=/wp/v2/categories"
    42554255                }
    42564256            ],
    42574257            "about": [
    42584258                {
    4259                     "href": "http://example.org/?rest_route=/wp/v2/taxonomies/category"
     4259                    "href": "http://example.org/index.php?rest_route=/wp/v2/taxonomies/category"
    42604260                }
    42614261            ],
    42624262            "wp:post_type": [
    42634263                {
    4264                     "href": "http://example.org/?rest_route=%2Fwp%2Fv2%2Fposts&categories=1"
     4264                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fposts&categories=1"
    42654265                }
    42664266            ],
    42674267            "curies": [
     
    43054305            ],
    43064306            "collection": [
    43074307                {
    4308                     "href": "http://example.org/?rest_route=/wp/v2/tags"
     4308                    "href": "http://example.org/index.php?rest_route=/wp/v2/tags"
    43094309                }
    43104310            ],
    43114311            "about": [
    43124312                {
    4313                     "href": "http://example.org/?rest_route=/wp/v2/taxonomies/post_tag"
     4313                    "href": "http://example.org/index.php?rest_route=/wp/v2/taxonomies/post_tag"
    43144314                }
    43154315            ],
    43164316            "wp:post_type": [
     
    43574357        "_links": {
    43584358            "self": [
    43594359                {
    4360                     "href": "http://example.org/?rest_route=/wp/v2/users/1"
     4360                    "href": "http://example.org/index.php?rest_route=/wp/v2/users/1"
    43614361                }
    43624362            ],
    43634363            "collection": [
    43644364                {
    4365                     "href": "http://example.org/?rest_route=/wp/v2/users"
     4365                    "href": "http://example.org/index.php?rest_route=/wp/v2/users"
    43664366                }
    43674367            ]
    43684368        }
     
    43884388            ],
    43894389            "collection": [
    43904390                {
    4391                     "href": "http://example.org/?rest_route=/wp/v2/users"
     4391                    "href": "http://example.org/index.php?rest_route=/wp/v2/users"
    43924392                }
    43934393            ]
    43944394        }
     
    44554455            ],
    44564456            "collection": [
    44574457                {
    4458                     "href": "http://example.org/?rest_route=/wp/v2/comments"
     4458                    "href": "http://example.org/index.php?rest_route=/wp/v2/comments"
    44594459                }
    44604460            ],
    44614461            "up": [