bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
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
<?php
 
/**
 * 管理中心商店设置
 */
 
define('IN_ECS', true);
 
/* 代码 */
require(dirname(__FILE__) . '/includes/init.php');
 
if($GLOBALS['_CFG']['certificate_id']  == '')
{
    $certi_id='error';
}
else
{
    $certi_id=$GLOBALS['_CFG']['certificate_id'];
}
 
$sess_id = $GLOBALS['sess']->get_session_id();
 
$auth = mktime();
$ac = md5($certi_id.'SHOPEX_SMS'.$auth);
$url = 'http://service.shopex.cn/sms/index.php?certificate_id='.$certi_id.'&sess_id='.$sess_id.'&auth='.$auth.'&ac='.$ac;
 
/*------------------------------------------------------ */
//-- 列表编辑 ?act=list_edit
/*------------------------------------------------------ */
if ($_REQUEST['act'] == 'list_edit')
{
    /* 检查权限 */
    admin_priv('shop_base');
    /* 可选语言 */
    $dir = opendir('../languages');
    $lang_list = array();
    while (@$file = readdir($dir))
    {
        if ($file != '.' && $file != '..' &&  $file != '.svn' && $file != '_svn' && is_dir('../languages/' .$file))
        {
            $lang_list[] = $file;
        }
    }
    @closedir($dir);
    
    /*$sql="select * from ecs_supplier_shop_config where code='jwdbj' and supplier_id=".$_SESSION['supplier_id'];
    $jwd=$db->getRow($sql);
    if(empty($jwd['id']))
    { 
        $sql="insert into ecs_supplier_shop_config(parent_id, code,type,sort_order,supplier_id) VALUES ('1','jwdbj','jwd','1','".$_SESSION['supplier_id']."')";
     }   */
   $group_list = get_settings(array('1'), array('shop_header_color','shop_header_text'));
    function get_street_type(){
    $sql = "select str_id,str_name from ".$GLOBALS['ecs']->table('street_category')." where is_show = 1";
    $info = $GLOBALS['db']->getAll($sql);
    $ret = array();
    foreach($info as $k=>$v){
        $ret[$v['str_id']] = $v['str_name'];
    }
    return $ret;
}
    //$street_info = $db->getRow("select * from ".$ecs->table('supplier_street')." where supplier_id=".$_SESSION['supplier_id']);
    $smarty->assign('stype',get_street_type());
    //$item_list[][9]['vars']=$street_info;
   // $group_list[9]['name']='店铺设置';
    //$group_list[9]['code']='shop_set';
    //$group_list[9]['vars']['0']['code']='shop';
    //$street_info = $db->getRow("select * from ".$ecs->table('supplier_street')." where supplier_id=".$_SESSION['supplier_id']);
     //$group_list[9]['vars'][]=$street_info;
    //$group_list[1]['vars']['0']['store_dir']='shop';
//echo "<pre>";
    //print_r($street_info);
//print_r($group_list);
 
    $smarty->assign('lang_list',    $lang_list);
    $smarty->assign('ur_here',      $_LANG['01_shop_config']);
    $smarty->assign('group_list',   $group_list);
    $smarty->assign('countries',    get_regions());
 
    if (strpos(strtolower($_SERVER['SERVER_SOFTWARE']), 'iis') !== false)
    {
        $rewrite_confirm = $_LANG['rewrite_confirm_iis'];
    }
    else
    {
        $rewrite_confirm = $_LANG['rewrite_confirm_apache'];
    }
    $smarty->assign('rewrite_confirm', $rewrite_confirm);
 
    if ($_CFG['shop_country'] > 0)
    {
        $smarty->assign('provinces', get_regions(1, $_CFG['shop_country']));
        if ($_CFG['shop_province'])
        {
            $smarty->assign('cities', get_regions(2, $_CFG['shop_province']));
        }
    }
    $smarty->assign('cfg', $_CFG);
 
    //zhouhui
    $sql = "SELECT latitude,longitude FROM ".$ecs->table('supplier')." where supplier_id=". $_SESSION['supplier_id'];
    $supplier_info = $db->getRow($sql);
    $smarty->assign('supplier_info', $supplier_info);
 
    assign_query_info();
    $smarty->display('shop_config.htm');
}
 
