436 lines
13 KiB
PHP
Executable File
436 lines
13 KiB
PHP
Executable File
<?php
|
||
|
||
define('IN_ECS', true);
|
||
|
||
require(dirname(__FILE__) . '/includes/init.php');
|
||
//require_once(ROOT_PATH . '/includes/lib_order.php');
|
||
|
||
/*------------------------------------------------------ */
|
||
//-- 框架
|
||
/*------------------------------------------------------ */
|
||
if ($_REQUEST['act'] == '')
|
||
{
|
||
$smarty->assign('shop_url', urlencode($ecs->url()));
|
||
$smarty->display('index.htm');
|
||
}
|
||
|
||
/*------------------------------------------------------ */
|
||
//-- 顶部框架的内容
|
||
/*------------------------------------------------------ */
|
||
elseif ($_REQUEST['act'] == 'top')
|
||
{
|
||
// 获得管理员设置的菜单
|
||
$lst = array();
|
||
$nav = $db->GetOne('SELECT nav_list FROM ' . $ecs->table('admin_user') . " WHERE user_id = '" . $_SESSION['admin_id'] . "'");
|
||
|
||
if (!empty($nav))
|
||
{
|
||
$arr = explode(',', $nav);
|
||
|
||
foreach ($arr AS $val)
|
||
{
|
||
$tmp = explode('|', $val);
|
||
$lst[$tmp[1]] = $tmp[0];
|
||
}
|
||
}
|
||
|
||
// 获得管理员ID
|
||
$smarty->assign('back_name',BACK_NAME);
|
||
$smarty->assign('back_color',BACK_COLOR);
|
||
$smarty->assign('send_mail_on',$_CFG['send_mail_on']);
|
||
$smarty->assign('nav_list', $lst);
|
||
$smarty->assign('admin_id', $_SESSION['admin_id']);
|
||
$smarty->assign('certi', $_CFG['certi']);
|
||
|
||
$smarty->display('top.htm');
|
||
}
|
||
|
||
/*------------------------------------------------------ */
|
||
//-- 左边的框架
|
||
/*------------------------------------------------------ */
|
||
elseif ($_REQUEST['act'] == 'menu')
|
||
{
|
||
include_once('includes/inc_menu.php');
|
||
|
||
// 权限对照表
|
||
include_once('includes/inc_priv.php');
|
||
|
||
foreach ($modules AS $key => $value)
|
||
{
|
||
ksort($modules[$key]);
|
||
}
|
||
ksort($modules);
|
||
|
||
foreach ($modules AS $key => $val)
|
||
{
|
||
$menus[$key]['label'] = $_LANG[$key];
|
||
if (is_array($val))
|
||
{
|
||
foreach ($val AS $k => $v)
|
||
{
|
||
if ( isset($purview[$k]))
|
||
{
|
||
if (is_array($purview[$k]))
|
||
{
|
||
$boole = false;
|
||
foreach ($purview[$k] as $action)
|
||
{
|
||
$boole = $boole || admin_priv($action, '', false);
|
||
}
|
||
if (!$boole)
|
||
{
|
||
continue;
|
||
}
|
||
|
||
}
|
||
else
|
||
{
|
||
if (! admin_priv($purview[$k], '', false))
|
||
{
|
||
continue;
|
||
}
|
||
}
|
||
}
|
||
if ($k == 'ucenter_setup' && $_CFG['integrate_code'] != 'ucenter')
|
||
{
|
||
continue;
|
||
}
|
||
$menus[$key]['children'][$k]['label'] = $_LANG[$k];
|
||
$menus[$key]['children'][$k]['action'] = $v;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
$menus[$key]['action'] = $val;
|
||
}
|
||
|
||
// 如果children的子元素长度为0则删除该组
|
||
if(empty($menus[$key]['children']))
|
||
{
|
||
unset($menus[$key]);
|
||
}
|
||
|
||
}
|
||
|
||
$smarty->assign('menus', $menus);
|
||
$smarty->assign('no_help', $_LANG['no_help']);
|
||
$smarty->assign('help_lang', $_CFG['lang']);
|
||
$smarty->assign('charset', EC_CHARSET);
|
||
$smarty->assign('admin_id', $_SESSION['admin_id']);
|
||
$smarty->display('menu.htm');
|
||
}
|
||
|
||
|
||
/*------------------------------------------------------ */
|
||
//-- 清除缓存
|
||
/*------------------------------------------------------ */
|
||
|
||
elseif ($_REQUEST['act'] == 'clear_cache')
|
||
{
|
||
clear_all_files();
|
||
|
||
sys_msg($_LANG['caches_cleared']);
|
||
}
|
||
|
||
|
||
/*------------------------------------------------------ */
|
||
//-- 主窗口
|
||
/*------------------------------------------------------ */
|
||
elseif ($_REQUEST['act'] == 'main')
|
||
{
|
||
$gd = gd_version();
|
||
|
||
/* 检查文件目录属性 */
|
||
$warning = array();
|
||
|
||
if ($_CFG['shop_closed'])
|
||
{
|
||
$warning[] = $_LANG['shop_closed_tips'];
|
||
}
|
||
|
||
$open_basedir = ini_get('open_basedir');
|
||
if (!empty($open_basedir))
|
||
{
|
||
/* 如果 open_basedir 不为空,则检查是否包含了 upload_tmp_dir */
|
||
$open_basedir = str_replace(array("\\", "\\\\"), array("/", "/"), $open_basedir);
|
||
$upload_tmp_dir = ini_get('upload_tmp_dir');
|
||
|
||
if (empty($upload_tmp_dir))
|
||
{
|
||
if (stristr(PHP_OS, 'win'))
|
||
{
|
||
$upload_tmp_dir = getenv('TEMP') ? getenv('TEMP') : getenv('TMP');
|
||
$upload_tmp_dir = str_replace(array("\\", "\\\\"), array("/", "/"), $upload_tmp_dir);
|
||
}
|
||
else
|
||
{
|
||
$upload_tmp_dir = getenv('TMPDIR') === false ? '/tmp' : getenv('TMPDIR');
|
||
}
|
||
}
|
||
|
||
if (!stristr($open_basedir, $upload_tmp_dir))
|
||
{
|
||
$warning[] = sprintf($_LANG['temp_dir_cannt_read'], $upload_tmp_dir);
|
||
}
|
||
}
|
||
$result = file_mode_info("../".DATA_DIR);
|
||
if ($result < 2)
|
||
{
|
||
$warning[] = sprintf($_LANG['not_writable'], 'data', $_LANG['data_cannt_write']);
|
||
}
|
||
|
||
$result = file_mode_info('../images');
|
||
if ($result < 2)
|
||
{
|
||
$warning[] = sprintf($_LANG['not_writable'], 'images', $_LANG['images_cannt_write']);
|
||
}
|
||
else
|
||
{
|
||
$result = file_mode_info( '../'.IMAGE_DIR . '/upload');
|
||
if ($result < 2)
|
||
{
|
||
$warning[] = sprintf($_LANG['not_writable'], IMAGE_DIR . '/upload', $_LANG['imagesupload_cannt_write']);
|
||
}
|
||
}
|
||
|
||
$result = file_mode_info('../temp');
|
||
if ($result < 2)
|
||
{
|
||
$warning[] = sprintf($_LANG['not_writable'], 'temp', $_LANG['tpl_cannt_write']);
|
||
}
|
||
|
||
$result = file_mode_info('../temp/backup');
|
||
|
||
if ($result < 2)
|
||
{
|
||
$warning[] = sprintf($_LANG['not_writable'], 'temp/backup', $_LANG['tpl_backup_cannt_write']);
|
||
}
|
||
|
||
clearstatcache();
|
||
|
||
$smarty->assign('warning_arr', $warning);
|
||
|
||
|
||
/* 管理员留言信息 */
|
||
$sql = 'SELECT a.block,a.dstamp,b.name as uname ,c.name as pname ' .
|
||
'FROM ' . $ecs->table('user_ad') . ' AS a, ' . $ecs->table('users') . ' AS b ,' . $ecs->table('portal') . ' AS c ' .
|
||
"WHERE a.user_id = b.user_id and a.pt_id=c.id and (a.dstamp >= '".date('Y-m-d')."' and a.dstamp <= '".date('Y-m-d',strtotime("+".$_CFG['expire_day']." day"))."') ";
|
||
$expire_ad = $db->GetAll($sql);
|
||
|
||
for($i=0;$i<count($expire_ad);$i++){
|
||
$mblock=$expire_ad[$i]['block'];
|
||
$expire_ad[$i]['block']='';
|
||
if($mblock&1){
|
||
$expire_ad[$i]['block'].='(輪撥區)';
|
||
}
|
||
if($mblock&2){
|
||
$expire_ad[$i]['block'].='(第一區)';
|
||
}
|
||
if($mblock&4){
|
||
$expire_ad[$i]['block'].='(第二區)';
|
||
}
|
||
if($mblock&8){
|
||
$expire_ad[$i]['block'].='(第三區)';
|
||
}
|
||
}
|
||
|
||
$smarty->assign('expire_ad', $expire_ad);
|
||
|
||
|
||
$today_start=local_mktime(0,0,0,date('m'),date('d'),date('Y'));
|
||
$today_end=local_mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
|
||
$month_start=local_mktime(0,0,0,date('m'),1,date('Y'));
|
||
$month_end=local_mktime(23,59,59,date('m'),date('t'),date('Y'));
|
||
|
||
$time = gmtime();
|
||
|
||
/* 访问统计信息 */
|
||
$today = local_getdate();
|
||
|
||
$mysql_ver = $db->version(); // 获得 MySQL 版本
|
||
|
||
/* 系统信息 */
|
||
$sys_info['os'] = PHP_OS;
|
||
$sys_info['ip'] = $_SERVER['SERVER_ADDR'];
|
||
$sys_info['web_server'] = $_SERVER['SERVER_SOFTWARE'];
|
||
$sys_info['php_ver'] = PHP_VERSION;
|
||
$sys_info['mysql_ver'] = $mysql_ver;
|
||
$sys_info['zlib'] = function_exists('gzclose') ? $_LANG['yes']:$_LANG['no'];
|
||
$sys_info['safe_mode'] = (boolean) ini_get('safe_mode') ? $_LANG['yes']:$_LANG['no'];
|
||
$sys_info['safe_mode_gid'] = (boolean) ini_get('safe_mode_gid') ? $_LANG['yes'] : $_LANG['no'];
|
||
$sys_info['timezone'] = function_exists("date_default_timezone_get") ? date_default_timezone_get() : $_LANG['no_timezone'];
|
||
$sys_info['socket'] = function_exists('fsockopen') ? $_LANG['yes'] : $_LANG['no'];
|
||
|
||
if ($gd == 0)
|
||
{
|
||
$sys_info['gd'] = 'N/A';
|
||
}
|
||
else
|
||
{
|
||
if ($gd == 1)
|
||
{
|
||
$sys_info['gd'] = 'GD1';
|
||
}
|
||
else
|
||
{
|
||
$sys_info['gd'] = 'GD2';
|
||
}
|
||
|
||
$sys_info['gd'] .= ' (';
|
||
|
||
/* 检查系统支持的图片类型 */
|
||
if ($gd && (imagetypes() & IMG_JPG) > 0)
|
||
{
|
||
$sys_info['gd'] .= ' JPEG';
|
||
}
|
||
|
||
if ($gd && (imagetypes() & IMG_GIF) > 0)
|
||
{
|
||
$sys_info['gd'] .= ' GIF';
|
||
}
|
||
|
||
if ($gd && (imagetypes() & IMG_PNG) > 0)
|
||
{
|
||
$sys_info['gd'] .= ' PNG';
|
||
}
|
||
|
||
$sys_info['gd'] .= ')';
|
||
}
|
||
|
||
/* IP库版本 */
|
||
$sys_info['ip_version'] = ecs_geoip('255.255.255.0');
|
||
|
||
/* 允许上传的最大文件大小 */
|
||
$sys_info['max_filesize'] = ini_get('upload_max_filesize');
|
||
|
||
$smarty->assign('sys_info', $sys_info);
|
||
|
||
assign_query_info();
|
||
$smarty->assign('ecs_version', VERSION);
|
||
$smarty->assign('ecs_release', RELEASE);
|
||
$smarty->assign('ecs_lang', $_CFG['lang']);
|
||
$smarty->assign('ecs_charset', strtoupper(EC_CHARSET));
|
||
$smarty->assign('install_date', local_date($_CFG['date_format'], $_CFG['install_date']));
|
||
$smarty->display('start.htm');
|
||
}
|
||
|
||
/*------------------------------------------------------ */
|
||
//-- 拖动的帧
|
||
/*------------------------------------------------------ */
|
||
|
||
elseif ($_REQUEST['act'] == 'drag')
|
||
{
|
||
$smarty->display('drag.htm');;
|
||
}
|
||
|
||
|
||
/*------------------------------------------------------ */
|
||
//-- Totolist操作
|
||
/*------------------------------------------------------ */
|
||
elseif ($_REQUEST['act'] == 'save_todolist')
|
||
{
|
||
$content = json_str_iconv($_POST["content"]);
|
||
$sql = "UPDATE" .$GLOBALS['ecs']->table('admin_user'). " SET todolist='" . $content . "' WHERE user_id = " . $_SESSION['admin_id'];
|
||
$GLOBALS['db']->query($sql);
|
||
}
|
||
|
||
elseif ($_REQUEST['act'] == 'get_todolist')
|
||
{
|
||
$sql = "SELECT todolist FROM " .$GLOBALS['ecs']->table('admin_user'). " WHERE user_id = " . $_SESSION['admin_id'];
|
||
$content = $GLOBALS['db']->getOne($sql);
|
||
echo $content;
|
||
}
|
||
|
||
// 邮件群发处理
|
||
elseif ($_REQUEST['act'] == 'send_mail')
|
||
{
|
||
if ($_CFG['send_mail_on'] == 'off')
|
||
{
|
||
make_json_result('', $_LANG['send_mail_off'], 0);
|
||
exit();
|
||
}
|
||
$sql = "SELECT * FROM " . $ecs->table('email_sendlist') . " ORDER BY pri DESC, last_send ASC LIMIT 1";
|
||
$row = $db->getRow($sql);
|
||
|
||
//发送列表为空
|
||
if (empty($row['id']))
|
||
{
|
||
make_json_result('', $_LANG['mailsend_null'], 0);
|
||
}
|
||
|
||
//发送列表不为空,邮件地址为空
|
||
if (!empty($row['id']) && empty($row['email']))
|
||
{
|
||
$sql = "DELETE FROM " . $ecs->table('email_sendlist') . " WHERE id = '$row[id]'";
|
||
$db->query($sql);
|
||
$count = $db->getOne("SELECT COUNT(*) FROM " . $ecs->table('email_sendlist'));
|
||
make_json_result('', $_LANG['mailsend_skip'], array('count' => $count, 'goon' => 1));
|
||
}
|
||
|
||
//查询相关模板
|
||
$sql = "SELECT * FROM " . $ecs->table('mail_templates') . " WHERE template_id = '$row[template_id]'";
|
||
$rt = $db->getRow($sql);
|
||
|
||
//如果是模板,则将已存入email_sendlist的内容作为邮件内容
|
||
//否则即是杂质,将mail_templates调出的内容作为邮件内容
|
||
if ($rt['type'] == 'template')
|
||
{
|
||
$rt['template_content'] = $row['email_content'];
|
||
}
|
||
|
||
if ($rt['template_id'] && $rt['template_content'])
|
||
{
|
||
if (send_mail('', $row['email'], $rt['template_subject'], $rt['template_content'], $rt['is_html']))
|
||
{
|
||
//发送成功
|
||
|
||
//从列表中删除
|
||
$sql = "DELETE FROM " . $ecs->table('email_sendlist') . " WHERE id = '$row[id]'";
|
||
$db->query($sql);
|
||
|
||
//剩余列表数
|
||
$count = $db->getOne("SELECT COUNT(*) FROM " . $ecs->table('email_sendlist'));
|
||
|
||
if($count > 0)
|
||
{
|
||
$msg = sprintf($_LANG['mailsend_ok'],$row['email'],$count);
|
||
}
|
||
else
|
||
{
|
||
$msg = sprintf($_LANG['mailsend_finished'],$row['email']);
|
||
}
|
||
make_json_result('', $msg, array('count' => $count));
|
||
}
|
||
else
|
||
{
|
||
//发送出错
|
||
|
||
if ($row['error'] < 3)
|
||
{
|
||
$time = time();
|
||
$sql = "UPDATE " . $ecs->table('email_sendlist') . " SET error = error + 1, pri = 0, last_send = '$time' WHERE id = '$row[id]'";
|
||
}
|
||
else
|
||
{
|
||
//将出错超次的纪录删除
|
||
$sql = "DELETE FROM " . $ecs->table('email_sendlist') . " WHERE id = '$row[id]'";
|
||
}
|
||
$db->query($sql);
|
||
|
||
$count = $db->getOne("SELECT COUNT(*) FROM " . $ecs->table('email_sendlist'));
|
||
make_json_result('', sprintf($_LANG['mailsend_fail'],$row['email']), array('count' => $count));
|
||
}
|
||
}
|
||
else
|
||
{
|
||
//无效的邮件队列
|
||
$sql = "DELETE FROM " . $ecs->table('email_sendlist') . " WHERE id = '$row[id]'";
|
||
$db->query($sql);
|
||
$count = $db->getOne("SELECT COUNT(*) FROM " . $ecs->table('email_sendlist'));
|
||
make_json_result('', sprintf($_LANG['mailsend_fail'],$row['email']), array('count' => $count));
|
||
}
|
||
}
|
||
|
||
|
||
?>
|