Conditions | 26 |
Paths | 319 |
Total Lines | 180 |
Code Lines | 53 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
12 | function jetpack_photon_url( $image_url, $args = array(), $scheme = null ) { |
||
13 | $image_url = trim( $image_url ); |
||
14 | |||
15 | if ( ! defined( 'IS_WPCOM' ) || ! IS_WPCOM ) { |
||
16 | /** |
||
17 | * Disables Photon URL processing for local development |
||
18 | * |
||
19 | * @module photon |
||
20 | * |
||
21 | * @since 4.1.0 |
||
22 | * |
||
23 | * @param bool false Result of Jetpack::is_development_mode. |
||
24 | */ |
||
25 | if ( true === apply_filters( 'jetpack_photon_development_mode', Jetpack::is_development_mode() ) ) { |
||
26 | return $image_url; |
||
27 | } |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Allow specific image URls to avoid going through Photon. |
||
32 | * |
||
33 | * @module photon |
||
34 | * |
||
35 | * @since 3.2.0 |
||
36 | * |
||
37 | * @param bool false Should the image be returned as is, without going through Photon. Default to false. |
||
38 | * @param string $image_url Image URL. |
||
39 | * @param array|string $args Array of Photon arguments. |
||
40 | * @param string|null $scheme Image scheme. Default to null. |
||
41 | */ |
||
42 | if ( false !== apply_filters( 'jetpack_photon_skip_for_url', false, $image_url, $args, $scheme ) ) { |
||
43 | return $image_url; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * Filter the original image URL before it goes through Photon. |
||
48 | * |
||
49 | * @module photon |
||
50 | * |
||
51 | * @since 1.9.0 |
||
52 | * |
||
53 | * @param string $image_url Image URL. |
||
54 | * @param array|string $args Array of Photon arguments. |
||
55 | * @param string|null $scheme Image scheme. Default to null. |
||
56 | */ |
||
57 | $image_url = apply_filters( 'jetpack_photon_pre_image_url', $image_url, $args, $scheme ); |
||
58 | /** |
||
59 | * Filter the original Photon image parameters before Photon is applied to an image. |
||
60 | * |
||
61 | * @module photon |
||
62 | * |
||
63 | * @since 1.9.0 |
||
64 | * |
||
65 | * @param array|string $args Array of Photon arguments. |
||
66 | * @param string $image_url Image URL. |
||
67 | * @param string|null $scheme Image scheme. Default to null. |
||
68 | */ |
||
69 | $args = apply_filters( 'jetpack_photon_pre_args', $args, $image_url, $scheme ); |
||
70 | |||
71 | if ( empty( $image_url ) ) |
||
72 | return $image_url; |
||
73 | |||
74 | $image_url_parts = @jetpack_photon_parse_url( $image_url ); |
||
75 | |||
76 | // Unable to parse |
||
77 | if ( ! is_array( $image_url_parts ) || empty( $image_url_parts['host'] ) || empty( $image_url_parts['path'] ) ) |
||
78 | return $image_url; |
||
79 | |||
80 | if ( is_array( $args ) ){ |
||
81 | // Convert values that are arrays into strings |
||
82 | foreach ( $args as $arg => $value ) { |
||
83 | if ( is_array( $value ) ) { |
||
84 | $args[$arg] = implode( ',', $value ); |
||
85 | } |
||
86 | } |
||
87 | |||
88 | // Encode values |
||
89 | // See http://core.trac.wordpress.org/ticket/17923 |
||
90 | $args = rawurlencode_deep( $args ); |
||
91 | } |
||
92 | |||
93 | // Don't photon-ize WPCOM hosted images -- we can serve them up from wpcom directly. |
||
94 | $is_wpcom_image = false; |
||
95 | if ( wp_endswith( strtolower( $image_url_parts['host'] ), '.files.wordpress.com' ) ) { |
||
96 | $is_wpcom_image = true; |
||
97 | if ( isset( $args['ssl'] ) ) { |
||
98 | // Do not send the ssl argument to prevent caching issues |
||
99 | unset( $args['ssl'] ); |
||
100 | } |
||
101 | } |
||
102 | |||
103 | /** This filter is documented below. */ |
||
104 | $custom_photon_url = apply_filters( 'jetpack_photon_domain', '', $image_url ); |
||
105 | $custom_photon_url = esc_url( $custom_photon_url ); |
||
106 | |||
107 | // You can't run a Photon URL through Photon again because query strings are stripped. |
||
108 | // So if the image is already a Photon URL, append the new arguments to the existing URL. |
||
109 | // Alternately, if it's a *.files.wordpress.com url, then keep the domain as is. |
||
110 | if ( |
||
111 | in_array( $image_url_parts['host'], array( 'i0.wp.com', 'i1.wp.com', 'i2.wp.com' ) ) |
||
112 | || $image_url_parts['host'] === jetpack_photon_parse_url( $custom_photon_url, PHP_URL_HOST ) |
||
113 | || $is_wpcom_image |
||
114 | ) { |
||
115 | $photon_url = add_query_arg( $args, $image_url ); |
||
116 | return jetpack_photon_url_scheme( $photon_url, $scheme ); |
||
117 | } |
||
118 | |||
119 | /** |
||
120 | * Allow Photon to use query strings as well. |
||
121 | * By default, Photon doesn't support query strings so we ignore them and look only at the path. |
||
122 | * This setting is Photon Server dependent. |
||
123 | * |
||
124 | * @module photon |
||
125 | * |
||
126 | * @since 1.9.0 |
||
127 | * |
||
128 | * @param bool false Should images using query strings go through Photon. Default is false. |
||
129 | * @param string $image_url_parts['host'] Image URL's host. |
||
130 | */ |
||
131 | if ( ! apply_filters( 'jetpack_photon_any_extension_for_domain', false, $image_url_parts['host'] ) ) { |
||
132 | // Photon doesn't support query strings so we ignore them and look only at the path. |
||
133 | // However some source images are served via PHP so check the no-query-string extension. |
||
134 | // For future proofing, this is a blacklist of common issues rather than a whitelist. |
||
135 | $extension = pathinfo( $image_url_parts['path'], PATHINFO_EXTENSION ); |
||
136 | if ( empty( $extension ) || in_array( $extension, array( 'php', 'ashx' ) ) ) |
||
137 | return $image_url; |
||
138 | } |
||
139 | |||
140 | $image_host_path = $image_url_parts['host'] . $image_url_parts['path']; |
||
141 | |||
142 | // Figure out which CDN subdomain to use |
||
143 | srand( crc32( $image_host_path ) ); |
||
144 | $subdomain = rand( 0, 2 ); |
||
145 | srand(); |
||
146 | |||
147 | /** |
||
148 | * Filters the domain used by the Photon module. |
||
149 | * |
||
150 | * @module photon |
||
151 | * |
||
152 | * @since 3.4.2 |
||
153 | * |
||
154 | * @param string https://i{$subdomain}.wp.com Domain used by Photon. $subdomain is a random number between 0 and 2. |
||
155 | * @param string $image_url URL of the image to be photonized. |
||
156 | */ |
||
157 | $photon_domain = apply_filters( 'jetpack_photon_domain', "https://i{$subdomain}.wp.com", $image_url ); |
||
158 | $photon_domain = trailingslashit( esc_url( $photon_domain ) ); |
||
159 | $photon_url = $photon_domain . $image_host_path; |
||
160 | |||
161 | /** |
||
162 | * Add query strings to Photon URL. |
||
163 | * By default, Photon doesn't support query strings so we ignore them. |
||
164 | * This setting is Photon Server dependent. |
||
165 | * |
||
166 | * @module photon |
||
167 | * |
||
168 | * @since 1.9.0 |
||
169 | * |
||
170 | * @param bool false Should query strings be added to the image URL. Default is false. |
||
171 | * @param string $image_url_parts['host'] Image URL's host. |
||
172 | */ |
||
173 | if ( isset( $image_url_parts['query'] ) && apply_filters( 'jetpack_photon_add_query_string_to_domain', false, $image_url_parts['host'] ) ) { |
||
174 | $photon_url .= '?q=' . rawurlencode( $image_url_parts['query'] ); |
||
175 | } |
||
176 | |||
177 | if ( $args ) { |
||
178 | if ( is_array( $args ) ) { |
||
179 | $photon_url = add_query_arg( $args, $photon_url ); |
||
180 | } else { |
||
181 | // You can pass a query string for complicated requests but where you still want CDN subdomain help, etc. |
||
182 | $photon_url .= '?' . $args; |
||
183 | } |
||
184 | } |
||
185 | |||
186 | if ( isset( $image_url_parts['scheme'] ) && 'https' == $image_url_parts['scheme'] ) { |
||
187 | $photon_url = add_query_arg( array( 'ssl' => 1 ), $photon_url ); |
||
188 | } |
||
189 | |||
190 | return jetpack_photon_url_scheme( $photon_url, $scheme ); |
||
191 | } |
||
192 | add_filter( 'jetpack_photon_url', 'jetpack_photon_url', 10, 3 ); |
||
312 |