source: branches/version-2_13-dev/data/class/pages/cart/LC_Page_Cart.php @ 22857

Revision 22857, 10.7 KB checked in by Seasoft, 11 years ago (diff)

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。
  • 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
24require_once CLASS_EX_REALDIR . 'page_extends/LC_Page_Ex.php';
25
26/**
27 * カート のページクラス.
28 *
29 * @package Page
30 * @author LOCKON CO.,LTD.
31 * @version $Id$
32 */
33class LC_Page_Cart extends LC_Page_Ex
34{
35    /** 商品規格情報の配列 */
36    var $arrData;
37
38    /** 動作モード */
39    var $mode;
40
41    /** メッセージ */
42    public $tpl_message = '';
43
44    /**
45     * Page を初期化する.
46     *
47     * @return void
48     */
49    function init()
50    {
51        parent::init();
52        $this->tpl_title = '現在のカゴの中';
53        $masterData = new SC_DB_MasterData_Ex();
54        $this->arrProductType = $masterData->getMasterData('mtb_product_type');
55    }
56
57    /**
58     * Page のプロセス.
59     *
60     * @return void
61     */
62    function process()
63    {
64        parent::process();
65        $this->action();
66        $this->sendResponse();
67    }
68
69    /**
70     * Page のアクション.
71     *
72     * @return void
73     */
74    function action()
75    {
76        $objCartSess = new SC_CartSession_Ex();
77        $objSiteSess = new SC_SiteSession_Ex();
78        $objCustomer = new SC_Customer_Ex();
79
80        $objFormParam = $this->lfInitParam($_POST);
81        $this->mode = $this->getMode();
82
83        // モバイル対応
84        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) {
85            if (isset($_GET['cart_no'])) {
86                $objFormParam->setValue('cart_no', $_GET['cart_no']);
87            }
88            if (isset($_GET['cartKey'])) {
89                $objFormParam->setValue('cartKey', $_GET['cartKey']);
90            }
91        }
92
93        $this->cartKeys = $objCartSess->getKeys();
94        foreach ($this->cartKeys as $key) {
95            // 商品購入中にカート内容が変更された。
96            if ($objCartSess->getCancelPurchase($key)) {
97                $this->tpl_message .= "商品購入中にカート内容が変更されましたので、お手数ですが購入手続きをやり直して下さい。\n";
98            }
99        }
100
101        $cart_no = $objFormParam->getValue('cart_no');
102        $cartKey = $objFormParam->getValue('cartKey');
103
104        // エラーチェック
105        $arrError = $objFormParam->checkError();
106        if(isset($arrError) && !empty($arrError)) {
107            SC_Utils_Ex::sfDispSiteError(CART_NOT_FOUND);
108            SC_Response_Ex::actionExit();
109        }
110
111        $objFormParam4OpenCategoryTree =
112            $this->lfInitParam4OpenCategoryTree($_REQUEST);
113        if ($objFormParam4OpenCategoryTree->getValue('product_id')) {
114            $arrQueryString = array(
115                'product_id' => $objFormParam4OpenCategoryTree->getValue(
116                    'product_id'),
117            );
118        } else {
119            $arrQueryString = array(
120                'category_id' => $objFormParam4OpenCategoryTree->getValue(
121                    'category_id'),
122            );
123        }
124
125        switch ($this->mode) {
126            case 'confirm':
127                // カート内情報の取得
128                $cartList = $objCartSess->getCartList($cartKey);
129                // カート商品が1件以上存在する場合
130                if (count($cartList) > 0) {
131                    // カートを購入モードに設定
132                    $this->lfSetCurrentCart($objSiteSess, $objCartSess, $cartKey);
133
134                    // 購入ページへ
135                    SC_Response_Ex::sendRedirect(SHOPPING_URL);
136                    SC_Response_Ex::actionExit();
137                }
138                break;
139            case 'up'://1個追加
140                $objCartSess->upQuantity($cart_no, $cartKey);
141
142                SC_Response_Ex::reload($arrQueryString, true);
143                SC_Response_Ex::actionExit();
144                break;
145            case 'down'://1個減らす
146                $objCartSess->downQuantity($cart_no, $cartKey);
147
148                SC_Response_Ex::reload($arrQueryString, true);
149                SC_Response_Ex::actionExit();
150                break;
151            case 'setQuantity'://数量変更
152                $objCartSess->setQuantity($objFormParam->getValue('quantity'), $cart_no, $cartKey);
153
154                SC_Response_Ex::reload($arrQueryString, true);
155                SC_Response_Ex::actionExit();
156                break;
157            case 'delete'://カートから削除
158                $objCartSess->delProduct($cart_no, $cartKey);
159
160                SC_Response_Ex::reload($arrQueryString, true);
161                SC_Response_Ex::actionExit();
162                break;
163            default:
164                break;
165        }
166        $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData();
167        $totalIncTax = 0;
168        foreach ($this->cartKeys as $key) {
169            // カート集計処理
170            $this->tpl_message .= $objCartSess->checkProducts($key);
171            $this->tpl_total_inctax[$key] = $objCartSess->getAllProductsTotal($key);
172            $totalIncTax += $this->tpl_total_inctax[$key];
173            $this->tpl_total_tax[$key] = $objCartSess->getAllProductsTax($key);
174            // ポイント合計
175            $this->tpl_total_point[$key] = $objCartSess->getAllProductsPoint($key);
176
177            $this->arrData[$key] = $objCartSess->calculate($key, $objCustomer);
178
179            // 送料無料チェック
180            $this->arrData[$key]['is_deliv_free'] = $objCartSess->isDelivFree($key);
181
182            // 送料無料までの金額を計算
183            $this->tpl_deliv_free[$key] = $this->arrInfo['free_rule'] - $this->tpl_total_inctax[$key];
184        }
185
186        //商品の合計金額をセット
187        $this->tpl_all_total_inctax = $totalIncTax;
188
189        $this->tpl_category_id =
190            $objFormParam4OpenCategoryTree->getValue('category_id');
191        $this->tpl_product_id =
192            $objFormParam4OpenCategoryTree->getValue('product_id');
193
194        // ログイン判定
195        if ($objCustomer->isLoginSuccess(true)) {
196            $this->tpl_login = true;
197            $this->tpl_user_point = $objCustomer->getValue('point');
198            $this->tpl_name = $objCustomer->getValue('name01');
199        }
200
201        // 前頁のURLを取得
202        // TODO: SC_CartSession::setPrevURL()利用不可。
203        $this->lfGetCartPrevUrl($_SESSION,$_SERVER['HTTP_REFERER']);
204        $this->tpl_prev_url = (isset($_SESSION['cart_prev_url'])) ? $_SESSION['cart_prev_url'] : '';
205
206        // すべてのカートの内容を取得する
207        $this->cartItems = $objCartSess->getAllCartList();
208    }
209
210    /**
211     * デストラクタ.
212     *
213     * @return void
214     */
215    function destroy()
216    {
217        parent::destroy();
218    }
219
220    /**
221     * ユーザ入力値の処理
222     *
223     * @return object
224     */
225    function lfInitParam($arrRequest)
226    {
227        $objFormParam = new SC_FormParam_Ex();
228        $objFormParam->addParam('カートキー', 'cartKey', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK'));
229        $objFormParam->addParam('カートナンバー', 'cart_no', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
230        // スマートフォン版での数量変更用
231        $objFormParam->addParam('数量', 'quantity', INT_LEN, 'n', array('ZERO_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK'));
232        // 値の取得
233        $objFormParam->setParam($arrRequest);
234        // 入力値の変換
235        $objFormParam->convParam();
236
237        return $objFormParam;
238    }
239
240    /**
241     * PC版での開いているカテゴリーツリーの維持用の入力値
242     *
243     * @return object
244     */
245    function lfInitParam4OpenCategoryTree($arrRequest)
246    {
247        $objFormParam = new SC_FormParam_Ex();
248
249        $objFormParam->addParam('カテゴリID', 'category_id', INT_LEN, 'n',
250            array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
251        $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n',
252            array('NUM_CHECK', 'MAX_LENGTH_CHECK'));
253
254        // 値の取得
255        $objFormParam->setParam($arrRequest);
256        // 入力値の変換
257        $objFormParam->convParam();
258
259        return $objFormParam;
260    }
261
262    /**
263     * order_temp_id の更新
264     *
265     * @return
266     */
267    function lfUpdateOrderTempid($pre_uniqid,$uniqid)
268    {
269        $sqlval['order_temp_id'] = $uniqid;
270        $where = 'order_temp_id = ?';
271        $objQuery =& SC_Query_Ex::getSingletonInstance();
272        $res = $objQuery->update('dtb_order_temp', $sqlval, $where, array($pre_uniqid));
273        if ($res != 1) {
274            return false;
275        }
276
277        return true;
278    }
279
280    /**
281     * 前頁のURLを取得
282     *
283     * @return void
284     */
285    function lfGetCartPrevUrl(&$session,$referer)
286    {
287        if (!preg_match('/cart/', $referer)) {
288            if (!empty($session['cart_referer_url'])) {
289                $session['cart_prev_url'] = $session['cart_referer_url'];
290                unset($session['cart_referer_url']);
291            } else {
292                if (preg_match('/entry/', $referer)) {
293                    $session['cart_prev_url'] = HTTPS_URL . 'entry/kiyaku.php';
294                } else {
295                    $session['cart_prev_url'] = $referer;
296                }
297            }
298        }
299        // 妥当性チェック
300        if (!SC_Utils_Ex::sfIsInternalDomain($session['cart_prev_url'])) {
301            $session['cart_prev_url'] = '';
302        }
303    }
304
305    /**
306     * カートを購入モードに設定
307     *
308     * @return void
309     */
310    function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey)
311    {
312        // 正常に登録されたことを記録しておく
313        $objSiteSess->setRegistFlag();
314        $pre_uniqid = $objSiteSess->getUniqId();
315        // 注文一時IDの発行
316        $objSiteSess->setUniqId();
317        $uniqid = $objSiteSess->getUniqId();
318        // エラーリトライなどで既にuniqidが存在する場合は、設定を引き継ぐ
319        if ($pre_uniqid != '') {
320            $this->lfUpdateOrderTempid($pre_uniqid,$uniqid);
321        }
322        // カートを購入モードに設定
323        $objCartSess->registerKey($cartKey);
324        $objCartSess->saveCurrentCart($uniqid, $cartKey);
325    }
326}
Note: See TracBrowser for help on using the repository browser.