admincp_city.inc.php
3.46 KB
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
<?php
/**
* DZAPP Haodai Admin Control Panel -- City List
*
* @copyright (c) 2013 DZAPP. (http://www.dzapp.cn)
* @author BranchZero <branchzero@gmail.com>
*/
if(!defined('IN_DISCUZ') || !defined('IN_ADMINCP')) {
exit('Access Denied');
}
include_once DISCUZ_ROOT.'./data/dzapp_haodai_config.php';
include_once DISCUZ_ROOT.'./source/plugin/dzapp_haodai/haodai.api.class.php';
@include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_setting.php';
loadcache('plugin');
$lang = array_merge($lang, $scriptlang['dzapp_haodai']);
$var = $_G['cache']['plugin']['dzapp_haodai'];
if(isset($hd_token)){
if(!submitcheck('submit')){
if(!@include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_city.php' || TIMESTAMP - filemtime(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_city.php') > $var['refreshtime']){
$client = new HaoDaiClient(HD_AKEY, HD_SKEY, $hd_token['access_token']);
$client->set_debug(0);
$result = $client->get_xindai_zones();
$zonelist = $result['items'];
if(count($zonelist) > 0){
$zones = array();
foreach($zonelist as $value){
if($value['s_EN'] == 'www') continue;
$value['zone_name'] = diconv($value['zone_name'], 'UTF-8', CHARSET);
$value['Province'] = diconv($value['Province'], 'UTF-8', CHARSET);
$value['area'] = diconv($value['area'], 'UTF-8', CHARSET);
$zones[$value['s_EN']] = $value['zone_name'];
$zonesort['provinces'][$value['Province']][$value['s_EN']] = $value['zone_name'];
$zonesort['letter_raw'][$value['letter']][$value['s_EN']] = $value['zone_name'];
$zonesort['area'][$value['area']][$value['s_EN']] = $value['zone_name'];
}
foreach(range('A', 'Z') as $letter) {
if(!empty($zonesort['letter_raw'][$letter])) $zonesort['letter'][$letter] = $zonesort['letter_raw'][$letter];
}
require_once libfile('function/cache');
writetocache('dzapp_haodai_city', getcachevars(array('zones' => $zones)));
writetocache('dzapp_haodai_city_sort', getcachevars(array('zonesort' => $zonesort)));
}else{
cpmsg('callback_error_admin', 'action=plugins&operation=config&identifier=dzapp_haodai&pmod=admincp_callback', 'error');
}
}
$catselect = "<select name=\"CITY\">";
foreach($zones as $key => $value){
$catselect .= "<option value=\"$key\" ".($key == HD_CITY ? 'selected="selected"' : NULL).">$value</option>\n";
}
$catselect .= '</select>';
showformheader('plugins&operation=config&identifier=dzapp_haodai&pmod=admincp_city');
showtableheader($lang['choosecity']);
showsetting($lang['localcity'], '', '', $catselect);
showtablefooter();
showsubmit('submit', 'submit');
showformfooter();
}else{
$config = array();
$config['HD_REF'] = HD_REF;
$config['HD_AKEY'] = HD_AKEY;
$config['HD_SKEY'] = HD_SKEY;
$config['HD_CALLBACK_URL'] = HD_CALLBACK_URL;
$config['HD_API_HOST'] = HD_API_HOST;
$config['HD_CITY'] = $_GET['CITY'];
$config = daddslashes($config);
$configfile = "<?php \r\n";
foreach($config as $key => $value){
$configfile .= "define('$key', '$value');\r\n";
}
$configfile .= "?>";
$file = DISCUZ_ROOT."./data/dzapp_haodai_config.php";
$fp = fopen($file, 'w');
fwrite($fp, $configfile);
fclose($fp);
cpmsg('setting_succeed', 'action=plugins&operation=config&identifier=dzapp_haodai&pmod=admincp_city', 'succeed');
}
}else{
cpmsg('callback_error_admin', 'action=plugins&operation=config&identifier=dzapp_haodai&pmod=admincp_callback', 'error');
}
?>