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

Revision 22805, 10.7 KB checked in by m_uehara, 11 years ago (diff)

#2171 カートの値取得処理のモバイル対応

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