-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathrouter.php
135 lines (113 loc) · 3.58 KB
/
router.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
// Used by `wp server` to route requests.
namespace WP_CLI\Router;
/**
* This is a copy of WordPress's add_filter() function.
*
* We duplicate it because WordPress is not loaded yet.
*/
function add_filter( $tag, $function_to_add, $priority = 10, $accepted_args = 1 ) {
global $wp_filter, $merged_filters;
$idx = _wp_filter_build_unique_id( $tag, $function_to_add, $priority );
// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
$wp_filter[ $tag ][ $priority ][ $idx ] = array(
'function' => $function_to_add,
'accepted_args' => $accepted_args,
);
unset( $merged_filters[ $tag ] );
return true;
}
/**
* This is a copy of WordPress's _wp_filter_build_unique_id() function.
*
* We duplicate it because WordPress is not loaded yet.
*/
function _wp_filter_build_unique_id( $tag, $callback, $priority ) {
global $wp_filter;
static $filter_id_count = 0;
if ( is_string( $callback ) ) {
return $callback;
}
if ( is_object( $callback ) ) {
// Closures are currently implemented as objects
$callback = array( $callback, '' );
} else {
$callback = (array) $callback;
}
if ( is_object( $callback[0] ) ) {
// Object Class Calling
if ( function_exists( 'spl_object_hash' ) ) {
return spl_object_hash( $callback[0] ) . $callback[1];
} else {
$obj_idx = get_class( $callback[0] ) . $callback[1];
if ( ! isset( $callback[0]->wp_filter_id ) ) {
if ( false === $priority ) {
return false;
}
$obj_idx .= isset( $wp_filter[ $tag ][ $priority ] )
? count( (array) $wp_filter[ $tag ][ $priority ] )
: $filter_id_count;
$callback[0]->wp_filter_id = $filter_id_count;
++$filter_id_count;
} else {
$obj_idx .= $callback[0]->wp_filter_id;
}
return $obj_idx;
}
} elseif ( is_string( $callback[0] ) ) {
// Static Calling
return $callback[0] . '::' . $callback[1];
}
}
function _get_full_host( $url ) {
// phpcs:ignore WordPress.WP.AlternativeFunctions.parse_url_parse_url
$parsed_url = parse_url( $url );
$host = $parsed_url['host'];
if ( isset( $parsed_url['port'] ) && 80 !== $parsed_url['port'] ) {
$host .= ':' . $parsed_url['port'];
}
return $host;
}
// We need to trick WordPress into using the URL set by `wp server`, especially on multisite.
add_filter(
'option_home',
function ( $url ) {
$GLOBALS['wpcli_server_original_url'] = $url;
return 'http://' . $_SERVER['HTTP_HOST'];
},
20
);
add_filter(
'option_siteurl',
function ( $url ) {
if ( ! isset( $GLOBALS['wpcli_server_original_url'] ) ) {
get_option( 'home' ); // trigger the option_home filter
}
$home_url_host = _get_full_host( $GLOBALS['wpcli_server_original_url'] );
$site_url_host = _get_full_host( $url );
if ( $site_url_host === $home_url_host ) {
$url = str_replace( $site_url_host, $_SERVER['HTTP_HOST'], $url );
}
return $url;
},
20
);
$_SERVER['SERVER_ADDR'] = gethostbyname( $_SERVER['SERVER_NAME'] );
$wpcli_server_root = $_SERVER['DOCUMENT_ROOT'];
// phpcs:ignore WordPress.WP.AlternativeFunctions.parse_url_parse_url
$wpcli_server_path = '/' . ltrim( parse_url( urldecode( $_SERVER['REQUEST_URI'] ) )['path'], '/' );
if ( file_exists( $wpcli_server_root . $wpcli_server_path ) ) {
if ( is_dir( $wpcli_server_root . $wpcli_server_path ) && substr( $wpcli_server_path, -1 ) !== '/' ) {
header( "Location: $wpcli_server_path/" );
exit;
}
if ( strpos( $wpcli_server_path, '.php' ) !== false ) {
chdir( dirname( $wpcli_server_root . $wpcli_server_path ) );
require_once $wpcli_server_root . $wpcli_server_path;
} else {
return false;
}
} else {
chdir( $wpcli_server_root );
require_once 'index.php';
}