source: branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_LoginCheck.php @ 19661

Revision 19661, 5.0 KB checked in by nanasess, 13 years ago (diff)

source:branches/camp/camp-2_5-E のマージ

  • スマートフォン対応(#787)
  • プラグイン機能(#494)
  • Property svn:eol-style set to LF
  • 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// {{{ requires
25require_once(CLASS_PATH . "pages/LC_Page.php");
26
27/**
28 * ログインチェック のページクラス.
29 *
30 * TODO frontparts/LC_Page_Frontparts_LoginCheck と抽象化させる
31 * FIXME ロジック見なおし...
32 *
33 * @package Page
34 * @author LOCKON CO.,LTD.
35 * @version $Id$
36 */
37class LC_Page_Mypage_LoginCheck extends LC_Page {
38
39    // }}}
40    // {{{ functions
41
42    /**
43     * Page を初期化する.
44     *
45     * @return void
46     */
47    function init() {
48        parent::init();
49    }
50
51    /**
52     * Page のプロセス.
53     *
54     * @return void
55     */
56    function process() {
57        parent::process();
58        $this->action();
59        $this->sendResponse();
60    }
61
62    /**
63     * Page のAction.
64     *
65     * @return void
66     */
67    function action() {
68        $objCustomer = new SC_Customer();
69        // クッキー管理クラス
70        $objCookie = new SC_Cookie(COOKIE_EXPIRE);
71        // パラメータ管理クラス
72        $this->objFormParam = new SC_FormParam();
73        // パラメータ情報の初期化
74        $this->lfInitParam();
75        //パスワード・Eメールにある空白をトリム
76        $_POST["mypage_login_email"] = trim($_POST["mypage_login_email"]);
77        $_POST["mypage_login_pass"] = trim($_POST["mypage_login_pass"]);  //認証用
78        $_POST["mypage_login_pass1"] = trim($_POST["mypage_login_pass"]); //最小桁数比較用
79        $_POST["mypage_login_pass2"] = trim($_POST["mypage_login_pass"]); //最大桁数比較用
80        // POST値の取得
81        $this->objFormParam->setParam($_POST);
82
83        if (!isset($_POST['mode'])) $_POST['mode'] = "";
84
85        switch($_POST['mode']) {
86        case 'login':
87            $this->objFormParam->toLower('mypage_login_email');
88            $arrErr = $this->objFormParam->checkError();
89
90            // エラーの場合はエラー画面に遷移
91            if (count($arrErr) > 0) {
92                SC_Utils_Ex::sfDispSiteError(TEMP_LOGIN_ERROR);
93            }
94            $arrForm =  $this->objFormParam->getHashArray();
95            // クッキー保存判定
96            if ($arrForm['mypage_login_memory'] == "1" && $arrForm['mypage_login_email'] != "") {
97                $objCookie->setCookie('login_email', $_POST['mypage_login_email']);
98            } else {
99                $objCookie->setCookie('login_email', '');
100            }
101
102            if($objCustomer->getCustomerDataFromEmailPass($arrForm['mypage_login_pass'], $arrForm['mypage_login_email'], true)) {
103                $this->objDisplay->redirect($this->getLocation(DIR_INDEX_URL, array(), true));
104                exit;
105            } else {
106                $arrForm['mypage_login_email'] = strtolower($arrForm['mypage_login_email']);
107                $objQuery = new SC_Query;
108                $where = "(email = ? OR email_mobile = ?) AND status = 1 AND del_flg = 0";
109                $ret = $objQuery->count("dtb_customer", $where, array($arrForm['mypage_login_email'], $arrForm['mypage_login_email']));
110
111                if($ret > 0) {
112                    SC_Utils_Ex::sfDispSiteError(TEMP_LOGIN_ERROR);
113                } else {
114                    SC_Utils_Ex::sfDispSiteError(SITE_LOGIN_ERROR);
115                }
116            }
117            break;
118        }
119    }
120
121    /**
122     * デストラクタ.
123     *
124     * @return void
125     */
126    function destroy() {
127        parent::destroy();
128    }
129
130    /* パラメータ情報の初期化 */
131    function lfInitParam() {
132        $this->objFormParam->addParam("記憶する", "mypage_login_memory", INT_LEN, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK"));
133        $this->objFormParam->addParam("メールアドレス", "mypage_login_email", MTEXT_LEN, "a", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "EMAIL_CHECK", "NO_SPTAB" ,"EMAIL_CHAR_CHECK"));
134        $this->objFormParam->addParam("パスワード", "mypage_login_pass", PASSWORD_LEN1, "KVa", array("EXIST_CHECK"));
135        $this->objFormParam->addParam("パスワード", "mypage_login_pass1", PASSWORD_LEN1, "KVa", array("EXIST_CHECK", "MIN_LENGTH_CHECK"));
136        $this->objFormParam->addParam("パスワード", "mypage_login_pass2", PASSWORD_LEN2, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"));
137    }
138
139}
140?>
Note: See TracBrowser for help on using the repository browser.