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

Revision 15429, 3.6 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(
17    '1' => '°ì³çʧ¤¤',
18);
19
20// Á÷¿®¥Ñ¥é¥á¡¼¥¿
[15429]21define ("SECURE_LINK_URL", "https://linkpt.cardservice.co.jp/cgi-bin/secure.cgi");
[15418]22
23// ʸ»ú¿ôÀ©¸Â
24define ("CLIENTIP_LEN", 5);
25define ("SEND_LEN", 20);
26
[15429]27/**************************************************************************************************************
28 * ´Ø¿ô̾   ¡§sfGetPaymentDB
29 * ½èÍýÆâÍÆ ¡§É¬Íפʥǡ¼¥¿¤ò¼èÆÀ¤¹¤ë¡£
30 * °ú¿ô1    ¡§
31 * °ú¿ô2    ¡§
32 * °ú¿ô3    ¡§
33 * Ìá¤êÃÍ   ¡§¼èÆÀ·ë²Ì
34 **************************************************************************************************************/
35function sfGetPaymentDB($module_id, $where = "", $arrWhereVal = array()){
36    $objQuery = new SC_Query();
37       
38    $arrVal = array($module_id);
39    $arrVal = array_merge($arrVal, $arrWhereVal);
40   
41    $arrRet = array();
42    $sql = "SELECT
43                module_id,
44                memo01 as merchant_id,
45                memo02 as connect_id,
46                memo03 as payment,
47                memo04 as connect_password,
48                memo05 as other_param
49            FROM dtb_payment WHERE module_id = ? " . $where;
50    $arrRet = $objQuery->getall($sql, $arrVal);
51
52    return $arrRet;
53}
[15418]54
55/**************************************************************************************************************
56 * ´Ø¿ô̾   ¡§sfPostPaymentData
57 * ½èÍýÆâÍÆ ¡§·èºÑ¥Ç¡¼¥¿Á÷¿®½èÍý
58 * °ú¿ô1    ¡§
59 * °ú¿ô2    ¡§
60 * °ú¿ô3    ¡§
61 * Ìá¤êÃÍ   ¡§¼èÆÀ·ë²Ì
62 **************************************************************************************************************/
[15425]63function sfPostPaymentData($arrData, $arrInput){
[15420]64    $arrPost = array(
[15422]65        'clientip' => '94181',
[15425]66        'cardnumber' => $arrInput['card_no01'].$arrInput['card_no02'].$arrInput['card_no03'].$arrInput['card_no04'],
67        'expyy' => $arrInput['card_year'],
68        'expmm' => $arrInput['card_month'],
69        'telno' => $arrData['order_tel01'].$arrData['order_tel02'].$arrData['order_tel03'],
[15426]70        'email' => $arrData['order_email'],
[15425]71        'sendid' => $arrData['order_id'],
72        'username' => $arrInput['card_name01'].$arrInput['card_name02'],
73        'money' => $arrData['total'],
[15420]74        'sendpoint' => 'eccube',
75        'send' => 'mall',
76        'pubsec' => ''
77    );
[15418]78   
[15420]79    sfPrintR($arrPost);
80   
[15429]81    $req = new HTTP_Request(SECURE_LINK_URL);
[15420]82    $req->setMethod(HTTP_REQUEST_METHOD_POST);
[15422]83    $req->addPostDataArray($arrPost);
[15420]84   
85    if (!PEAR::isError($req->sendRequest())) {
86        $response = $req->getResponseBody();
87        $response = mb_convert_encoding($response, "EUC-JP", "Shift-JIS");
88    }
89    $req->clearPostData();
90
[15425]91    if(ereg('Success_order', $response)) {
92        print('À®¸ù');
93    } else {
94        print('¼ºÇÔ');
95    }
[15418]96    return $arrVal;
97}
98/**************************************************************************************************************
99 * ´Ø¿ô̾   ¡§sfZeusDisp
100 * ½èÍýÆâÍÆ ¡§¶¦Ä̤Îɽ¼¨½èÍý
101 * °ú¿ô1    ¡§
102 * °ú¿ô2    ¡§
103 * °ú¿ô3    ¡§
104 * Ìá¤êÃÍ   ¡§¼èÆÀ·ë²Ì
105 **************************************************************************************************************/
106function sfZeusDisp($objPage, $payment_id) {
107    $objQuery = new SC_Query();
108    // »Ùʧ¤¤ÊýË¡¤ÎÀâÌÀ²èÁü¤ò¼èÆÀ¤¹¤ë¡£
109    $arrRet = $objQuery->select("payment_method, payment_image", "dtb_payment", "payment_id = ?", array($payment_id));
110    $objPage->tpl_payment_method = $arrRet[0]['payment_method'];
111    $objPage->tpl_payment_image = $arrRet[0]['payment_image'];
112    return $objPage;
113}
114?>
Note: See TracBrowser for help on using the repository browser.