source: branches/version-2_13-dev/data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php @ 23057

Revision 23057, 6.3 KB checked in by Seasoft, 11 years ago (diff)

#2327 (SC_Helper_PageLayout#sfGetPageLayout ページ情報が取得できない場合の動作が不定)

  • 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_Mypage_DeliveryAddr extends LC_Page_Ex
34{
35    /**
36     * Page を初期化する.
37     *
38     * @return void
39     */
40    function init()
41    {
42        $this->skip_load_page_layout = true;
43        parent::init();
44        $this->tpl_title    = 'お届け先の追加・変更';
45        $masterData         = new SC_DB_MasterData_Ex();
46        $this->arrPref      = $masterData->getMasterData('mtb_pref');
47        $this->arrCountry   = $masterData->getMasterData('mtb_country');
48        $this->httpCacheControl('nocache');
49        $this->validUrl = array(MYPAGE_DELIVADDR_URLPATH,
50                                DELIV_URLPATH,
51                                MULTIPLE_URLPATH);
52    }
53
54    /**
55     * Page のプロセス.
56     *
57     * @return void
58     */
59    function process()
60    {
61        parent::process();
62        $this->action();
63        $this->sendResponse();
64    }
65
66    /**
67     * Page のAction.
68     *
69     * @return void
70     */
71    function action()
72    {
73        $objCustomer = new SC_Customer_Ex();
74        $objAddress  = new SC_Helper_Address_Ex();
75        $ParentPage  = MYPAGE_DELIVADDR_URLPATH;
76
77        // GETでページを指定されている場合には指定ページに戻す
78        if (isset($_GET['page'])) {
79            $ParentPage = htmlspecialchars($_GET['page'], ENT_QUOTES);
80        } else if (isset($_POST['ParentPage'])) {
81            $ParentPage = htmlspecialchars($_POST['ParentPage'], ENT_QUOTES);
82        }
83        $this->ParentPage = $ParentPage;
84
85        /*
86         * ログイン判定 及び 退会判定
87         * 未ログインでも, 複数配送設定ページからのアクセスの場合は表示する
88         *
89         * TODO 購入遷移とMyPageで別クラスにすべき
90         */
91        if (!$objCustomer->isLoginSuccess(true) && $ParentPage != MULTIPLE_URLPATH) {
92            $this->tpl_onload = "fnUpdateParent('". $this->getLocation($_POST['ParentPage']) ."'); window.close();";
93        }
94
95        // other_deliv_id のあるなしで追加か編集か判定しているらしい
96        $_SESSION['other_deliv_id'] = $_REQUEST['other_deliv_id'];
97
98        // パラメーター管理クラス,パラメーター情報の初期化
99        $objFormParam   = new SC_FormParam_Ex();
100        $objAddress->setFormParam($objFormParam);
101        $objFormParam->setParam($_POST);
102
103        switch ($this->getMode()) {
104            // 入力は必ずedit
105            case 'edit':
106                $this->arrErr = $objAddress->errorCheck($objFormParam);
107                // 入力エラーなし
108                if (empty($this->arrErr)) {
109                    // TODO ここでやるべきではない
110                    if (in_array($_POST['ParentPage'], $this->validUrl)) {
111                        $this->tpl_onload = "fnUpdateParent('". $this->getLocation($_POST['ParentPage']) ."'); window.close();";
112                    } else {
113                        SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR);
114                    }
115
116                    if ($objCustomer->isLoginSuccess(true)) {
117                        $this->lfRegistData($objAddress, $objFormParam, $objCustomer->getValue('customer_id'));
118                    } else {
119                        $this->lfRegistDataNonMember($objFormParam);
120                    }
121
122                    if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_MOBILE) {
123                        // モバイルの場合、元のページに遷移
124                        SC_Response_Ex::sendRedirect($this->getLocation($_POST['ParentPage']));
125                        SC_Response_Ex::actionExit();
126                    }
127                }
128                break;
129            case 'multiple':
130                // 複数配送先用
131                break;
132            default :
133
134                if ($_GET['other_deliv_id'] != '') {
135                    $arrOtherDeliv = $objAddress->getAddress($_SESSION['other_deliv_id']);
136
137                    //不正アクセス判定
138                    if (!$objCustomer->isLoginSuccess(true) || !$arrOtherDeliv) {
139                        SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR);
140                    }
141
142                    //別のお届け先情報取得
143                    $objFormParam->setParam($arrOtherDeliv);
144                }
145                break;
146        }
147
148        $this->arrForm = $objFormParam->getFormParamList();
149        if (SC_Display_Ex::detectDevice() === DEVICE_TYPE_MOBILE) {
150            $this->tpl_mainpage = 'mypage/delivery_addr.tpl';
151        } else {
152            $this->setTemplate('mypage/delivery_addr.tpl');
153        }
154
155    }
156
157    /* 登録実行 */
158    function lfRegistData($objAddress, $objFormParam, $customer_id)
159    {
160        $arrRet     = $objFormParam->getHashArray();
161        $sqlval     = $objFormParam->getDbArray();
162
163        $sqlval['other_deliv_id'] = $arrRet['other_deliv_id'];
164        $sqlval['customer_id'] = $customer_id;
165
166        $objAddress->registAddress($sqlval);
167    }
168
169    function lfRegistDataNonMember($objFormParam)
170    {
171        $arrRegistColumn = $objFormParam->getDbArray();
172        foreach ($arrRegistColumn as $key => $val) {
173            $arrRegist['shipping_' . $key ] = $val;
174        }
175        if (count($_SESSION['shipping']) >= DELIV_ADDR_MAX) {
176            SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, '別のお届け先最大登録数に達しています。');
177        } else {
178            $_SESSION['shipping'][] = $arrRegist;
179        }
180    }
181}
Note: See TracBrowser for help on using the repository browser.