forked from iamport/wordpress-iamport-for-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iamport-phone.php
220 lines (192 loc) · 10.8 KB
/
iamport-phone.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?php
class WC_Gateway_Iamport_Phone extends Base_Gateway_Iamport {
const GATEWAY_ID = 'iamport_phone';
public function __construct() {
parent::__construct();
$this->method_title = __( '아임포트(휴대폰소액결제)', 'iamport-for-woocommerce' );
$this->method_description = __( '=> 아임포트 서비스를 이용해 결제모듈을 연동할 수 있습니다.<br>=> [아임포트] X PG사 제휴할인혜택을 받아보세요! <a href="http://www.iamport.kr/pg#promotion" target="_blank">다날과 계약 후 이용하시면 보다 합리적인 수수료, 정산주기 조건으로 휴대폰결제 서비스를 이용하실 수 있습니다.</a><br><br>=> 아임포트의 최신 공지사항도 놓치지 마세요! <a href="http://www.iamport.kr/notice" target="_blank">공지사항보기</a>', 'iamport-for-woocommerce' );
$this->has_fields = true;
$this->supports = array( 'products', 'refunds' );
//settings
$this->title = $this->settings['title'];
$this->description = $this->settings['description'];
$this->pg_provider = $this->settings['pg_provider'];
$this->pg_id = $this->settings['pg_id'];
//actions
// add_action( 'woocommerce_thankyou_'.$this->id, array( $this, 'iamport_order_detail' ) ); woocommerce_order_details_after_order_table 로 대체. 중복으로 나오고 있음
}
protected function get_gateway_id() {
return self::GATEWAY_ID;
}
public function init_form_fields() {
parent::init_form_fields();
$allProducts = array(
"all" => "[모든 상품]",
);
$allProducts += IamportHelper::get_all_products();
$allCategories = array(
"none" => "[적용 카테고리 없음]",
"all" => "[모든 카테고리]",
);
$allCategories += IamportHelper::get_all_categories();
$this->form_fields = array_merge( array(
'enabled' => array(
'title' => __( 'Enable/Disable', 'woocommerce' ),
'type' => 'checkbox',
'label' => __( '아임포트(휴대폰소액결제) 결제 사용', 'iamport-for-woocommerce' ),
'default' => 'yes'
),
'title' => array(
'title' => __( 'Title', 'woocommerce' ),
'type' => 'text',
'description' => __( '구매자에게 표시될 구매수단명', 'iamport-for-woocommerce' ),
'default' => __( '휴대폰소액결제 결제', 'iamport-for-woocommerce' ),
'desc_tip' => true,
),
'description' => array(
'title' => __( 'Customer Message', 'woocommerce' ),
'type' => 'textarea',
'description' => __( '구매자에게 결제수단에 대한 상세설명을 합니다.', 'iamport-for-woocommerce' ),
'default' => __( '주문확정 버튼을 클릭하시면 휴대폰소액결제 결제창이 나타나 결제를 진행하실 수 있습니다.', 'iamport-for-woocommerce' )
),
'digital_contents' => array(
'title' => __( '디지털 상품', 'iamport-for-woocommerce' ),
'description' => __( '판매하시는 상품이 배송되는 형태의 실물이 아니라 디지털 파일 등 무형의 서비스 상품이라면 체크해주세요(통신사 필수 요구사항)', 'iamport-for-woocommerce' ),
'type' => 'checkbox',
'label' => __( '디지털 상품인 경우 체크해주세요', 'iamport-for-woocommerce' ),
'default' => 'no'
),
), $this->form_fields, array(
'_pg_auto_title' => array(
'title' => __('(1) 휴대폰소액결제 시, 자동 적용될 PG설정값 세팅'),
'type' => 'title',
'description' => '아임포트 관리자페이지 내 복수의 PG설정이 되어있을 때, 구매상품 / 카테고리에 따라 자동으로 설정될 PG값을 지정합니다.',
),
'pg_provider' => array(
'title' => __( 'PG사 설정', 'iamport-for-woocommerce' ),
'type' => 'select',
'default' => '',
'description' => __( '2개 이상의 PG사를 이용 중이라면, 휴대폰 소액결제를 서비스할 PG사를 선택해주세요. 선택된 PG사의 결제창이 호출됩니다.', 'iamport-for-woocommerce' ),
'options' => array(
'none' => '해당사항없음',
'html5_inicis' => 'KG이니시스-웹표준결제',
'kcp' => 'NHN KCP',
'uplus' => '토스페이먼츠',
'nice' => '나이스페이먼츠',
'jtnet' => 'JTNet',
'kicc' => 'KICC',
'danal' => '다날-휴대폰소액결제',
'mobilians' => '모빌리언스',
'ksnet' => 'KSNET',
'welcome' => '웰컴페이먼츠',
)
),
'pg_id' => array(
'title' => __( 'PG상점아이디', 'woocommerce' ),
'type' => 'text',
'description' => __( '동일한 PG사에서 여러 개의 상점아이디(MID)를 사용하는 경우 원하시는 PG상점아이디(MID)를 지정하여 결제할 수 있습니다.', 'iamport-for-woocommerce' ),
),
'pg_products' => array(
'title' => __( 'PG설정 적용대상(상품)', 'iamport-for-woocommerce' ),
'type' => 'multiselect',
'default' => 'all',
'description' => __( '위에서 설정한 [PG사 설정] 및 [PG상점아이디] 가 적용될 상품을 선택합니다. 선택한 상품 또는 아래에서 선택한 카테고리에 해당되지 않는 경우 [PG사 설정] 및 [PG상점아이디] 는 적용되지 않습니다.' ),
'options' => $allProducts,
),
'pg_categories' => array(
'title' => __( 'PG설정 적용대상(카테고리)', 'iamport-for-woocommerce' ),
'type' => 'multiselect',
'default' => 'none',
'description' => __( '위에서 설정한 [PG사 설정] 및 [PG상점아이디] 가 적용될 카테고리를 선택합니다. 선택한 카테고리 또는 위에서 선택한 상품에 해당되지 않는 경우 [PG사 설정] 및 [PG상점아이디] 는 적용되지 않습니다.' ),
'options' => $allCategories,
),
'_pg_manual_title' => array(
'title' => __('(2) 휴대폰소액결제 시, 적용될 PG설정값을 고객이 직접 지정'),
'type' => 'title',
'description' => '체크아웃(Checkout)페이지에서 구매자가 휴대폰소액결제 결제수단 선택 후 세부 결제수단을 한 번 더 선택할 수 있습니다. 아래 기능을 사용하면 위에 설정된 [휴대폰소액결제 시, 자동 적용될 PG설정값 세팅] 값은 모두 무시됩니다.',
),
'use_manual_pg' => array(
'title' => __( 'PG설정 구매자 선택방식 사용', 'woocommerce' ),
'type' => 'checkbox',
'description' => __( '아임포트 계정에 설정된 여러 PG사 / MID를 사용자의 선택에 따라 적용하는 기능을 활성화합니다. 휴대폰소액결제 결제수단 선택 시, 세부 결제수단 선택창이 추가로 출력됩니다.', 'iamport-for-woocommerce' ),
'default' => 'no',
),
'manual_pg_id' => array(
'title' => __( 'PG설정 구매자 선택', 'woocommerce' ),
'type' => 'textarea',
'description' => __( '"{PG사 코드}.{PG상점아이디} : 구매자에게 표시할 텍스트" 의 형식으로 여러 줄 입력가능합니다.', 'iamport-for-woocommerce' ),
),
));
}
public function init_settings() {
parent::init_settings();
if ( $this->legacy_danal_user() ) {
$p = $this->settings['pg_provider'];
if ( empty($p) || $p === 'none' ) {
//기존에 다날 사용하던 사용자. pg_provider가 생긴 이후 한 번도 설정한 적이 없음
$this->pg_provider = $this->settings['pg_provider'] = 'danal';
}
}
}
public function iamport_order_detail( $order_id ) {
global $woocommerce;
$order = new WC_Order( $order_id );
$paymethod = get_post_meta($order_id, '_iamport_paymethod', true);
$receipt_url = get_post_meta($order_id, '_iamport_receipt_url', true);
$vbank_name = get_post_meta($order_id, '_iamport_vbank_name', true);
$vbank_num = get_post_meta($order_id, '_iamport_vbank_num', true);
$vbank_date = get_post_meta($order_id, '_iamport_vbank_date', true);
$tid = $order->get_transaction_id();
ob_start();
?>
<h2><?=__( '결제 상세', 'iamport-for-woocommerce' )?></h2>
<table class="shop_table order_details">
<tbody>
<tr>
<th><?=__( '결제수단', 'iamport-for-woocommerce' )?></th>
<td><?=__( '휴대폰소액결제', 'iamport-for-woocommerce' )?></td>
</tr>
<tr>
<th><?=__( '매출전표', 'iamport-for-woocommerce' )?></th>
<td><a target="_blank" href="<?=$receipt_url?>"><?=sprintf( __( '영수증보기(%s)', 'iamport-for-woocommerce' ), $tid )?></a></td>
</tr>
</tbody>
</table>
<?php
ob_end_flush();
}
public function iamport_payment_info( $order_id ) {
$iamport_info = parent::iamport_payment_info( $order_id );
$iamport_info['digital'] = filter_var($this->settings['digital_contents'], FILTER_VALIDATE_BOOLEAN);
$useManualPg = filter_var($this->settings['use_manual_pg'], FILTER_VALIDATE_BOOLEAN);
if (!$useManualPg) { //Manual 모드이면 굳이 루프돌며 찾지 않음
if (!empty($this->pg_provider) && $this->pg_provider != 'none') {
$iamport_info['pg'] = $this->pg_provider;
if (!empty($this->pg_id)) {
$iamport_info['pg'] = sprintf("%s.%s", $this->pg_provider, $this->pg_id);
}
//조건에 해당되지 않으면 pg 파라메터 unset
$allAllowedInProduct = !empty($this->settings['pg_products']) && ($this->settings['pg_products'] === "all" || (is_array($this->settings['pg_products']) && in_array("all", $this->settings['pg_products'])));
$allAllowedInCategory = !empty($this->settings['pg_categories']) && ($this->settings['pg_categories'] === "all" || (is_array($this->settings['pg_categories']) && in_array("all", $this->settings['pg_categories'])));
if (!($allAllowedInProduct || $allAllowedInCategory)) {
//타겟이 특정되어있을 때에만 검사한다.
$productList = empty($this->settings['pg_products']) || !is_array($this->settings['pg_products']) ? array() : $this->settings['pg_products'];
$categoryList = empty($this->settings['pg_categories']) || !is_array($this->settings['pg_categories']) ? array() : $this->settings['pg_categories'];
if (IamportHelper::has_excluded_product($order_id, $productList, $categoryList)) unset($iamport_info['pg']);
}
}
}
return $iamport_info;
}
private function legacy_danal_user() {
return isset($this->settings['danal_user']) && filter_var($this->settings['danal_user'], FILTER_VALIDATE_BOOLEAN);
}
public function payment_fields()
{
parent::payment_fields(); //description 출력
$useManualPg = filter_var($this->settings['use_manual_pg'], FILTER_VALIDATE_BOOLEAN);
if ($useManualPg) {
echo IamportHelper::htmlSecondaryPaymentMethod($this->settings['manual_pg_id']);
}
}
}