source: branches/version-2_11-dev/data/class/pages/products/LC_Page_Products_List.php @ 21256

Revision 21256, 19.6 KB checked in by Seasoft, 13 years ago (diff)

#1484 (SC_Product#lists の第2引数($arrVal)が実質的に無効)
#1449 (不要な関数・処理の整理)
#1421 (Fix typo.)
#1463 (コーディング規則に従っていない)

  • 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// {{{ 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_Products_List extends LC_Page_Ex {
35
36    // {{{ properties
37
38    /** テンプレートクラス名1 */
39    var $tpl_class_name1 = array();
40
41    /** テンプレートクラス名2 */
42    var $tpl_class_name2 = array();
43
44    /** JavaScript テンプレート */
45    var $tpl_javascript;
46
47    var $orderby;
48
49    var $mode;
50
51    /** 検索条件(内部データ) */
52    var $arrSearchData = array();
53
54    /** 検索条件(表示用) */
55    var $arrSearch = array();
56
57    var $tpl_subtitle = '';
58
59    /** ランダム文字列 **/
60    var $tpl_rnd = '';
61
62    // }}}
63    // {{{ functions
64
65    /**
66     * Page を初期化する.
67     *
68     * @return void
69     */
70    function init() {
71        parent::init();
72
73        $masterData                 = new SC_DB_MasterData_Ex();
74        $this->arrSTATUS            = $masterData->getMasterData("mtb_status");
75        $this->arrSTATUS_IMAGE      = $masterData->getMasterData("mtb_status_image");
76        $this->arrDELIVERYDATE      = $masterData->getMasterData("mtb_delivery_date");
77        $this->arrPRODUCTLISTMAX    = $masterData->getMasterData("mtb_product_list_max");
78    }
79
80    /**
81     * Page のプロセス.
82     *
83     * @return void
84     */
85    function process() {
86        parent::process();
87        $this->action();
88        $this->sendResponse();
89    }
90
91    /**
92     * Page のAction.
93     *
94     * @return void
95     */
96    function action() {
97        $objQuery   =& SC_Query_Ex::getSingletonInstance();
98        $objProduct = new SC_Product_Ex();
99
100        $this->arrForm = $_REQUEST;//時間が無いのでコレで勘弁してください。 tao_s
101        //modeの取得
102        $this->mode = $this->getMode();
103
104        //表示条件の取得
105        $this->arrSearchData = array(
106            'category_id'   => $this->lfGetCategoryId(intval($this->arrForm['category_id'])),
107            'maker_id'      => intval($this->arrForm['maker_id']),
108            'name'          => $this->arrForm['name']
109        );
110        $this->orderby = $this->arrForm['orderby'];
111
112        //ページング設定
113        $this->tpl_pageno   = $this->arrForm['pageno'];
114        $this->disp_number  = $this->lfGetDisplayNum($this->arrForm['disp_number']);
115
116        // 画面に表示するサブタイトルの設定
117        $this->tpl_subtitle = $this->lfGetPageTitle($this->mode, $this->arrSearchData['category_id']);
118
119        // 画面に表示する検索条件を設定
120        $this->arrSearch    = $this->lfGetSearchConditionDisp($this->arrSearchData);
121
122        // 商品一覧データの取得
123        $arrSearchCondition = $this->lfGetSearchCondition($this->arrSearchData);
124        $this->tpl_linemax  = $this->lfGetProductAllNum($arrSearchCondition);
125        $urlParam           = "category_id={$this->arrSearchData['category_id']}&pageno=#page#";
126        $this->objNavi      = new SC_PageNavi_Ex($this->tpl_pageno, $this->tpl_linemax, $this->disp_number, 'fnNaviPage', NAVI_PMAX, $urlParam, SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE);
127        $this->arrProducts  = $this->lfGetProductsList($arrSearchCondition, $this->disp_number, $this->objNavi->start_row, $this->tpl_linemax, $objProduct);
128
129        switch($this->getMode()){
130
131            case "json":
132                   $this->arrProducts = $this->setStatusDataTo($this->arrProducts, $this->arrSTATUS, $this->arrSTATUS_IMAGE);
133                   $this->arrProducts = $objProduct->setPriceTaxTo($this->arrProducts);
134
135                   // 一覧メイン画像の指定が無い商品のための処理
136                   foreach ($this->arrProducts as $key=>$val) {
137                       $this->arrProducts[$key]['main_list_image'] = SC_Utils_Ex::sfNoImageMainList($val['main_list_image']);
138                   }
139
140                   echo SC_Utils_Ex::jsonEncode($this->arrProducts);
141                   exit;
142               break;
143
144            default:
145
146                //商品一覧の表示処理
147                $strnavi            = $this->objNavi->strnavi;
148                // 表示文字列
149                $this->tpl_strnavi  = empty($strnavi) ? "&nbsp;" : $strnavi;
150
151                // 規格1クラス名
152                $this->tpl_class_name1  = $objProduct->className1;
153
154                // 規格2クラス名
155                $this->tpl_class_name2  = $objProduct->className2;
156
157                // 規格1
158                $this->arrClassCat1     = $objProduct->classCats1;
159
160                // 規格1が設定されている
161                $this->tpl_classcat_find1 = $objProduct->classCat1_find;
162                // 規格2が設定されている
163                $this->tpl_classcat_find2 = $objProduct->classCat2_find;
164
165                $this->tpl_stock_find       = $objProduct->stock_find;
166                $this->tpl_product_class_id = $objProduct->product_class_id;
167                $this->tpl_product_type     = $objProduct->product_type;
168
169                // 商品ステータスを取得
170                $this->productStatus = $this->arrProducts['productStatus'];
171                unset($this->arrProducts['productStatus']);
172                $this->tpl_javascript .= 'var productsClassCategories = ' . SC_Utils_Ex::jsonEncode($objProduct->classCategories) . ';';
173                //onloadスクリプトを設定
174                foreach ($this->arrProducts as $arrProduct) {
175                    $js_fnOnLoad .= "fnSetClassCategories(document.product_form{$arrProduct['product_id']});";
176                }
177
178                //カート処理
179                $target_product_id = intval($this->arrForm['product_id']);
180                if ( $target_product_id > 0) {
181                    // 商品IDの正当性チェック
182                    if (!SC_Utils_Ex::sfIsInt($this->arrForm['product_id'])
183                        || !SC_Helper_DB_Ex::sfIsRecord("dtb_products", "product_id", $this->arrForm['product_id'], "del_flg = 0 AND status = 1")) {
184                        SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND);
185                    }
186
187                    // 入力内容のチェック
188                    $arrErr = $this->lfCheckError($target_product_id, $this->arrForm, $this->tpl_classcat_find1, $this->tpl_classcat_find2);
189                    if (empty($arrErr)) {
190                        $this->lfAddCart($this->arrForm, $_SERVER['HTTP_REFERER']);
191                        SC_Response_Ex::sendRedirect(CART_URLPATH);
192                        exit;
193                    }
194                    $js_fnOnLoad .= $this->lfSetSelectedData($this->arrProducts, $this->arrForm, $arrErr, $target_product_id);
195                } else {
196                    // カート「戻るボタン」用に保持
197                    $netURL = new Net_URL();
198                    //該当メソッドが無いため、$_SESSIONに直接セット
199                    $_SESSION['cart_referer_url'] = $netURL->getURL();
200                }
201
202                $this->tpl_javascript   .= 'function fnOnLoad(){' . $js_fnOnLoad . '}';
203                $this->tpl_onload       .= 'fnOnLoad(); ';
204                break;
205        }
206
207        $this->tpl_rnd          = SC_Utils_Ex::sfGetRandomString(3);
208
209    }
210
211    /**
212     * デストラクタ.
213     *
214     * @return void
215     */
216    function destroy() {
217        parent::destroy();
218    }
219
220    /**
221     * カテゴリIDの取得
222     *
223     * @return integer カテゴリID
224     */
225    function lfGetCategoryId($category_id) {
226
227        // 指定なしの場合、0 を返す
228        if (empty($category_id)) return 0;
229
230        // 正当性チェック
231        if (!SC_Utils_Ex::sfIsInt($category_id)
232            || SC_Utils_Ex::sfIsZeroFilling($category_id)
233            || !SC_Helper_DB_Ex::sfIsRecord('dtb_category', 'category_id', (array)$category_id, 'del_flg = 0')
234            ) {
235            SC_Utils_Ex::sfDispSiteError(CATEGORY_NOT_FOUND);
236        }
237
238        // 指定されたカテゴリIDを元に正しいカテゴリIDを取得する。
239        $arrCategory_id = SC_Helper_DB_Ex::sfGetCategoryId('', $category_id);
240
241        if (empty($arrCategory_id)) {
242            SC_Utils_Ex::sfDispSiteError(CATEGORY_NOT_FOUND);
243        }
244
245        return $arrCategory_id[0];
246    }
247
248    /* 商品一覧の表示 */
249    function lfGetProductsList($searchCondition, $disp_number, $startno, $linemax, &$objProduct) {
250
251        $arrval_order = array();
252
253        $objQuery =& SC_Query_Ex::getSingletonInstance();
254        // 表示順序
255        switch ($this->orderby) {
256            // 販売価格が安い順
257            case 'price':
258                $objProduct->setProductsOrder('price02', 'dtb_products_class', 'ASC');
259                break;
260
261            // 新着順
262            case 'date':
263                $objProduct->setProductsOrder('create_date', 'dtb_products', 'DESC');
264                break;
265
266            default:
267                if (strlen($searchCondition["where_category"]) >= 1) {
268                    $dtb_product_categories = "(SELECT * FROM dtb_product_categories WHERE ".$searchCondition["where_category"].")";
269                    $arrval_order           = array_merge($searchCondition['arrvalCategory'], $searchCondition['arrvalCategory']);
270                } else {
271                    $dtb_product_categories = 'dtb_product_categories';
272                }
273                $order = <<< __EOS__
274                    (
275                        SELECT
276                             T3.rank
277                        FROM
278                            $dtb_product_categories T2
279                            JOIN dtb_category T3
280                                USING (category_id)
281                        WHERE T2.product_id = alldtl.product_id
282                        ORDER BY T3.rank DESC, T2.rank DESC
283                        LIMIT 1
284                    ) DESC
285                    ,(
286                        SELECT
287                            T2.rank
288                        FROM
289                            $dtb_product_categories T2
290                            JOIN dtb_category T3
291                                USING (category_id)
292                        WHERE T2.product_id = alldtl.product_id
293                        ORDER BY T3.rank DESC, T2.rank DESC
294                        LIMIT 1
295                    ) DESC
296                    ,product_id
297__EOS__;
298                    $objQuery->setOrder($order);
299                break;
300        }
301        // 取得範囲の指定(開始行番号、行数のセット)
302        $objQuery->setLimitOffset($disp_number, $startno);
303        $objQuery->setWhere($searchCondition['where']);
304
305         // 表示すべきIDとそのIDの並び順を一気に取得
306        $arrProductId = $objProduct->findProductIdsOrder($objQuery, array_merge($searchCondition['arrval'], $arrval_order));
307
308        $objQuery =& SC_Query_Ex::getSingletonInstance();
309        $arrProducts = $objProduct->getListByProductIds($objQuery, $arrProductId);
310
311        //取得している並び順で並び替え
312        $arrProducts2 = array();
313        foreach($arrProducts as $item) {
314            $arrProducts2[ $item['product_id'] ] = $item;
315        }
316        $arrProducts = array();
317        foreach($arrProductId as $product_id) {
318            $arrProducts[] = $arrProducts2[$product_id];
319        }
320
321        // 規格を設定
322        $objProduct->setProductsClassByProductIds($arrProductId);
323        $arrProducts += array('productStatus' => $objProduct->getProductStatus($arrProductId));
324        return $arrProducts;
325    }
326
327    /* 入力内容のチェック */
328    function lfCheckError($product_id, &$arrForm, $tpl_classcat_find1, $tpl_classcat_find2) {
329
330        // 入力データを渡す。
331        $objErr = new SC_CheckError_Ex($arrForm);
332
333        // 複数項目チェック
334        if ($tpl_classcat_find1[$product_id]) {
335            $objErr->doFunc(array("規格1", 'classcategory_id1', INT_LEN), array("EXIST_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK"));
336        }
337        if ($tpl_classcat_find2[$product_id]) {
338            $objErr->doFunc(array("規格2", 'classcategory_id2', INT_LEN), array("EXIST_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK"));
339        }
340
341        $objErr->doFunc(array("商品規格ID", 'product_class_id', INT_LEN), array("EXIST_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK"));
342        $objErr->doFunc(array("数量", 'quantity', INT_LEN), array("EXIST_CHECK", "ZERO_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK"));
343
344        return $objErr->arrErr;
345    }
346
347    /**
348     * パラメーターの読み込み
349     *
350     * @return void
351     */
352    function lfGetDisplayNum($display_number) {
353        // 表示件数
354        return (SC_Utils_Ex::sfIsInt($display_number))
355            ? $display_number
356            : current(array_keys($this->arrPRODUCTLISTMAX));
357    }
358
359    /**
360     * ページタイトルの設定
361     *
362     * @return str
363     */
364    function lfGetPageTitle($mode, $category_id = 0){
365        if ($mode == 'search') {
366            return "検索結果";
367        } elseif ($category_id == 0) {
368            return "全商品";
369        } else {
370            $arrCat = SC_Helper_DB_Ex::sfGetCat($category_id);
371            return $arrCat['name'];
372        }
373    }
374
375    /**
376     * 表示用検索条件の設定
377     *
378     * @return array
379     */
380    function lfGetSearchConditionDisp($arrSearchData){
381        $objQuery   =& SC_Query_Ex::getSingletonInstance();
382        $arrSearch  = array('category' => '指定なし', 'maker' => '指定なし', 'name' => '指定なし');
383        // カテゴリー検索条件
384        if ($arrSearchData['category_id'] > 0) {
385            $arrSearch['category']  = $objQuery->get('category_name', 'dtb_category', 'category_id = ?', array($arrSearchData['category_id']));
386        }
387
388        // メーカー検索条件
389        if (strlen($arrSearchData['maker_id']) > 0) {
390            $arrSearch['maker']     = $objQuery->get('name', 'dtb_maker', 'maker_id = ?', array($arrSearchData['maker_id']));
391        }
392
393        // 商品名検索条件
394        if (strlen($arrSearchData['name']) > 0) {
395            $arrSearch['name']      = $arrSearchData['name'];
396        }
397        return $arrSearch;
398    }
399
400    /**
401     * 該当件数の取得
402     *
403     * @return int
404     */
405    function lfGetProductAllNum($searchCondition){
406        // 検索結果対象となる商品の数を取得
407        $objQuery   =& SC_Query_Ex::getSingletonInstance();
408        $objQuery->setWhere($searchCondition['where']);
409        $objProduct = new SC_Product_Ex();
410        return $objProduct->findProductCount($objQuery, $searchCondition['arrval']);
411    }
412
413    /**
414     * 検索条件のwhere文とかを取得
415     *
416     * @return array
417     */
418    function lfGetSearchCondition($arrSearchData){
419        $searchCondition = array(
420            'where'             => "",
421            'arrval'            => array(),
422            "where_category"    => "",
423            'arrvalCategory'    => array()
424        );
425
426        // カテゴリからのWHERE文字列取得
427        if ($arrSearchData["category_id"] != 0) {
428            list($searchCondition["where_category"], $searchCondition['arrvalCategory']) = SC_Helper_DB_Ex::sfGetCatWhere($arrSearchData["category_id"]);
429        }
430        // ▼対象商品IDの抽出
431        // 商品検索条件の作成(未削除、表示)
432        $searchCondition['where'] = "alldtl.del_flg = 0 AND alldtl.status = 1 ";
433
434        // 在庫無し商品の非表示
435        if (NOSTOCK_HIDDEN === true) {
436            $searchCondition['where'] .= ' AND (stock >= 1 OR stock_unlimited = 1)';
437        }
438
439        if (strlen($searchCondition["where_category"]) >= 1) {
440            $searchCondition['where'] .= " AND T2.".$searchCondition["where_category"];
441            $searchCondition['arrval'] = array_merge($searchCondition['arrval'], $searchCondition['arrvalCategory']);
442        }
443
444        // 商品名をwhere文に
445        $name = $arrSearchData['name'];
446        $name = str_replace(",", "", $name);
447        // 全角スペースを半角スペースに変換
448        $name = str_replace(' ', ' ', $name);
449        // スペースでキーワードを分割
450        $names = preg_split("/ +/", $name);
451        // 分割したキーワードを一つずつwhere文に追加
452        foreach ($names as $val) {
453            if ( strlen($val) > 0 ) {
454                $searchCondition['where']    .= " AND ( alldtl.name ILIKE ? OR alldtl.comment3 ILIKE ?) ";
455                $searchCondition['arrval'][]  = "%$val%";
456                $searchCondition['arrval'][]  = "%$val%";
457            }
458        }
459
460        // メーカーらのWHERE文字列取得
461        if ($arrSearchData['maker_id']) {
462            $searchCondition['where']   .= " AND alldtl.maker_id = ? ";
463            $searchCondition['arrval'][] = $arrSearchData['maker_id'];
464        }
465        return $searchCondition;
466    }
467
468    /**
469     * カートに入れる商品情報にエラーがあったら戻す
470     *
471     * @return str
472     */
473    function lfSetSelectedData(&$arrProducts, $arrForm, $arrErr, $product_id){
474        $js_fnOnLoad = "";
475        foreach (array_keys($arrProducts) as $key) {
476            if ($arrProducts[$key]['product_id'] == $product_id) {
477
478                $arrProducts[$key]['product_class_id']  = $arrForm['product_class_id'];
479                $arrProducts[$key]['classcategory_id1'] = $arrForm['classcategory_id1'];
480                $arrProducts[$key]['classcategory_id2'] = $arrForm['classcategory_id2'];
481                $arrProducts[$key]['quantity']          = $arrForm['quantity'];
482                $arrProducts[$key]['arrErr']            = $arrErr;
483                $js_fnOnLoad .= "fnSetClassCategories(document.product_form{$arrProducts[$key]['product_id']}, '{$arrForm['classcategory_id2']}');";
484            }
485        }
486        return $js_fnOnLoad;
487    }
488
489    /**
490     * カートに商品を追加
491     *
492     * @return void
493     */
494    function lfAddCart($arrForm, $referer){
495        $product_class_id = $arrForm['product_class_id'];
496        $objCartSess = new SC_CartSession_Ex();
497        $objCartSess->addProduct($product_class_id, $arrForm['quantity']);
498    }
499
500    /**
501     * 商品情報配列に商品ステータス情報を追加する
502     *
503     * @param Array $arrProducts 商品一覧情報
504     * @param Array $arrStatus  商品ステータス配列
505     * @param Array $arrStatusImage スタータス画像配列
506     * @return Array $arrProducts 商品一覧情報
507     */
508    function setStatusDataTo($arrProducts, $arrStatus, $arrStatusImage){
509
510        foreach ($arrProducts['productStatus'] as $product_id => $arrValues) {
511            for ($i = 0; $i < count($arrValues); $i++){
512                $product_status_id = $arrValues[$i];
513                if (!empty($product_status_id)) {
514                    $arrProductStatus = array('status_cd' => $product_status_id,
515                                              'status_name' => $arrStatus[$product_status_id],
516                                              'status_image' =>$arrStatusImage[$product_status_id]);
517                    $arrProducts['productStatus'][$product_id][$i] = $arrProductStatus;
518                }
519            }
520        }
521        return $arrProducts;
522    }
523}
524?>
Note: See TracBrowser for help on using the repository browser.