googlemaps.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. /*
  3. * Google maps iframe - transforms code that looks like that:
  4. * <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=bg&amp;geocode=&amp;q=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1,+%D0%A1%D0%BE%D1%84%D0%B8%D1%8F,+%D0%91%D1%8A%D0%BB%D0%B3%D0%B0%D1%80%D0%B8%D1%8F&amp;sll=37.0625,-95.677068&amp;sspn=40.545434,79.013672&amp;ie=UTF8&amp;hq=&amp;hnear=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1&amp;ll=42.654446,23.372061&amp;spn=0.036864,0.077162&amp;t=h&amp;z=14&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=bg&amp;geocode=&amp;q=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1,+%D0%A1%D0%BE%D1%84%D0%B8%D1%8F,+%D0%91%D1%8A%D0%BB%D0%B3%D0%B0%D1%80%D0%B8%D1%8F&amp;sll=37.0625,-95.677068&amp;sspn=40.545434,79.013672&amp;ie=UTF8&amp;hq=&amp;hnear=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1&amp;ll=42.654446,23.372061&amp;spn=0.036864,0.077162&amp;t=h&amp;z=14" style="color:#0000FF;text-align:left">Вижте по-голяма карта</a></small>
  5. * into the [googlemaps http://...] shortcode format
  6. */
  7. function jetpack_googlemaps_embed_to_short_code( $content ) {
  8. if ( ! is_string( $content ) || ( false === strpos( $content, 'maps.google.' ) && 1 !== preg_match( '@google\.[^/]+/maps?@', $content ) ) ){
  9. return $content;
  10. }
  11. // IE and TinyMCE format things differently
  12. // &lt;iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="<a href="https://maps.google.co.uk/maps/ms?msa=0&amp;amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;amp;hl=en&amp;amp;ie=UTF8&amp;amp;t=m&amp;amp;ll=50.91917,-1.398808&amp;amp;spn=0.013225,0.011794&amp;amp;output=embed&quot;&gt;&lt;/iframe&gt;&lt;br">https://maps.google.co.uk/maps/ms?msa=0&amp;amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;amp;hl=en&amp;amp;ie=UTF8&amp;amp;t=m&amp;amp;ll=50.91917,-1.398808&amp;amp;spn=0.013225,0.011794&amp;amp;output=embed"&gt;&lt;/iframe&gt;&lt;br</a> /&gt;&lt;small&gt;View &lt;a href="<a href="https://maps.google.co.uk/maps/ms?msa=0&amp;amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;amp;hl=en&amp;amp;ie=UTF8&amp;amp;t=m&amp;amp;ll=50.91917,-1.398808&amp;amp;spn=0.013225,0.011794&amp;amp;source=embed">https://maps.google.co.uk/maps/ms?msa=0&amp;amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;amp;hl=en&amp;amp;ie=UTF8&amp;amp;t=m&amp;amp;ll=50.91917,-1.398808&amp;amp;spn=0.013225,0.011794&amp;amp;source=embed</a>" style="color:#0000FF;text-align:left"&gt;OARA Membership Discount Map&lt;/a&gt; in a larger map&lt;/small&gt;
  13. if ( strpos( $content, 'src="<a href="' ) !== false ) {
  14. $content = preg_replace_callback( '#&lt;iframe\s[^&]*?(?:&(?!gt;)[^&]*?)*?src="<a href="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)&quot;[^&]*?(?:&(?!gt;)[^&]*?)*?&gt;\s*&lt;/iframe&gt;&lt;br">[^"]*?"&gt;\s*&lt;/iframe&gt;(?:&lt;br</a>\s*/&gt;\s*&lt;small&gt;.*?&lt;/small&gt;)?#i', 'jetpack_googlemaps_embed_to_short_code_callback', $content );
  15. return $content;
  16. }
  17. $content = preg_replace_callback( '!\<iframe\s[^>]*?src="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)"[^>]*?\>\s*\</iframe\>(?:\s*(?:\<br\s*/?\>)?\s*\<small\>.*?\</small\>)?!i', 'jetpack_googlemaps_embed_to_short_code_callback', $content );
  18. $content = preg_replace_callback( '#&lt;iframe\s[^&]*?(?:&(?!gt;)[^&]*?)*?src="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)"[^&]*?(?:&(?!gt;)[^&]*?)*?&gt;\s*&lt;/iframe&gt;(?:\s*(?:&lt;br\s*/?&gt;)?\s*&lt;small&gt;.*?&lt;/small&gt;)?#i', 'jetpack_googlemaps_embed_to_short_code_callback', $content );
  19. return $content;
  20. }
  21. function jetpack_googlemaps_embed_to_short_code_callback( $match ) {
  22. if ( preg_match( '/\bwidth=[\'"](\d+)(%)?/', $match[0], $width ) ) {
  23. $percent = ! empty( $width[2] ) ? '%' : '';
  24. $width = absint( $width[1] ) . $percent;
  25. } else {
  26. $width = 425;
  27. }
  28. if ( preg_match( '/\bheight=[\'"](\d+)(%)?/', $match[0], $height ) ) {
  29. $percent = ! empty( $height[2] ) ? '%' : '';
  30. $height = absint( $height[1] ) . $percent;
  31. } else {
  32. $height = 350;
  33. }
  34. $url = "https://{$match[1]}.google.{$match[2]}/{$match[3]}?{$match[4]}&amp;w={$width}&amp;h={$height}";
  35. /** This action is documented in modules/shortcodes/youtube.php */
  36. do_action( 'jetpack_embed_to_shortcode', 'googlemaps', $url );
  37. return "[googlemaps $url]";
  38. }
  39. add_filter( 'pre_kses', 'jetpack_googlemaps_embed_to_short_code' );
  40. /**
  41. * [googlemaps] shortcode
  42. *
  43. * Example usage:
  44. * [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]
  45. * [googlemaps https://mapsengine.google.com/map/embed?mid=zbBhkou4wwtE.kUmp8K6QJ7SA&w=640&h=480]
  46. */
  47. function jetpack_googlemaps_shortcode( $atts ) {
  48. if ( !isset($atts[0]) )
  49. return '';
  50. $params = ltrim( $atts[0], '=' );
  51. $width = 425;
  52. $height = 350;
  53. if ( preg_match( '!^https?://(www|maps|mapsengine)\.google(\.co|\.com)?(\.[a-z]+)?/.*?(\?.+)!i', $params, $match ) ) {
  54. $params = str_replace( '&amp;amp;', '&amp;', $params );
  55. $params = str_replace( '&amp;', '&', $params );
  56. parse_str( $params, $arg );
  57. if ( isset( $arg['hq'] ) )
  58. unset( $arg['hq'] );
  59. $url = '';
  60. foreach ( (array) $arg as $key => $value ) {
  61. if ( 'w' == $key ) {
  62. $percent = ( '%' == substr( $value, -1 ) ) ? '%' : '';
  63. $width = (int) $value . $percent;
  64. } elseif ( 'h' == $key ) {
  65. $height = (int) $value;
  66. } else {
  67. $key = str_replace( '_', '.', $key );
  68. $url .= esc_attr( "$key=$value&amp;" );
  69. }
  70. }
  71. $url = substr( $url, 0, -5 );
  72. if( is_ssl() )
  73. $url = str_replace( 'http://', 'https://', $url );
  74. $css_class = 'googlemaps';
  75. if ( ! empty( $atts['align'] ) && in_array( strtolower( $atts['align'] ), array( 'left', 'center', 'right' ), true ) ) {
  76. $atts['align'] = strtolower( $atts['align'] );
  77. if ( $atts['align'] === 'left' ) {
  78. $css_class .= ' alignleft';
  79. } elseif ( $atts['align'] === 'center' ) {
  80. $css_class .= ' aligncenter';
  81. } elseif ( $atts['align'] === 'right' ) {
  82. $css_class .= ' alignright';
  83. }
  84. }
  85. return '<div class="' . esc_attr( $css_class ) . '"><iframe width="' . $width . '" height="' . $height . '" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="' . $url . '"></iframe></div>';
  86. }
  87. }
  88. add_shortcode( 'googlemaps', 'jetpack_googlemaps_shortcode' );