wp-mail.phpを改造して地図へのリンクを表示する

wp-mail.php サムネイル+機能強化版
こちらで配布されているwp-mail.phpに手を加え、画像が添付された際にサムネイルを作成できるように機能追加しました。

wp-mail.phpのサムネイル+機能強化版を利用して、GPS情報のある写真が添付された場合に地図へのリンクを記事に挿入する改造を行ってみました。

  • '仕様'
    • 複数の写真が添付された場合、GPS情報を取得できるのは1枚目の写真のみ
    • GPS情報は世界測地系(WGS-84)/日本測地系(Tokyo)の両測地系に対応し、世界測地系であれば日本測地系に変換を行い地図サイトへのリンクを生成します
  • '注意'
    • 携帯電話 au W21S でしか確認していません
    • ライセンスは元のwp-mail.phpが GNU GPL となっていますのでGPLです
  • &color(#F00){'2005/03/15 更新'}
    • GPS情報が日本測地系の場合エラーが発生する問題を修正。
    • メールを2件以上処理する場合でも、1件目のGPS情報を利用してしまう問題を修正
  1. <!--more-->

wp-mail.php サムネイル+機能強化版を入れる

wp-mail.php サムネイル+機能強化版から somy_wp-mail.lzh(EUC-JPの場合はsomy_wp-mail_euc.lzh)をとってきて、WordPressのディレクトリに展開する。

wp-mail.phpを改造する

結構無理やりな事をしています。。。 :oops:

get_gps_information()関数の $content = … あたりで地図サイトへのリンクを生成していますので、お好みに合わせて変更してください。

114行目に追加

  1. // GPS地図リンク作成用の設定
  2.  
  3. /* GPS情報がある場合地図へのリンクを作成 ''1'':する ''0'':しない */
  4. $wpmail_get_gps_information = ''1'';
  5.  
  6. /* 地図サイトへのURL一覧(日本測地系) URL中の$latは緯度、$lonは経度 */
  7. $_gps_map_urls = array(
  8. ''Yahoo'' => ''http://map.yahoo.co.jp/pl?nl=$lat&el=$lon'',
  9. ''Mapion'' => ''http://www.mapion.co.jp/c/f?uc=1&grp=all&nl=$lat&el=$lon'',
  10. ''MapFan'' => ''http://www.mapfan.com/index.cgi?MAP=E$lonN$lat&ZM=11'',
  11. );
  12.  
  13. /* 地図サイトへのURL一覧からの名前 */
  14. $_gps_map_url = ''MapFan'';
  15.  
  16. /* [ラジアン/度](変更の必要がなければ修正しないでください) */
  17. $rd = pi() / 180;
  18.  
  19. /* [変換用データ](変更の必要がなければ修正しないでください) */
  20. $geo_param = array(
  21. ''WGS-84'' => array(
  22. ''a'' => 6378137,
  23. ''1/f'' => 298.257223563,
  24. ''dx'' => 0,
  25. ''dy'' => 0,
  26. ''dz'' => 0,
  27. ),
  28. ''TOKYO'' => array(
  29. ''a'' => 6377397.155,
  30. ''1/f'' => 299.152813,
  31. ''dx'' => 148,
  32. ''dy'' => -507,
  33. ''dz'' => -681,
  34. ),
  35. ) ;

332行目付近に追加

  1. // GPS情報取得
  2. if($wpmail_get_gps_information && count($_wpmail_photo_filepaths) > 0) {
  3. $content = get_gps_information($_wpmail_photo_filepaths[0]).$content;
  4. $_wpmail_photo_filepaths = array();
  5. }

399行目に追加

  1. global $_wpmail_photo_filepaths;

462行目に追加

  1. $_wpmail_photo_filepaths[] = $file_path;

620行目に追加

  1. /**
  2. * GPS情報取得
  3. */
  4. function get_gps_information($filename) {
  5. global $_gps_map_urls, $_gps_map_url;
  6.  
  7. $content = "";
  8.  
  9. if(($exif = exif_read_data($filename, 0, true)) && array_key_exists("GPS", $exif)){
  10. $lon = degstr($exif["GPS"]["GPSLongitude"]);
  11. $lat = degstr($exif["GPS"]["GPSLatitude"]);
  12.  
  13. $gps_geo = $exif["GPS"]["GPSMapDatum"];
  14.  
  15. if($gps_geo != "TOKYO"){
  16. $gps_geo_tokyo = convert_gps_geo($gps_geo, "TOKYO", $lon, $lat);
  17. }else{
  18. $gps_geo_tokyo = array("Longitude" => $lon, "Latitude" => $lat);
  19. }
  20. $replace_patterns = array(''/$lon/'', ''/$lat/'');
  21. $location_mapurl = preg_replace($replace_patterns, $gps_geo_tokyo, $_gps_map_urls[$_gps_map_url]);
  22. $location = get_map_location_from_url($location_mapurl);
  23.  
  24. $dt = dtstr( $exif["EXIF"]["DateTimeOriginal"]);
  25.  
  26. $content = "<blockquote>n"
  27. ."<strong>GPS情報:</strong>n"
  28. ."$dtn"
  29. ."<a href="$location_mapurl">$location</a>n"
  30. ."</blockquote>n";
  31. }
  32.  
  33. return $content;
  34. }
  35.  
  36. function get_map_location_from_url($url) {
  37. $content = get_content_from_url($url);
  38. if(preg_match("/<title>([^<>]+)< /title>/i", $content, $match)){
  39. $title = htmlspecialchars($match[1]);
  40. list($title, $location) = explode(" - ", $title);
  41. if(strstr($location, "周辺") === false){
  42. $location = $title;
  43. }
  44. }
  45. return $location == "" ? "不明" : str_replace("地図", "", $location);
  46. }
  47.  
  48. function get_content_from_url($url) {
  49. $content = @join("", @file($url));
  50. $content = mb_convert_encoding($content, get_settings(''blog_charset''), "EUC-JP");
  51.  
  52. return $content;
  53. }
  54.  
  55. function degstr($parry) {
  56. $d = ratstr2num($parry[0]);
  57. $m = ratstr2num($parry[1]);
  58. $s = ratstr2num($parry[2]);
  59. list($g,$l) = explode(''.'', $s);
  60.  
  61. return sprintf("%02d.%02d.%02d.%02d", $d, $m, $g, $l);
  62. }
  63.  
  64. function ratstr2num($str) {
  65. list($ch, $mot) = explode(''/'', $str);
  66. return $mot == 0 ? 0 : ($ch/$mot);
  67. }
  68.  
  69. function dtstr($str)
  70. {
  71. list($y, $m, $d) = explode('':'', substr($str,0,10));
  72. list($h, $i, $s) = explode('':'', substr($str,-8));
  73.  
  74. $time = mktime( $h, $i, $s, $m, $d, $y) - (TZ*60*60);
  75.  
  76. return date(get_settings("date_format") . '' '' . get_settings("time_format"), $time);
  77. }
  78.  
  79. function convert_gps_geo($geo_from, $geo_to, $lon, $lat, $altitude=0) {
  80. global $geo_param;
  81.  
  82. $llh_pattern = "/^(d+).(d+).(d+.d+)$/";
  83.  
  84. preg_match($llh_pattern, $lon, $match);
  85. $longitude = $match[1] + $match[2]/60 + $match[3]/3600;
  86.  
  87. preg_match($llh_pattern, $lat, $match);
  88. $latitude = $match[1] + $match[2]/60 + $match[3]/3600;
  89.  
  90. if(!isset($geo_param[$geo_from]))
  91. die("''geo_param[$geo_from]'' not supported");
  92. if(!isset($geo_param[$geo_to]))
  93. die("''geo_param[$geo_to]'' not supported");
  94.  
  95. list($x,$y,$z) = ellipsoid_to_rectangular(
  96. $longitude,
  97. $latitude,
  98. $altitude,
  99. $geo_param[$geo_from][''a''],
  100. calc_eccentricity( $geo_param[$geo_from][''1/f''] )
  101. ) ;
  102.  
  103. list($longitude, $latitude, $altitude) = rectangular_to_ellipsoid(
  104. $x+$geo_param[$geo_to][dx],
  105. $y+$geo_param[$geo_to][dy],
  106. $z+$geo_param[$geo_to][dz],
  107. $geo_param[$geo_to][a],
  108. calc_eccentricity( $geo_param[$geo_to][''1/f''] )
  109. ) ;
  110.  
  111. $converted_lat = deg_to_dms( $latitude ) ;
  112. $converted_lon = deg_to_dms( $longitude ) ;
  113. return array($converted_lat, $converted_lon);
  114. }
  115.  
  116. function calc_eccentricity($i_f) {
  117. $f = 1/$i_f ;
  118. return 2*$f-$f*$f ;
  119. }
  120.  
  121. function ellipsoid_to_rectangular($l, $b, $h, $a, $ec) {
  122. global $rd;
  123.  
  124. $b *= $rd ;
  125. $l *= $rd ;
  126. $sb = sin( $b ) ;
  127. $cb = cos( $b ) ;
  128. $cl = cos( $l ) ;
  129. $sl = sin( $l ) ;
  130.  
  131. $k = $a/sqrt( 1 - $ec*$sb*$sb ) ;
  132. $x = ($k+$h) * $cb * $cl ;
  133. $y = ($k+$h) * $cb * $sl ;
  134. $z = ($k*(1-$ec)+$h) * $sb ;
  135.  
  136. return array($x, $y, $z);
  137. }
  138.  
  139. function rectangular_to_ellipsoid($x, $y, $z,$a, $ec) {
  140. global $rd;
  141.  
  142. $sq = sqrt( 1-$ec ) ;
  143. $r1 = sqrt( $x*$x + $y*$y ) ;
  144. $s = atan2( $z, $r1*$sq ) ;
  145. $st = sin( $s ) ;
  146. $ct = cos( $s ) ;
  147. $b = atan2( $z + $ec*$a / $sq*$st*$st*$st, $r1 - $ec*$a*$ct*$ct*$ct ) ;
  148. $l = atan2( $y, $x ) ;
  149.  
  150. $sb = sin( $b ) ;
  151. $rn = $a / sqrt( 1 - $ec*$sb*$sb ) ;
  152. $h = $r1/cos( $b ) - $rn ;
  153.  
  154. return array($b/$rd, $l/$rd, $h) ;
  155. }
  156.  
  157. function deg_to_dms($d) {
  158. $h = floor($d);
  159. $m = floor( (($d-$h)*60) % 60 ) ;
  160. $s = ($d-$h-$m/60)*3600;
  161.  
  162. return sprintf("%d.%02d.%02.2f", $h,$m,$s) ;
  163. }</title>

Copyright © yu-ji All Rights Reserved.