source: branches/version-2_12-dev/data/class/SC_Initial.php @ 21420

Revision 21420, 12.6 KB checked in by Seasoft, 12 years ago (diff)

#1613 (ソース整形・ソースコメントの改善)

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