T

payment 플러그인 화

· 2014-10-31 (금) 11:35:23 · 3634 · 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,963
16-03-11 조회 2,759
16-03-09 조회 2,800
16-02-18 조회 2,895
16-01-28 조회 2,436
16-01-26 조회 2,448
16-01-22 조회 2,396
16-01-21 조회 2,455
16-01-14 조회 2,538
16-01-13 조회 2,417
16-01-12 조회 2,465
16-01-03 조회 3,220
16-01-03 조회 2,564
16-01-03 조회 2,722
16-01-02 조회 2,508
16-01-02 조회 2,582
16-01-02 조회 2,419
16-01-01 조회 2,696
16-01-01 조회 2,565
16-01-01 조회 2,627
15-12-31 조회 2,712
15-12-31 조회 2,725
15-12-31 조회 2,618
15-12-30 조회 2,635
15-12-30 조회 2,459
15-12-30 조회 2,452
15-12-29 조회 2,665
15-12-29 조회 2,773
15-12-29 조회 2,531
15-12-28 조회 2,510
15-12-28 조회 2,502
15-12-28 조회 2,441
15-11-26 조회 2,713
15-11-03 조회 3,174
15-11-02 조회 2,469
15-10-30 조회 3,050
15-10-30 조회 2,494
15-10-29 조회 2,583
15-10-03 조회 3,464
15-10-03 조회 2,733
15-10-02 조회 2,659
15-09-30 조회 2,555
15-09-30 조회 2,709
15-09-30 조회 2,785
15-09-30 조회 2,784
15-09-24 조회 2,745
15-09-24 조회 2,663
15-09-23 조회 3,039
15-09-23 조회 2,579
15-09-23 조회 2,648
15-09-23 조회 2,731
15-09-21 조회 2,579
15-09-21 조회 2,595
15-09-21 조회 2,662
15-07-02 조회 3,056
15-02-09 조회 4,484
15-01-24 조회 5,149
14-12-18 조회 5,159
14-11-21 조회 4,016
14-08-23 조회 3,762
14-08-11 조회 4,418
14-08-06 조회 5,989
14-08-01 조회 3,837
14-06-24 조회 5,645
14-05-18 조회 4,625
14-05-15 조회 4,494
14-05-15 조회 5,249
14-05-13 조회 4,690
14-05-09 조회 4,008
14-04-22 조회 4,494
14-04-16 조회 5,443
14-03-17 조회 7,184
13-11-12 조회 5,363
13-10-18 조회 4,369
13-10-15 조회 4,541
13-08-22 조회 4,503
13-08-18 조회 8,276
13-07-23 조회 7,091
13-07-23 조회 8,350
13-07-07 조회 5,233
13-05-18 조회 6,415
13-04-02 조회 6,008
13-04-02 조회 6,871
13-04-02 조회 7,232
13-04-02 조회 4,360
13-03-25 조회 3,805
13-03-20 조회 1.2만
13-02-12 조회 3,790
13-01-25 조회 4,576
13-01-17 조회 3,906
13-01-11 조회 4,140
13-01-01 조회 6,954
12-12-30 조회 5,877
12-12-17 조회 3,584
12-12-02 조회 7,188
12-11-29 조회 3,748
12-11-27 조회 4,790
12-10-05 조회 5,600
12-10-03 조회 4,481
12-09-14 조회 4,205