-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhotopay.admin.view.php
538 lines (427 loc) · 16.8 KB
/
hotopay.admin.view.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<?php
/**
* Hoto Pay
*
* Copyright (c) Waterticket
*
* Generated with https://www.poesis.org/tools/modulegen/
*/
class HotopayAdminView extends Hotopay
{
/**
* 초기화
*/
public function init()
{
// 관리자 화면 템플릿 경로 지정
$this->setTemplatePath($this->module_path . 'tpl');
$update_needed = $_COOKIE['ht_update_check'];
if(!isset($_COOKIE['ht_update_check']))
{
$update_needed = $this->githubUpdateCheck();
setcookie('ht_update_check', (int)$update_needed, time() + 21600);
}
Context::set('update_needed', (int)$update_needed);
}
public function dispHotopayAdminDashBoard()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$oHotopayAdminModel = getAdminModel('hotopay');
$total = $oHotopayAdminModel->getSales(0);
$month = $oHotopayAdminModel->getSales(strtotime("first day of this month midnight"));
$last_month = $oHotopayAdminModel->getSales(strtotime("first day of last month midnight"), strtotime("first day of this month midnight"));
$week = $oHotopayAdminModel->getSales(strtotime('monday this week midnight'));
$last_week = $oHotopayAdminModel->getSales(strtotime('monday this week midnight') - 604800, strtotime('monday this week midnight'));
$today = $oHotopayAdminModel->getSales(strtotime("today midnight"));
$yesterday = $oHotopayAdminModel->getSales(strtotime("today midnight") - 86400, strtotime("today midnight"));
Context::set('total', $total);
Context::set('month', $month);
Context::set('last_month', $last_month);
Context::set('week', $week);
Context::set('last_week', $last_week);
Context::set('today', $today);
Context::set('yesterday', $yesterday);
// 스킨 파일 지정
Context::setBrowserTitle('대시보드 - Hotopay');
$this->setTemplateFile('dashboard');
}
public function dispHotopayAdminConfig()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$oMemberModel = MemberModel::getInstance();
$groups = $oMemberModel->getGroups();
Context::set('groups', $groups);
// 스킨 파일 지정
Context::setBrowserTitle('모듈 설정 - Hotopay');
$this->setTemplateFile('config');
}
public function dispHotopayAdminPaymentGatewayConfig()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
// 스킨 파일 지정
Context::setBrowserTitle('PG 설정 - Hotopay');
$this->setTemplateFile('pg_config');
}
public function dispHotopayAdminProductList()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$args = new stdClass();
$args->page = Context::get('page') ?: 1; ///< 페이지
$args->list_count = 20; ///< 한페이지에 보여줄 기록 수
$args->page_count = 10; ///< 페이지 네비게이션에 나타날 페이지의 수
$args->order_type = 'desc';
$output = executeQueryArray('hotopay.getProductsPage', $args);
if(!$output->toBool())
{
return $this->createObject(-1, "DB Error: ".$output->message);
}
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('page_navigation', $output->page_navigation);
Context::set('products', $output->data); // 상품 데이터 추가
// 스킨 파일 지정
Context::setBrowserTitle('상품 목록 - Hotopay');
$this->setTemplateFile('product_list');
}
public function dispHotopayAdminInsertProduct()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$oMemberModel = getModel('member');
$groups = $oMemberModel->getGroups();
Context::set('groups', $groups);
// 스킨 파일 지정
Context::setBrowserTitle('상품 추가 - Hotopay');
$this->setTemplateFile('insert_product');
}
public function dispHotopayAdminInsertPurchase()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$oHotopayModel = getModel('hotopay');
$products = $oHotopayModel->getProductsAll();
Context::set('products', $products);
// 스킨 파일 지정
Context::setBrowserTitle('결제 데이터 추가 - Hotopay');
$this->setTemplateFile('insert_purchase');
}
public function dispHotopayAdminPurchaseList()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
HotopayModel::updateExpiredPurchaseStatus();
$sort_index = $vars->sort_index ?: 'purchase_srl';
$sort_order = in_array($vars->sort_order, ['asc','desc']) ? $vars->sort_order : 'desc';
$search_target = $vars->search_target;
$search_keyword = $vars->search_keyword;
// Context에 세팅
Context::set('hotopay_config', $config);
$args = new stdClass();
$args->page = Context::get('page') ?: 1; ///< 페이지
$args->list_count = 20; ///< 한페이지에 보여줄 기록 수
$args->page_count = 10; ///< 페이지 네비게이션에 나타날 페이지의 수
$args->sort_index = $sort_index;
$args->order_type = $sort_order;
// search condition
if(!empty($search_target) && !empty($search_keyword))
{
switch($search_target)
{
case 'purchase_srl':
case 'member_srl':
$args->{$search_target} = preg_replace('/[^0-9]/', '', $search_keyword);
break;
case 'user_id':
case 'nick_name':
case 'user_name':
case 'phone_number':
case 'email_address':
$search_arg = new stdClass();
$search_arg->{$search_target} = $search_keyword;
$search_result = executeQueryArray('hotopay.getMemberSrlBySearch', $search_arg);
$member_srls = array_map(function($v) { return $v->member_srl; }, $search_result->data);
$args->member_srl = $member_srls;
break;
}
}
$output = executeQueryArray('hotopay.getPurchasesPage', $args);
if(!$output->toBool())
{
return $this->createObject(-1, "DB Error: ".$output->message);
}
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('page_navigation', $output->page_navigation);
Context::set('purchase_list', $output->data);
// 스킨 파일 지정
Context::setBrowserTitle('결제 목록 - Hotopay');
$this->setTemplateFile('purchase_list');
}
public function dispHotopayAdminPurchaseData()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$args = new stdClass();
$args->purchase_srl = $vars->purchase_srl;
$output = executeQuery('hotopay.getPurchase', $args);
if(!$output->toBool())
{
return $this->createObject(-1, "DB Error: ".$output->message);
}
Context::set('purchase_data', $output->data);
$oHotopayModel = HotopayModel::getInstance();
$purchase_items = $oHotopayModel->getPurchaseItems($vars->purchase_srl);
Context::set('purchase_items', $purchase_items);
$purchase_extra_info = $oHotopayModel->getPurchaseExtraInfo($vars->purchase_srl);
Context::set('purchase_extra_info', $purchase_extra_info);
// 스킨 파일 지정
Context::setBrowserTitle('결제 데이터 - Hotopay');
$this->setTemplateFile('purchase_data');
}
public function dispHotopayAdminModifyProduct()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
$product_srl = $vars->product_srl;
// Context에 세팅
Context::set('hotopay_config', $config);
$oMemberModel = getModel('member');
$groups = $oMemberModel->getGroups();
Context::set('groups', $groups);
$oHotopayModel = getModel('hotopay');
$product = $oHotopayModel->getProduct($product_srl);
$product->product_option = $oHotopayModel->getProductOptions($product_srl);
Context::set('product', $product);
// 스킨 파일 지정
Context::setBrowserTitle('상품 수정 - Hotopay');
$this->setTemplateFile('modify_product');
}
public function dispHotopayAdminNotification()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
// 스킨 파일 지정
Context::setBrowserTitle('알림 설정 - Hotopay');
$this->setTemplateFile('notify_config');
}
public function dispHotopayAdminPurchaseExtraInfo()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
// 스킨 파일 지정
Context::setBrowserTitle('추가정보 설정 - Hotopay');
$this->setTemplateFile('purchase_extra_info_config');
}
public function dispHotopayAdminSubscriptionIndex()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$vars = Context::getRequestVars();
$args = new \stdClass();
$args->page = $vars->page ? $vars->page : 1;
$args->search_target = $vars->search_target ? $vars->search_target : '';
$args->search_keyword = $vars->search_keyword ? $vars->search_keyword : '';
$output = HotopayModel::getSubscriptionList($args);
Context::set('subscription_list', $output->data);
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('page_navigation', $output->page_navigation);
// 스킨 파일 지정
Context::setBrowserTitle('정기결제 목록 - Hotopay');
$this->setTemplateFile('index_subscription');
}
public function dispHotopayAdminInsertSubscription()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
// 스킨 파일 지정
Context::setBrowserTitle('정기결제 추가 - Hotopay');
$this->setTemplateFile('insert_subscription');
}
public function dispHotopayAdminUpdateSubscription()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$output = HotopayModel::getSubscription($vars->subscription_srl);
Context::set('subscription', $output);
// 스킨 파일 지정
Context::setBrowserTitle('정기결제 수정 - Hotopay');
$this->setTemplateFile('update_subscription');
}
public function dispHotopayAdminDeleteSubscription()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$output = HotopayModel::getSubscription($vars->subscription_srl);
Context::set('subscription', $output);
// 스킨 파일 지정
Context::setBrowserTitle('정기결제 삭제 - Hotopay');
$this->setTemplateFile('delete_subscription');
}
public function dispHotopayAdminBillingKeyIndex()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$vars = Context::getRequestVars();
$args = new \stdClass();
$args->page = $vars->page ? $vars->page : 1;
$args->search_target = $vars->search_target ? $vars->search_target : '';
$args->search_keyword = $vars->search_keyword ? $vars->search_keyword : '';
$output = HotopayModel::getBillingKeyList($args);
Context::set('billingkey_list', $output->data);
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('page_navigation', $output->page_navigation);
// 스킨 파일 지정
Context::setBrowserTitle('결제수단 목록 - Hotopay');
$this->setTemplateFile('index_billingkey');
}
public function dispHotopayAdminInsertBillingKey()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
// 스킨 파일 지정
Context::setBrowserTitle('결제수단 추가 - Hotopay');
$this->setTemplateFile('insert_billingkey');
}
public function dispHotopayAdminUpdateBillingKey()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$output = HotopayModel::getBillingKey($vars->key_idx);
Context::set('billingkey', $output);
// 스킨 파일 지정
Context::setBrowserTitle('결제수단 수정 - Hotopay');
$this->setTemplateFile('update_billingkey');
}
public function dispHotopayAdminDeleteBillingKey()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$output = HotopayModel::getBillingKey($vars->key_idx);
Context::set('billingkey', $output);
// 스킨 파일 지정
Context::setBrowserTitle('결제수단 삭제 - Hotopay');
$this->setTemplateFile('delete_billingkey');
}
public function dispHotopayAdminProductExtraInfoIndex()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
$vars = Context::getRequestVars();
$args = new \stdClass();
$args->page = $vars->page ? $vars->page : 1;
$args->search_target = $vars->search_target ? $vars->search_target : '';
$args->search_keyword = $vars->search_keyword ? $vars->search_keyword : '';
$output = HotopayModel::getProductExtraInfoList($args);
Context::set('productextrainfo_list', $output->data);
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('page_navigation', $output->page_navigation);
// 스킨 파일 지정
$this->setTemplateFile('index_productextrainfo');
}
public function dispHotopayAdminInsertProductExtraInfo()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
// Context에 세팅
Context::set('hotopay_config', $config);
// 스킨 파일 지정
$this->setTemplateFile('insert_productextrainfo');
}
public function dispHotopayAdminUpdateProductExtraInfo()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$output = HotopayModel::getProductExtraInfoByInfoSrl($vars->info_srl);
Context::set('productextrainfo', $output);
// 스킨 파일 지정
$this->setTemplateFile('update_productextrainfo');
}
public function dispHotopayAdminDeleteProductExtraInfo()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$output = HotopayModel::getProductExtraInfoByInfoSrl($vars->info_srl);
Context::set('productextrainfo', $output);
// 스킨 파일 지정
$this->setTemplateFile('delete_productextrainfo');
}
public function dispHotopayAdminCartList()
{
// 현재 설정 상태 불러오기
$config = $this->getConfig();
$vars = Context::getRequestVars();
// Context에 세팅
Context::set('hotopay_config', $config);
$output = HotopayModel::getCartItemList();
Context::set('cart_item_list', $output->data);
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('page_navigation', $output->page_navigation);
// 스킨 파일 지정
$this->setTemplateFile('index_cartlist');
}
}