/*------------------------------------------------------ */
//-- 邮件服务器设置
/*------------------------------------------------------ */
elseif ($_REQUEST['act'] == 'mail_settings')
{
    /* 检查权限 */
    admin_priv('shop_config');
 
    $arr = get_settings(array(5));
 
    assign_query_info();
 
    $smarty->assign('ur_here',      $_LANG['mail_settings']);
    $smarty->assign('cfg', $arr[5]['vars']);
    $smarty->display('shop_config_mail_settings.htm');
}
 
/*------------------------------------------------------ */
//-- 提交   ?act=post
/*------------------------------------------------------ */
elseif ($_REQUEST['act'] == 'post')
{
    $type = empty($_POST['type']) ? '' : $_POST['type'];
    $jd=$_POST['jingdu'];
    $wd=$_POST['weidu'];
 
    //zhouhui
    $db->query("UPDATE ".$ecs->table('supplier')." set latitude='$wd',longitude='$jd' where supplier_id=".$_SESSION['supplier_id']);
    //$jd= substr($jd,7);
    //$wd= substr($wd,7);
    $sql="select * from ecs_supplier_shop_config where code='jingdu' and supplier_id=".$_SESSION['supplier_id'];
    $jingdu=$db->getRow($sql);
    if(empty($jingdu['id']))
    { 
        $sql="insert into ecs_supplier_shop_config(parent_id, code,type,value,sort_order,supplier_id) VALUES ('1','jingdu','jwd','".$jd."','1','".$_SESSION['supplier_id']."')";
        @$db->query($sql);
     }else{
        $sql="update ecs_supplier_shop_config set value='".$jd."' where code='jingdu' and supplier_id=".$_SESSION['supplier_id'];
        @$db->query($sql);
     }   
    
    $sql="select * from ecs_supplier_shop_config where code='weidu' and supplier_id=".$_SESSION['supplier_id'];
    $weidu=$db->getRow($sql);
    if(empty($weidu['id']))
    { 
        $sql="insert into ecs_supplier_shop_config(parent_id, code,type,value,sort_order,supplier_id) VALUES ('1','weidu','jwd','".$wd."','1','".$_SESSION['supplier_id']."')";
        @$db->query($sql);
     }else{
        $sql="update ecs_supplier_shop_config set value='".$wd."' where code='weidu' and supplier_id=".$_SESSION['supplier_id'];
        @$db->query($sql);
     }
     
     
     
     
    /* 检查权限 */
    //admin_priv('shop_config');
 
    /* 允许上传的文件类型 */
    $allow_file_types = '|GIF|JPG|PNG|BMP|SWF|DOC|XLS|PPT|MID|WAV|ZIP|RAR|PDF|CHM|RM|TXT|CERT|';
 
    /* 保存变量值 */
    $count = count($_POST['value']);
    $arr = array();
    $sql = 'SELECT id, value FROM ' . $ecs->table('supplier_shop_config') . ' WHERE supplier_id='.$_SESSION['supplier_id'];
    $res= $db->query($sql);
    while($row = $db->fetchRow($res))
    {
        $arr[$row['id']] = $row['value'];
    }
    foreach ($_POST['value'] AS $key => $val)
    {
        if($arr[$key] != $val)
        {
            $sql = "UPDATE " . $ecs->table('supplier_shop_config') . " SET value = '" . trim($val) . "' WHERE id = '" . $key . "' AND supplier_id=".$_SESSION['supplier_id'];
            $db->query($sql);
        }
    }
 
    /* 处理上传文件 */
    $file_var_list = array();
    $sql = "SELECT * FROM " . $ecs->table('supplier_shop_config') . " WHERE parent_id > 0 AND type = 'file' AND supplier_id=".$_SESSION['supplier_id'];
    $res = $db->query($sql);
    while ($row = $db->fetchRow($res))
    {
        $file_var_list[$row['code']] = $row;
    }
 
    foreach ($_FILES AS $code => $file)
    {
        /* 判断用户是否选择了文件 */
        if ((isset($file['error']) && $file['error'] == 0) || (!isset($file['error']) && $file['tmp_name'] != 'none'))
        {
            /* 检查上传的文件类型是否合法 */
            if (!check_file_type($file['tmp_name'], $file['name'], $allow_file_types))
            {
                sys_msg(sprintf($_LANG['msg_invalid_file'], $file['name']));
            }
            else
            {
                if ($code == 'shop_logo')
                {
                    include_once('includes/lib_template.php');
                    $info = get_template_info($_CFG['template']);
                    
                    $logoinfo = explode('.',$info['logo']);
                    $info['logo'] = 'logo_supplier'.$_SESSION['supplier_id'].'.'.$logoinfo[1];//对店铺logo重启名称
 
                    //$file_name = str_replace('{$template}', $_CFG['template'], $file_var_list[$code]['store_dir']) . $info['logo'];
                    $to_path =  ROOT_PATH.DATA_DIR.'/supplier/logo/';
                    $file_name = $to_path.$info['logo'];
                }
                elseif ($code == 'watermark')
                {
                    $ext = array_pop(explode('.', $file['name']));
                    $file_name = $file_var_list[$code]['store_dir'] . 'watermark.' . $ext;
                    if (file_exists($file_var_list[$code]['value']))
                    {
                        @unlink($file_var_list[$code]['value']);
                    }
                }
                elseif($code == 'wap_logo')
                {
                    $ext = array_pop(explode('.', $file['name']));
                    $file_name = $file_var_list[$code]['store_dir'] . 'wap_logo.' . $ext;
                    if (file_exists($file_var_list[$code]['value']))
                    {
                        @unlink($file_var_list[$code]['value']);
                    }
                }
                else
                {
                    $file_name = $file_var_list[$code]['store_dir'] . $file['name'];
                }
 
                /* 判断是否上传成功 */
                if (move_upload_file($file['tmp_name'], $file_name))
                {
                    if($code == 'shop_logo'){
                        include_once(ROOT_PATH . 'includes/cls_image.php');
                        $image = new cls_image($_CFG['bgcolor']);
                        $image->create_pic_name = 'logo_supplier'.$_SESSION['supplier_id'];
                        $file_name = '/'.$image->make_thumb($file_name,360,180,$to_path);
                    }
                    
                    $sql = "UPDATE " . $ecs->table('supplier_shop_config') . " SET value = '$file_name' WHERE code = '$code' AND supplier_id=".$_SESSION['supplier_id'];
                    $db->query($sql);
                }
                else
                {
                    sys_msg(sprintf($_LANG['msg_upload_failed'], $file['name'], $file_var_list[$code]['store_dir']));
                }
            }
        }
    }
 
    /* 处理发票类型及税率 */
    /*
    if (!empty($_POST['invoice_rate']))
    {
        foreach ($_POST['invoice_rate'] as $key => $rate)
        {
            $rate = round(floatval($rate), 2);
            if ($rate < 0)
            {
                $rate = 0;
            }
            $_POST['invoice_rate'][$key] = $rate;
        }
        $invoice = array(
            'type' => $_POST['invoice_type'],
            'rate' => $_POST['invoice_rate']
        );
        $sql = "UPDATE " . $ecs->table('shop_config') . " SET value = '" . serialize($invoice) . "' WHERE code = 'invoice_type'";
        $db->query($sql);
    }
    */
    /* 记录日志 */
    //admin_log('', 'edit', 'shop_config');
 
    /* 清除缓存 */
    clear_all_files();
    
    $links[] = array('text' => $_LANG['back_shop_config'], 'href' => 'shop_config.php?act=list_edit');
    sys_msg($_LANG['save_success'], 0, $links);
}
 
