source: branches/version-2_12-dev/data/class/SC_MobileImage.php @ 22567

Revision 22567, 4.9 KB checked in by shutta, 11 years ago (diff)

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 *
23 * 端末の画面解像度にあわせて画像を変換する
24 */
25
26define('MOBILE_IMAGE_INC_REALDIR', realpath(dirname( __FILE__)) . '/../include/');
27require_once MOBILE_IMAGE_INC_REALDIR . 'image_converter.inc';
28
29/**
30 * 画像変換クラス
31 */
32class SC_MobileImage
33{
34    /**
35     * 画像を端末の解像度に合わせて変換する
36     * output buffering 用コールバック関数
37     *
38     * @param string 入力
39     * @return string 出力
40     */
41    static function handler($buffer)
42    {
43
44        // 端末情報を取得する
45        $carrier = SC_MobileUserAgent_Ex::getCarrier();
46        $model   = SC_MobileUserAgent_Ex::getModel();
47
48        // 携帯電話の場合のみ処理を行う
49        if ($carrier !== FALSE) {
50
51            // HTML中のIMGタグを取得する
52            $images = array();
53            $pattern = '/<img\s+[^<>]*src=[\'"]?([^>"\'\s]+)[\'"]?[^>]*>/i';
54            $result = preg_match_all($pattern, $buffer, $images);
55
56            // 端末の情報を取得する
57            $fp = fopen(MOBILE_IMAGE_INC_REALDIR . "mobile_image_map_$carrier.csv", 'r');
58            // 取得できない場合は, 入力内容をそのまま返す
59            if ($fp === false) {
60                return $buffer;
61            }
62            while (($data = fgetcsv($fp, 1000, ',')) !== FALSE) {
63                if ($data[1] == $model || $data[1] == '*') {
64                    $cacheSize     = $data[2];
65                    $imageFileSize = $data[7];
66                    $imageType     = $data[6];
67                    $imageWidth    = $data[5];
68                    $imageHeight   = $data[4];
69                    break;
70                }
71            }
72            fclose($fp);
73
74            // docomoとsoftbankの場合は画像ファイル一つに利用可能なサイズの上限を計算する
75            // auはHTMLのbyte数上限に画像ファイルサイズが含まれないのでimageFileSizeのまま。
76            if ($carrier == 'docomo' or $carrier == 'softbank') {
77                if ($result != false && $result > 0) {
78                    // 計算式:(利用端末で表示可能なcacheサイズ - HTMLのバイト数 - 変換後の画像名のバイト数(目安値)) / HTML中の画像数
79                    $temp_imagefilesize = ($cacheSize - strlen($buffer) - (140 * $result)) / $result;
80                } else {
81                    // 計算式:(利用端末で表示可能なcacheサイズ - HTMLのバイト数)
82                    $temp_imagefilesize = ($cacheSize - strlen($buffer));
83                }
84                // 計算結果が端末の表示可能ファイルサイズ上限より小さい場合は計算結果の値を有効にする
85                if ($temp_imagefilesize < $imageFileSize) {
86                    $imageFileSize = $temp_imagefilesize;
87                }
88            }
89
90            // 画像変換の情報をセットする
91            $imageConverter = New ImageConverter();
92            $imageConverter->setOutputDir(MOBILE_IMAGE_REALDIR);
93            $imageConverter->setImageType($imageType);
94            $imageConverter->setImageWidth($imageWidth);
95            $imageConverter->setImageHeight($imageHeight);
96            $imageConverter->setFileSize($imageFileSize);
97
98            // HTML中のIMGタグを変換後のファイルパスに置換する
99            foreach ($images[1] as $key => $path) {
100                // resize_image.phpは除外
101                if (stripos($path, ROOT_URLPATH . 'resize_image.php') !== FALSE) {
102                    break;
103                }
104
105                $realpath = html_entity_decode($path, ENT_QUOTES);
106                $realpath = preg_replace('|^' . ROOT_URLPATH . '|', HTML_REALDIR, $realpath);
107                $converted = $imageConverter->execute($realpath);
108                if (isset($converted['outputImageName'])) {
109                    $buffer = str_replace($path, MOBILE_IMAGE_URLPATH . $converted['outputImageName'], $buffer);
110                } else {
111                    $buffer = str_replace($images[0][$key], '<!--No image-->', $buffer);
112                }
113            }
114        }
115        return $buffer;
116    }
117}
Note: See TracBrowser for help on using the repository browser.