source: branches/version-2_5-dev/data/class/SC_Initial.php @ 19850

Revision 19850, 11.6 KB checked in by fukuda, 13 years ago (diff)

#839(arg_separator.outputが"&"以外のとき無限ループする)に対応

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