/*------------------------------------------------------ */
//-- 发送测试邮件
/*------------------------------------------------------ */
elseif ($_REQUEST['act'] == 'send_test_email')
{
    /* 检查权限 */
    check_authz_json('shop_config');
 
    /* 取得参数 */
    $email          = trim($_POST['email']);
 
    /* 更新配置 */
    $_CFG['mail_service'] = intval($_POST['mail_service']);
    $_CFG['smtp_host']    = trim($_POST['smtp_host']);
    $_CFG['smtp_port']    = trim($_POST['smtp_port']);
    $_CFG['smtp_user']    = json_str_iconv(trim($_POST['smtp_user']));
    $_CFG['smtp_pass']    = trim($_POST['smtp_pass']);
    $_CFG['smtp_mail']    = trim($_POST['reply_email']);
    $_CFG['mail_charset'] = trim($_POST['mail_charset']);
 
    if (send_mail('', $email, $_LANG['test_mail_title'], $_LANG['cfg_name']['email_content'], 0))
    {
        make_json_result('', $_LANG['sendemail_success'] . $email);
    }
    else
    {
        make_json_error(join("\n", $err->_message));
    }
}
 
/*------------------------------------------------------ */
//-- 删除上传文件
/*------------------------------------------------------ */
elseif ($_REQUEST['act'] == 'del')
{
    /* 检查权限 */
    //check_authz_json('shop_config');
 
    /* 取得参数 */
    $code          = trim($_GET['code']);
 
    $filename = $_CFG[$code];
 
    //删除文件
    @unlink($filename);
 
    //更新设置
    update_configure($code, '');
 
    /* 记录日志 */
    //admin_log('', 'edit', 'shop_config');
 
    /* 清除缓存 */
    clear_all_files();
 
    sys_msg($_LANG['save_success'], 0);
 
}
 
