Вижте по-голяма карта * [googlemaps https://maps.google.com/maps?f=q&hl=en&geocode=&q=San+Francisco,+CA&sll=43.469466,-83.998504&sspn=0.01115,0.025942&g=San+Francisco,+CA&ie=UTF8&z=12&iwloc=addr&ll=37.808156,-122.402458&output=embed&s=AARTsJp56EajYksz3JXgNCwT3LJnGsqqAQ&w=425&h=350] * [googlemaps https://mapsengine.google.com/map/embed?mid=zbBhkou4wwtE.kUmp8K6QJ7SA&w=640&h=480] * * @package automattic/jetpack */ if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } /** * Google maps iframe - transforms code that looks like that: *
Вижте по-голяма карта * into the [googlemaps http://...] shortcode format * * @param string $content Post content. */ function jetpack_googlemaps_embed_to_short_code( $content ) { if ( ! is_string( $content ) || ( ! str_contains( $content, 'maps.google.' ) && 1 !== preg_match( '@google\.[^/]+/maps?@', $content ) ) ) { return $content; } /* * IE and TinyMCE format things differently * <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.co.uk/maps/ms?msa=0&amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;ll=50.91917,-1.398808&amp;spn=0.013225,0.011794&amp;output=embed"></iframe><br /><small>View <a href="https://maps.google.co.uk/maps/ms?msa=0&amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;ll=50.91917,-1.398808&amp;spn=0.013225,0.011794&amp;source=embed" style="color:#0000FF;text-align:left">OARA Membership Discount Map</a> in a larger map</small> */ if ( strpos( $content, 'src="[^"]*?">\s*</iframe>(?:<br\s*/>\s*<small>.*?</small>)?#i', 'jetpack_googlemaps_embed_to_short_code_callback', $content ); return $content; } $content = preg_replace_callback( '!\]*?src="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)"[^>]*?\>\s*\(?:\s*(?:\)?\s*\.*?\)?!i', 'jetpack_googlemaps_embed_to_short_code_callback', $content ); $content = preg_replace_callback( '#<iframe\s[^&]*?(?:&(?!gt;)[^&]*?)*?src="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)"[^&]*?(?:&(?!gt;)[^&]*?)*?>\s*</iframe>(?:\s*(?:<br\s*/?>)?\s*<small>.*?</small>)?#i', 'jetpack_googlemaps_embed_to_short_code_callback', $content ); return $content; } /** * Callback transforming a Google Maps iFrame code into a shortcode. * * @param array $match Array of embed parameters used to build the final URL. */ function jetpack_googlemaps_embed_to_short_code_callback( $match ) { if ( preg_match( '/\bwidth=[\'"](\d+)(%)?/', $match[0], $width ) ) { $percent = ! empty( $width[2] ) ? '%' : ''; $width = absint( $width[1] ) . $percent; } else { $width = 425; } if ( preg_match( '/\bheight=[\'"](\d+)(%)?/', $match[0], $height ) ) { $percent = ! empty( $height[2] ) ? '%' : ''; $height = absint( $height[1] ) . $percent; } else { $height = 350; } $url = "https://{$match[1]}.google.{$match[2]}/{$match[3]}?{$match[4]}&w={$width}&h={$height}"; /** This action is documented in modules/shortcodes/youtube.php */ do_action( 'jetpack_embed_to_shortcode', 'googlemaps', $url ); return "[googlemaps $url]"; } if ( jetpack_shortcodes_should_hook_pre_kses() ) { add_filter( 'pre_kses', 'jetpack_googlemaps_embed_to_short_code' ); } /** * Display the [googlemaps] shortcode * * @param array $atts Shortcode attributes. */ function jetpack_googlemaps_shortcode( $atts ) { if ( ! isset( $atts[0] ) ) { return ''; } $params = ltrim( $atts[0], '=' ); $width = 425; $height = 350; if ( preg_match( '!^https?://(www|maps|mapsengine)\.google(\.co|\.com)?(\.[a-z]+)?/.*?(\?.+)!i', $params, $match ) ) { $url_parts = wp_parse_url( $params ); if ( ! is_array( $url_parts ) || empty( $url_parts['host'] ) ) { return ''; } $base_url = ( $url_parts['scheme'] ?? 'https' ) . '://' . $url_parts['host'] . ( $url_parts['path'] ?? '' ); $query_string = $url_parts['query'] ?? ''; // Convert separator-position `&` (and `&amp;` etc.) to `&` so parse_str() can split parameters, // but leave entity-encoded ampersands inside values alone — those are handled after parse_str(). $query_string = preg_replace( '/&(?:amp;)+(?=[a-zA-Z_][a-zA-Z0-9_]*=)/', '&', $query_string ); // Any `&` left at this point sits inside a value. Encode the leading `&` so parse_str() does not // split on it; the trailing `amp;` is decoded back to `&` after parse_str() runs. $query_string = str_replace( '&', '%26amp;', $query_string ); parse_str( $query_string, $arg ); unset( $arg['hq'] ); if ( isset( $arg['w'] ) ) { $w_value = (string) $arg['w']; $percent = str_ends_with( $w_value, '%' ) ? '%' : ''; $width = (int) $w_value . $percent; unset( $arg['w'] ); } if ( isset( $arg['h'] ) ) { $height = (int) $arg['h']; unset( $arg['h'] ); } // Restore parse_str()'s underscore-mangled keys (e.g. `f.q` → `f_q` → `f.q`) and decode any // HTML entities that survived inside values, so http_build_query() encodes the real characters. $rebuilt = array(); foreach ( $arg as $key => $value ) { $key = str_replace( '_', '.', (string) $key ); if ( is_string( $value ) ) { $value = preg_replace( '/&(?:amp;)+/', '&', $value ); } $rebuilt[ $key ] = $value; } $query = http_build_query( $rebuilt, '', '&', PHP_QUERY_RFC3986 ); $url = $base_url . ( '' !== $query ? '?' . $query : '' ); $url = str_replace( 'http://', 'https://', $url ); $css_class = 'googlemaps'; if ( ! empty( $atts['align'] ) && in_array( strtolower( $atts['align'] ), array( 'left', 'center', 'right' ), true ) ) { $atts['align'] = strtolower( $atts['align'] ); if ( 'left' === $atts['align'] ) { $css_class .= ' alignleft'; } elseif ( 'center' === $atts['align'] ) { $css_class .= ' aligncenter'; } elseif ( 'right' === $atts['align'] ) { $css_class .= ' alignright'; } } $sandbox = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ? 'sandbox="allow-popups allow-scripts allow-same-origin"' : ''; return sprintf( '
', esc_attr( $css_class ), absint( $width ), absint( $height ), esc_url( $url ), $sandbox ); } } add_shortcode( 'googlemaps', 'jetpack_googlemaps_shortcode' );