T

payment 플러그인 화

· 2014-10-31 (금) 11:35:23 · 3626 · 5

벌써 payment 작업만 20번이 넘어 가네요.

조금씩 수정 하며 공용으로 사용 할 수 있는 플러그인화 작업도 진화 되고 있습니다.

 

참고 하시라고 소스를 첨부 합니다.

payment.class.php

[code]

<?php

class TBpayment {

 

# 기본환경 설정

public function set($Payment, $code='', $key='', $mode='real') {

 

global $config;

 

/*

$code: payment에서 발급되는 아이디 혹은 코드

$key: payment에서 발급되는 키

*/

# 필수값 확인

if($mode == 'real')

if(!$Payment || !$code || !$key) die('환경설정 부에 누락 된 값이 있습니다.');

 

# 경로 설정 (경로를 잡으면서 윈도우 \를 변환)

$RootDir = str_replace(chr(92), '/', $_SERVER['DOCUMENT_ROOT']);

$ModulePath =  str_replace(chr(92), '/', dirname(__FILE__));

 

# 모듈 경로의 URL을 생성

$http = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']!='off')?'https://':'http://';

$ModuleDir = str_replace($RootDir, '', $ModulePath);

$ModuleDir = rtrim($ModuleDir, '/');

$ModuleUrl = $http.$_SERVER['HTTP_HOST'].$ModuleDir;

 

# 정보를 배열에 담는다.

$this->config['module_path'] = $ModulePath;

$this->config['module_url'] = $ModuleUrl;

$this->config['payment'] = $Payment;

$this->config['mode'] = $mode;

$this->config['path'] = $ModulePath.'/'.$Payment;

$this->config['url'] = $ModuleUrl.'/'.$Payment;

$this->config['code'] = $code;

$this->config['key'] = $key;

 

if(file_exists($this->config['path'].'/config.php'))

include_once($this->config['path'].'/config.php');

else die('payment config file not exists!!');

}

 

 

# 환경설정 확인

public function config() {

 

return $this->config;

}

[/code]

 

 

 

 

./module/payment/kcp/config.php

[code]

<?php

# BIN 절대 경로 입력 (bin전까지 설정

$GLOBALS['g_conf_home_dir'] = $this->config['path'].'/';

 

 

# log 경로 지정

$GLOBALS['g_conf_log_path'] = $GLOBALS['g_conf_home_dir'].'log';

 

 

# g_conf_gw_url 설정

if($mode == 'test') $GLOBALS['g_conf_gw_url'] = 'testpaygw.kcp.co.kr';

else $GLOBALS['g_conf_gw_url'] = 'paygw.kcp.co.kr';

 

 

# g_conf_js_url 설정

if($mode == 'test') {

 

if((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']!='off')) {

 

$GLOBALS['g_conf_js_url'] = 'https://pay.kcp.co.kr/plugin/payplus_test_un.js';

}

else {

 

$GLOBALS['g_conf_js_url'] = 'http://pay.kcp.co.kr/plugin/payplus_test_un.js';

}

}

else {

 

if((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']!='off')) {

 

$GLOBALS['g_conf_js_url'] = 'https://pay.kcp.co.kr/plugin/payplus_un.js';

}

else {

 

$GLOBALS['g_conf_js_url'] = 'http://pay.kcp.co.kr/plugin/payplus_un.js';

}

}

 

 

#스마트폰 SOAP 통신 설정

if($mode == 'test') $GLOBALS['g_wsdl'] = "KCPPaymentService.wsdl";

else $GLOBALS['g_wsdl'] = "real_KCPPaymentService.wsdl";

 

 

# g_conf_site_cd, g_conf_site_key 설정

if($mode == 'test') {

 

$GLOBALS['g_conf_site_cd'] = "T0000"; // T0007 은 결제 테스트 안됨

$GLOBALS['g_conf_site_key'] = "3grptw1.zW0GSo4PQdaGvsF__"; // 4Ho4YsuOZlLXUZUdOxM1Q7X__ 은 결제 테스트 안됨

}

else {

 

$GLOBALS['g_conf_site_cd']   = $this->config['code'];

    $GLOBALS['g_conf_site_key']  = $this->config['key'];

}

 

 

# g_conf_site_name 설정

if($mode == 'test') $GLOBALS['g_conf_site_name'] = $config['cf_title']." Test";

else $GLOBALS['g_conf_site_name'] = $config['cf_title'];

 

 

# 지불 데이터 셋업 (변경 불가) 

$GLOBALS['g_conf_log_level'] = "3";

$GLOBALS['g_conf_gw_port'] = "8090";        // 포트번호(변경불가)

$GLOBALS['module_type'] = "01";          // 변경불가 

[/code]

 

 

 

호출과 사용

[code]

include_once(realpath(__DIR__).'/payment.class.php');

 

$PayMode = 'test'; // real or test

$tbPay = new TBpayment;

$tbPay->set('kcp', '아이디 또는 코드값', '키값', $PayMode);

$PayConfig = $tbPay->config(); 

[/code]

|

댓글 5개

2014-11-11 (화) 09:45:11
빨리나왔으면 좋겠어요.ㄳ
비공개 작품이구요.
방법을 제시 하는 글입니다 ㅎㅎㅎ
2014-11-11 (화) 10:25:14
앗 ㅎㅎㅎ 프로그램 까막눈이라. 네~
ㅎㅎㅎㅎㅎ
ㅇㅎㅎㅎㅎㅎ
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
16-05-11 조회 2,942
16-03-11 조회 2,737
16-03-09 조회 2,755
16-02-18 조회 2,865
16-01-28 조회 2,402
16-01-26 조회 2,428
16-01-22 조회 2,359
16-01-21 조회 2,419
16-01-14 조회 2,505
16-01-13 조회 2,402
16-01-12 조회 2,450
16-01-03 조회 3,190
16-01-03 조회 2,536
16-01-03 조회 2,699
16-01-02 조회 2,496
16-01-02 조회 2,556
16-01-02 조회 2,400
16-01-01 조회 2,669
16-01-01 조회 2,538
16-01-01 조회 2,608
15-12-31 조회 2,691
15-12-31 조회 2,699
15-12-31 조회 2,603
15-12-30 조회 2,609
15-12-30 조회 2,436
15-12-30 조회 2,428
15-12-29 조회 2,640
15-12-29 조회 2,751
15-12-29 조회 2,518
15-12-28 조회 2,500
15-12-28 조회 2,483
15-12-28 조회 2,424
15-11-26 조회 2,689
15-11-03 조회 3,131
15-11-02 조회 2,444
15-10-30 조회 3,028
15-10-30 조회 2,461
15-10-29 조회 2,548
15-10-03 조회 3,440
15-10-03 조회 2,711
15-10-02 조회 2,648
15-09-30 조회 2,543
15-09-30 조회 2,690
15-09-30 조회 2,764
15-09-30 조회 2,763
15-09-24 조회 2,723
15-09-24 조회 2,645
15-09-23 조회 3,019
15-09-23 조회 2,565
15-09-23 조회 2,627
15-09-23 조회 2,694
15-09-21 조회 2,561
15-09-21 조회 2,582
15-09-21 조회 2,630
15-07-02 조회 3,041
15-02-09 조회 4,469
15-01-24 조회 5,126
14-12-18 조회 5,128
14-11-21 조회 3,991
14-08-23 조회 3,753
14-08-11 조회 4,396
14-08-06 조회 5,957
14-08-01 조회 3,824
14-06-24 조회 5,619
14-05-18 조회 4,602
14-05-15 조회 4,474
14-05-15 조회 5,234
14-05-13 조회 4,670
14-05-09 조회 3,996
14-04-22 조회 4,475
14-04-16 조회 5,430
14-03-17 조회 7,122
13-11-12 조회 5,349
13-10-18 조회 4,337
13-10-15 조회 4,507
13-08-22 조회 4,480
13-08-18 조회 8,239
13-07-23 조회 7,026
13-07-23 조회 8,310
13-07-07 조회 5,199
13-05-18 조회 6,380
13-04-02 조회 5,989
13-04-02 조회 6,845
13-04-02 조회 7,181
13-04-02 조회 4,324
13-03-25 조회 3,778
13-03-20 조회 1.2만
13-02-12 조회 3,769
13-01-25 조회 4,556
13-01-17 조회 3,882
13-01-11 조회 4,116
13-01-01 조회 6,915
12-12-30 조회 5,841
12-12-17 조회 3,579
12-12-02 조회 7,164
12-11-29 조회 3,719
12-11-27 조회 4,776
12-10-05 조회 5,588
12-10-03 조회 4,433
12-09-14 조회 4,165