/**
 * 设置系统设置
 *
 * @param   string  $key
 * @param   string  $val
 *
 * @return  boolean
 */
function update_configure($key, $val='')
{
    if (!empty($key))
    {
        $sql = "UPDATE " . $GLOBALS['ecs']->table('supplier_shop_config') . " SET value='$val' WHERE code='$key' AND supplier_id=".$_SESSION['supplier_id'];
 
        return $GLOBALS['db']->query($sql);
    }
 
    return true;
}
 
 
 
/**
 * 获得设置信息
 *
 * @param   array   $groups     需要获得的设置组
 * @param   array   $excludes   不需要获得的设置组
 *
 * @return  array
 */
function get_settings($groups=null, $excludes=null)
{
    global $db, $ecs, $_LANG;
 
    
    $config_groups = '';
    $excludes_groups = '';
 
    if (!empty($groups))
    {
        foreach ($groups AS $key=>$val)
        {
            $config_groups .= " AND (id='$val' OR parent_id='$val')";
        }
    }
 
    if (!empty($excludes))
    {
        foreach ($excludes AS $key=>$val)
        {
            $excludes_groups .= " AND (parent_id<>'$val' AND id<>'$val')";
        }
    }
    
    create_shop_settiongs();
 
    /* 取出全部数据:分组和变量 */
    $sql = "SELECT * FROM " . $ecs->table('supplier_shop_config') .
            " WHERE supplier_id=".$_SESSION['supplier_id']." AND type<>'hidden' ORDER BY parent_id, sort_order, id";
    $item_list = $db->getAll($sql);
    /* 整理数据 */
    $group_list = array();
    foreach ($item_list AS $key => $item)
    {
        $pid = $item['parent_id'];
        $item['name'] = isset($_LANG['cfg_name'][$item['code']]) ? $_LANG['cfg_name'][$item['code']] : $item['code'];
        $item['desc'] = isset($_LANG['cfg_desc'][$item['code']]) ? $_LANG['cfg_desc'][$item['code']] : '';
 
        if ($item['code'] == 'sms_shop_mobile')
        {
            $item['url'] = 1;
        }
        if ($pid == 0)
        {
            /* 分组 */
            if ($item['type'] == 'group')
            {
                $group_list[$item['id']] = $item;
                //echo "<pre>";
               // print_r($group_list);
            }
        }
        else
        {
            /* 变量 */
            if (isset($group_list[$pid]))
            {
                if ($item['store_range'])
                {
                    $item['store_options'] = explode(',', $item['store_range']);
 
                    foreach ($item['store_options'] AS $k => $v)
                    {
                        $item['display_options'][$k] = isset($_LANG['cfg_range'][$item['code']][$v]) ?
                                $_LANG['cfg_range'][$item['code']][$v] : $v;
                    }
                }
                $group_list[$pid]['vars'][] = $item;
            }
        }
 
    }
 
 // echo $_SESSION['supplier_id'];
  
 
  return $group_list;
}
 
?>