source: branches/feature-module-zeus/data/downloads/module/mdl_zeus/mdl_zeus.inc @ 15512

Revision 15512, 4.8 KB checked in by naka, 17 years ago (diff)
RevLine 
[15418]1<?php
2/**
3 *
4 * @copyright   2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 * @version CVS: $Id: mdl_epsilon.inc 7162 2006-11-18 09:53:33Z kakinaka $
6 * @link        http://www.lockon.co.jp/
7 *
8 */
9require_once(DATA_PATH . "module/Request.php");
10
11/**** ¢§Äê¿ôÀë¸À *********************************************************************************************/
12
13define("MDL_ZEUS_ID", 10);
14
15// ¥¯¥ì¥¸¥Ã¥Èʬ³ä²ó¿ô
16$arrPaymentClass = array(
[15450]17    '01' => '°ì³çʧ¤¤',
18    '03' => '3²óʧ¤¤',
19    '05' => '5²óʧ¤¤',
20    '06' => '6²óʧ¤¤',
21    '10' => '10²óʧ¤¤'     
[15418]22);
23
24// Á÷¿®¥Ñ¥é¥á¡¼¥¿
[15429]25define ("SECURE_LINK_URL", "https://linkpt.cardservice.co.jp/cgi-bin/secure.cgi");
[15418]26
27// ʸ»ú¿ôÀ©¸Â
28define ("CLIENTIP_LEN", 5);
29define ("SEND_LEN", 20);
30
[15429]31/**************************************************************************************************************
32 * ´Ø¿ô̾   ¡§sfGetPaymentDB
33 * ½èÍýÆâÍÆ ¡§É¬Íפʥǡ¼¥¿¤ò¼èÆÀ¤¹¤ë¡£
34 * °ú¿ô1    ¡§
35 * °ú¿ô2    ¡§
36 * °ú¿ô3    ¡§
37 * Ìá¤êÃÍ   ¡§¼èÆÀ·ë²Ì
38 **************************************************************************************************************/
39function sfGetPaymentDB($module_id, $where = "", $arrWhereVal = array()){
40    $objQuery = new SC_Query();
41       
42    $arrVal = array($module_id);
43    $arrVal = array_merge($arrVal, $arrWhereVal);
44   
45    $arrRet = array();
46    $sql = "SELECT
47                module_id,
[15431]48                memo01 as clientip
[15429]49            FROM dtb_payment WHERE module_id = ? " . $where;
50    $arrRet = $objQuery->getall($sql, $arrVal);
51
[15431]52    return $arrRet[0];
[15429]53}
[15418]54
55/**************************************************************************************************************
56 * ´Ø¿ô̾   ¡§sfPostPaymentData
57 * ½èÍýÆâÍÆ ¡§·èºÑ¥Ç¡¼¥¿Á÷¿®½èÍý
58 * °ú¿ô1    ¡§
59 * °ú¿ô2    ¡§
60 * °ú¿ô3    ¡§
61 * Ìá¤êÃÍ   ¡§¼èÆÀ·ë²Ì
62 **************************************************************************************************************/
[15508]63function sfPostPaymentData($arrData, $arrInput, $quick_chage = false){
[15431]64    $arrPaymentDB = sfGetPaymentDB(MDL_ZEUS_ID);
[15477]65   
[15508]66    if(!$quick_chage) {
67        $arrPost = array(
68            'clientip' => $arrPaymentDB['clientip'],
[15510]69            'cardnumber' =>  $arrInput['card_no01'].$arrInput['card_no02'].$arrInput['card_no03'].$arrInput['card_no04'],
[15508]70            'expyy' => $arrInput['card_year'],
71            'expmm' => $arrInput['card_month'],
[15510]72            'telno' => $arrData['order_tel01'].$arrData['order_tel02'].$arrData['order_tel03'],
[15508]73            'email' => $arrData['order_email'],
74            'sendid' => $arrData['order_id'],
75            'username' => $arrInput['card_name01'].$arrInput['card_name02'],
76            'money' => $arrData['total'],
77            'sendpoint' => 'eccube',
78            'send' => 'mall',
79            'pubsec' => '',
80            'div' => $arrInput['payment_class']
81        );
82    } else {
83        // ¥¯¥¤¥Ã¥¯¥Á¥ã¡¼¥¸¤òÍøÍѤ¹¤ë¾ì¹ç
84        $objQuery = new SC_Query();
85        $objQuery->setlimit(1);
86        $objQuery->setorder("create_date DESC");
87        $arrRet = $objQuery->select("order_id, order_tel01, order_tel02, order_tel03", "dtb_order", "memo01 = ? AND customer_id = ?", array(MDL_ZEUS_ID, $arrData['customer_id']));
[15510]88       
89        $arrPost = array(
90            'send' => 'mall',
91            'clientip' => $arrPaymentDB['clientip'],
92            'money' => $arrData['total'],
[15511]93            'telno' => $arrRet[0]['order_tel01'].$arrRet[0]['order_tel02'].$arrRet[0]['order_tel03'],
94            'sendid' => $arrRet[0]['order_id'],
[15510]95            'cardnumber' => '888888888888888',
96            'email' => $arrData['order_email'],
97            'sendpoint' => 'eccube',
98            'expyy' => '01',    // ¥À¥ß¡¼ÃÍ
99            'expmm' => '01',    // ¥À¥ß¡¼ÃÍ
[15512]100            'div' => '01',
[15510]101            'entry' => 'non',
102            'pubsec' => 'yes'           
103        );
104       
105        sfPrintR($arrPost);
[15508]106    }
107   
[15429]108    $req = new HTTP_Request(SECURE_LINK_URL);
[15420]109    $req->setMethod(HTTP_REQUEST_METHOD_POST);
[15422]110    $req->addPostDataArray($arrPost);
[15420]111   
112    if (!PEAR::isError($req->sendRequest())) {
113        $response = $req->getResponseBody();
114        $response = mb_convert_encoding($response, "EUC-JP", "Shift-JIS");
115    }
116    $req->clearPostData();
[15452]117    gfPrintLog("¥¼¥¦¥¹±þÅú·ë²Ì¡§".$response);
[15489]118       
[15425]119    if(ereg('Success_order', $response)) {
[15475]120        // ¼õÃí¥Æ¡¼¥Ö¥ë¤Ëµ­Ï¿¤¹¤ë
121        $arrVal["memo01"] = MDL_ZEUS_ID;    // ¥â¥¸¥å¡¼¥ëID
[15487]122        $arrVal["memo03"] = $response;      // ½èÍý·ë²Ì
[15475]123        // ¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤Ë¹¹¿·
124        sfRegistTempOrder($arrData['order_temp_id'], $arrVal);
[15436]125        return true;
[15425]126    } else {
[15436]127        return false;
[15425]128    }
[15418]129    return $arrVal;
130}
131/**************************************************************************************************************
132 * ´Ø¿ô̾   ¡§sfZeusDisp
133 * ½èÍýÆâÍÆ ¡§¶¦Ä̤Îɽ¼¨½èÍý
134 * °ú¿ô1    ¡§
135 * °ú¿ô2    ¡§
136 * °ú¿ô3    ¡§
137 * Ìá¤êÃÍ   ¡§¼èÆÀ·ë²Ì
138 **************************************************************************************************************/
139function sfZeusDisp($objPage, $payment_id) {
140    $objQuery = new SC_Query();
141    // »Ùʧ¤¤ÊýË¡¤ÎÀâÌÀ²èÁü¤ò¼èÆÀ¤¹¤ë¡£
142    $arrRet = $objQuery->select("payment_method, payment_image", "dtb_payment", "payment_id = ?", array($payment_id));
143    $objPage->tpl_payment_method = $arrRet[0]['payment_method'];
144    $objPage->tpl_payment_image = $arrRet[0]['payment_image'];
145    return $objPage;
146}
147?>
Note: See TracBrowser for help on using the repository browser.