source: branches/version-2_11-dev/data/class/SC_Initial.php @ 20811

Revision 20811, 11.8 KB checked in by AMUAMU, 13 years ago (diff)

#1219 (MySQL環境において商品登録CSVの先頭文字情報欠落が起こる)
#1241 (ロケール設定が環境に適していないと日本語処理に問題が生じる)

に関する修正

  • 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-2011 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 * アプリケーションの初期設定クラス.
26 *
27 * @author LOCKON CO.,LTD.
28 * @version $Id$
29 */
30class SC_Initial {
31
32    // {{{ cunstructor
33
34    /**
35     * コンストラクタ.
36     */
37    function SC_Initial() {
38
39        /** EC-CUBEのバージョン */
40        define('ECCUBE_VERSION', "2.11.1-dev");
41    }
42
43    // }}}
44    // {{{ functions
45
46    /**
47     * 初期設定を行う.
48     *
49     * @access protected
50     * @return void
51     */
52    function init() {
53        $this->requireInitialConfig();
54        $this->defineDSN();
55        $this->setErrorReporting();
56        $this->defineDirectoryIndex();
57        $this->defineErrorType();
58        $this->defineConstants();
59        $this->phpconfigInit();
60        $this->createCacheDir();
61        $this->stripslashesDeepGpc();
62        $this->resetSuperglobalsRequest();
63    }
64
65    /**
66     * 初期設定ファイルを読み込み, パスの設定を行う.
67     *
68     * @access protected
69     * @return void
70     */
71    function requireInitialConfig() {
72
73        define('CONFIG_REALFILE', realpath(dirname(__FILE__)) . '/../config/config.php');
74        if (file_exists(CONFIG_REALFILE)) {
75            require_once CONFIG_REALFILE;
76        }
77    }
78
79    /**
80     * DSN を定義する.
81     *
82     * @access protected
83     * @return void
84     */
85    function defineDSN() {
86        if(defined('DB_TYPE') && defined('DB_USER') && defined('DB_PASSWORD')
87           && defined('DB_SERVER') && defined('DB_PORT') && defined('DB_NAME')) {
88            /** サイト用DB */
89            define ("DEFAULT_DSN",
90                    DB_TYPE . "://" . DB_USER . ":" . DB_PASSWORD . "@"
91                    . DB_SERVER . ":" .DB_PORT . "/" . DB_NAME);
92        }
93    }
94
95    /**
96     * エラーレベル設定を行う.
97     *
98     * ・推奨値
99     *   開発時 - E_ALL
100     *   運用時 - E_ALL & ~E_NOTICE
101     *
102     * @access protected
103     * @return void
104     */
105    function setErrorReporting() {
106        error_reporting(E_ALL & ~E_NOTICE);
107        // PHP 5.3.0対応
108        if (error_reporting() > 6143) {
109            error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
110        }
111    }
112
113    /**
114     * マルチバイト文字列設定を行う.
115     *
116     * TODO SJIS-win や, eucJP-win への対応
117     *
118     * @access protected
119     * @return void
120     */
121    function phpconfigInit() {
122        ini_set('display_errors', '1');
123        ini_set('mbstring.http_input', CHAR_CODE);
124        ini_set('mbstring.http_output', CHAR_CODE);
125        ini_set('auto_detect_line_endings', 1);
126        ini_set('default_charset', CHAR_CODE);
127        ini_set('mbstring.internal_encoding', CHAR_CODE);
128        ini_set('mbstring.detect_order', 'auto');
129        ini_set('mbstring.substitute_character', 'none');
130
131        mb_language('ja'); // mb_internal_encoding() より前に
132        // TODO 他に mb_language() している箇所の削除を検討
133        // TODO .htaccess の mbstring.language を削除できないか検討
134
135        mb_internal_encoding(CHAR_CODE); // mb_language() より後で
136        // TODO 上の「ini_set('mbstring.internal_encoding', CHAR_CODE);」を削除できないか検討
137        // TODO .htaccess の mbstring.internal_encoding を削除できないか検討
138
139        ini_set('arg_separator.output', '&');
140
141        //ロケールを明示的に設定
142        $res = setlocale(LC_ALL, LOCALE);
143        if($res === FALSE) {
144            // TODO: Windows上のロケール設定が正常に働かない場合があることに暫定的に対応
145            // ''を指定するとApache実行環境の環境変数が使われる
146            // See also: http://php.net/manual/ja/function.setlocale.php
147            setlocale(LC_ALL, '');
148        }
149    }
150
151    /**
152     * 定数 DIR_INDEX_PATH を設定する.
153     *
154     * @access protected
155     * @return void
156     */
157    function defineDirectoryIndex() {
158
159        // DirectoryIndex の実ファイル名
160        if (!defined('DIR_INDEX_FILE')) {
161            define('DIR_INDEX_FILE', 'index.php');
162        }
163
164        $useFilenameDirIndex = is_bool(USE_FILENAME_DIR_INDEX)
165            ? USE_FILENAME_DIR_INDEX
166            : (isset($_SERVER['SERVER_SOFTWARE']) ? substr($_SERVER['SERVER_SOFTWARE'], 0, 13) == 'Microsoft-IIS' : false)
167        ;
168
169        // DIR_INDEX_FILE にアクセスする時の URL のファイル名部を定義する
170        if ($useFilenameDirIndex === true) {
171            // ファイル名を使用する
172            define('DIR_INDEX_PATH', DIR_INDEX_FILE);
173        } else {
174            // ファイル名を使用しない
175            define('DIR_INDEX_PATH', '');
176        }
177    }
178
179    /**
180     * 定数を設定する.
181     *
182     * mtb_constants.php を読み込んで定数を設定する.
183     * キャッシュディレクトリに存在しない場合は, 初期データからコピーする.
184     *
185     * @access protected
186     * @return void
187     */
188    function defineConstants() {
189
190        $errorMessage
191            = '<div style="color: #F00; font-weight: bold; background-color: #FEB; text-align: center">'
192            . CACHE_REALDIR
193            . ' にユーザ書込み権限(777等)を付与して下さい。</div>';
194
195        // 定数を設定
196        if (is_file(CACHE_REALDIR . "mtb_constants.php")) {
197            require_once CACHE_REALDIR . 'mtb_constants.php';
198
199            // キャッシュが無ければ, 初期データからコピー
200        } elseif (is_file(CACHE_REALDIR . "../mtb_constants_init.php")) {
201
202            $mtb_constants = file_get_contents(CACHE_REALDIR . "../mtb_constants_init.php");
203            if (is_writable(CACHE_REALDIR)) {
204                $handle = fopen(CACHE_REALDIR . "mtb_constants.php", 'w');
205                if (!$handle) {
206                    die($errorMessage);
207                }
208                if (fwrite($handle, $mtb_constants) === false) {
209                    die($errorMessage);
210                }
211                fclose($handle);
212
213                require_once CACHE_REALDIR . 'mtb_constants.php';
214            } else {
215                die($errorMessage);
216            }
217        } else {
218            die(CACHE_REALDIR . "../mtb_constants_init.php が存在しません");
219        }
220    }
221
222    /**
223     * 各種キャッシュディレクトリを生成する.
224     *
225     * Smarty キャッシュディレクトリを生成する.
226     *
227     * @access protected
228     * @return void
229     */
230    function createCacheDir() {
231        if (defined("HTML_REALDIR")) {
232            umask(0);
233            if (!file_exists(COMPILE_REALDIR)) {
234                mkdir(COMPILE_REALDIR);
235            }
236
237            if (!file_exists(MOBILE_COMPILE_REALDIR)) {
238                mkdir(MOBILE_COMPILE_REALDIR);
239            }
240
241            if (!file_exists(SMARTPHONE_COMPILE_REALDIR)) {
242                mkdir(SMARTPHONE_COMPILE_REALDIR);
243            }
244
245            if (!file_exists(COMPILE_ADMIN_REALDIR)) {
246                mkdir(COMPILE_ADMIN_REALDIR);
247            }
248        }
249    }
250
251    /**
252     * エラー種別を定数定義
253     *
254     * @access protected
255     * @return void
256     */
257    function defineErrorType() {
258        // LC_Page_Error用
259        /** 指定商品ページがない */
260        define('PRODUCT_NOT_FOUND', 1);
261        /** カート内が空 */
262        define('CART_EMPTY', 2);
263        /** ページ推移エラー */
264        define('PAGE_ERROR', 3);
265        /** 購入処理中のカート商品追加エラー */
266        define('CART_ADD_ERROR', 4);
267        /** 他にも購入手続きが行われた場合 */
268        define('CANCEL_PURCHASE', 5);
269        /** 指定カテゴリページがない */
270        define('CATEGORY_NOT_FOUND', 6);
271        /** ログインに失敗 */
272        define('SITE_LOGIN_ERROR', 7);
273        /** 会員専用ページへのアクセスエラー */
274        define('CUSTOMER_ERROR', 8);
275        /** 購入時の売り切れエラー */
276        define('SOLD_OUT', 9);
277        /** カート内商品の読込エラー */
278        define('CART_NOT_FOUND', 10);
279        /** ポイントの不足 */
280        define('LACK_POINT', 11);
281        /** 仮登録者がログインに失敗 */
282        define('TEMP_LOGIN_ERROR', 12);
283        /** URLエラー */
284        define('URL_ERROR', 13);
285        /** ファイル解凍エラー */
286        define('EXTRACT_ERROR', 14);
287        /** FTPダウンロードエラー */
288        define('FTP_DOWNLOAD_ERROR', 15);
289        /** FTPログインエラー */
290        define('FTP_LOGIN_ERROR', 16);
291        /** FTP接続エラー */
292        define('FTP_CONNECT_ERROR', 17);
293        /** DB作成エラー */
294        define('CREATE_DB_ERROR', 18);
295        /** DBインポートエラー */
296        define('DB_IMPORT_ERROR', 19);
297        /** 設定ファイル存在エラー */
298        define('FILE_NOT_FOUND', 20);
299        /** 書き込みエラー */
300        define('WRITE_FILE_ERROR', 21);
301        /** DB接続エラー */
302        define('DB_CONNECT_ERROR', 22);
303        /** フリーメッセージ */
304        define('FREE_ERROR_MSG', 999);
305
306        // LC_Page_Error_DispError用
307        /** ログイン失敗 */
308        define('LOGIN_ERROR', 1);
309        /** アクセス失敗(タイムアウト等) */
310        define('ACCESS_ERROR', 2);
311        /** アクセス権限違反 */
312        define('AUTH_ERROR', 3);
313        /** 不正な遷移エラー */
314        define('INVALID_MOVE_ERRORR', 4);
315    }
316
317    /**
318     * クォートされた文字列のクォート部分を再帰的に取り除く.
319     *
320     * {@link http://jp2.php.net/manual/ja/function.get-magic-quotes-gpc.php PHP Manual} の記事を参考に実装。
321     * $_REQUEST は後続の処理で再構成されるため、本処理では外している。
322     * この関数は, PHP5以上を対象とし, PHP4 の場合は何もしない.
323     *
324     * @return void
325     */
326    function stripslashesDeepGpc() {
327        // Strip magic quotes from request data.
328        if (get_magic_quotes_gpc()
329            && version_compare(PHP_VERSION, '5.0.0', '>=')) {
330            // Create lamba style unescaping function (for portability)
331            $quotes_sybase = strtolower(ini_get('magic_quotes_sybase'));
332            $unescape_function = (empty($quotes_sybase) || $quotes_sybase === 'off') ? 'stripslashes($value)' : 'str_replace("\'\'","\'",$value)';
333            $stripslashes_deep = create_function('&$value, $fn', '
334                if (is_string($value)) {
335                    $value = ' . $unescape_function . ';
336                } else if (is_array($value)) {
337                    foreach ($value as &$v) $fn($v, $fn);
338                }
339            ');
340
341            // Unescape data
342            $stripslashes_deep($_POST, $stripslashes_deep);
343            $stripslashes_deep($_GET, $stripslashes_deep);
344            $stripslashes_deep($_COOKIE, $stripslashes_deep);
345        }
346    }
347
348    /**
349     * スーパーグローバル変数「$_REQUEST」を再セット
350     *
351     * variables_order ディレクティブによる差を吸収する。
352     *
353     * @access protected
354     * @return void
355     */
356    function resetSuperglobalsRequest() {
357        $_REQUEST = array_merge($_GET, $_POST);
358    }
359}
360?>
Note: See TracBrowser for help on using the repository browser.