You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

495 lines
16 KiB

<?php
/**
* ECSHOP 专题管理
* ============================================================================
* * 版权所有 2005-2016 上海商创网络科技有限公司,并保留所有权利。
* 网站地址: http://www.ecmoban.com;
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
* 使用;不允许对程序代码以任何形式任何目的的再发布。
* ============================================================================
* $Author: liubo $
* $Id: topic.php 17217 2011-01-19 06:29:08Z liubo $
*/
define('IN_ECS', true);
require(dirname(__FILE__) . '/includes/init.php');
/* act操作项的初始化 */
if (empty($_REQUEST['act']))
{
$_REQUEST['act'] = 'list';
}
else
{
$_REQUEST['act'] = trim($_REQUEST['act']);
}
/* 配置风格颜色选项 */
$topic_style_color = array(
'0' => '008080',
'1' => '008000',
'2' => 'ffa500',
'3' => 'ff0000',
'4' => 'ffff00',
'5' => '9acd32',
'6' => 'ffd700'
);
$allow_suffix = array('gif', 'jpg', 'png', 'jpeg', 'bmp', 'swf');
/*------------------------------------------------------ */
//-- 专题列表页面
/*------------------------------------------------------ */
if ($_REQUEST['act'] == 'list')
{
admin_priv('topic_manage');
$smarty->assign('ur_here', $_LANG['09_topic']);
$smarty->assign('full_page', 1);
$list = get_topic_list();
$smarty->assign('topic_list', $list['item']);
$smarty->assign('filter', $list['filter']);
$smarty->assign('record_count', $list['record_count']);
$smarty->assign('page_count', $list['page_count']);
$sort_flag = sort_flag($list['filter']);
$smarty->assign($sort_flag['tag'], $sort_flag['img']);
assign_query_info();
$smarty->assign('action_link', array('text' => $_LANG['topic_add'], 'href' => 'topic.php?act=add'));
$smarty->display('topic_list.htm');
}
/* 添加,编辑 */
if ($_REQUEST['act'] == 'add' || $_REQUEST['act'] == 'edit')
{
admin_priv('topic_manage');
$isadd = $_REQUEST['act'] == 'add';
$smarty->assign('isadd', $isadd);
$topic_id = empty($_REQUEST['topic_id']) ? 0 : intval($_REQUEST['topic_id']);
include_once(ROOT_PATH.'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件
$smarty->assign('ur_here', $_LANG['09_topic']);
$smarty->assign('action_link', list_link($isadd));
$smarty->assign('cat_list', cat_list(0, 1));
$smarty->assign('brand_list', get_brand_list());
$smarty->assign('cfg_lang', $_CFG['lang']);
$smarty->assign('topic_style_color', $topic_style_color);
$width_height = get_toppic_width_height();
if(isset($width_height['pic']['width']) && isset($width_height['pic']['height']))
{
$smarty->assign('width_height', sprintf($_LANG['tips_width_height'], $width_height['pic']['width'], $width_height['pic']['height']));
}
if(isset($width_height['title_pic']['width']) && isset($width_height['title_pic']['height']))
{
$smarty->assign('title_width_height', sprintf($_LANG['tips_title_width_height'], $width_height['title_pic']['width'], $width_height['title_pic']['height']));
}
if (!$isadd)
{
$sql = "SELECT * FROM " . $ecs->table('topic') . " WHERE topic_id = '$topic_id'";
$topic = $db->getRow($sql);
$topic['start_time'] = local_date('Y-m-d', $topic['start_time']);
$topic['end_time'] = local_date('Y-m-d', $topic['end_time']);
create_html_editor('topic_intro', $topic['intro']);
require(ROOT_PATH . 'includes/cls_json.php');
$json = new JSON;
$topic['data'] = addcslashes($topic['data'], "'");
$topic['data'] = $json->encode(@unserialize($topic['data']));
$topic['data'] = addcslashes($topic['data'], "'");
if (empty($topic['topic_img']) && empty($topic['htmls']))
{
$topic['topic_type'] = 0;
}
elseif ($topic['htmls'] != '')
{
$topic['topic_type'] = 2;
}
elseif (preg_match('/.swf$/i', $topic['topic_img']))
{
$topic['topic_type'] = 1;
}
else
{
$topic['topic_type'] = '';
}
$smarty->assign('topic', $topic);
$smarty->assign('act', "update");
}
else
{
$topic = array('title' => '', 'topic_type' => 0, 'url' => 'http://');
$smarty->assign('topic', $topic);
create_html_editor('topic_intro');
$smarty->assign('act', "insert");
}
$smarty->display('topic_edit.htm');
}
elseif ($_REQUEST['act'] == 'insert' || $_REQUEST['act'] == 'update')
{
admin_priv('topic_manage');
$is_insert = $_REQUEST['act'] == 'insert';
$topic_id = empty($_POST['topic_id']) ? 0 : intval($_POST['topic_id']);
$topic_type= empty($_POST['topic_type']) ? 0 : intval($_POST['topic_type']);
switch ($topic_type)
{
case '0':
case '1':
// 主图上传
if ($_FILES['topic_img']['name'] && $_FILES['topic_img']['size'] > 0)
{
/* 检查文件合法性 */
if(!get_file_suffix($_FILES['topic_img']['name'], $allow_suffix))
{
sys_msg($_LANG['invalid_type']);
}
/* 处理 */
$name = date('Ymd');
for ($i = 0; $i < 6; $i++)
{
$name .= chr(mt_rand(97, 122));
}
$name .= '.' . end(explode('.', $_FILES['topic_img']['name']));
$target = ROOT_PATH . DATA_DIR . '/afficheimg/' . $name;
if (move_upload_file($_FILES['topic_img']['tmp_name'], $target))
{
$topic_img = DATA_DIR . '/afficheimg/' . $name;
}
}
else if (!empty($_REQUEST['url']))
{
/* 来自互联网图片 不可以是服务器地址 */
if(strstr($_REQUEST['url'], 'http') && !strstr($_REQUEST['url'], $_SERVER['SERVER_NAME']))
{
/* 取互联网图片至本地 */
$topic_img = get_url_image($_REQUEST['url']);
}
else{
sys_msg($_LANG['web_url_no']);
}
}
unset($name, $target);
$topic_img = empty($topic_img) ? $_POST['img_url'] : $topic_img;
$htmls = '';
break;
case '2':
$htmls = $_POST['htmls'];
$topic_img = '';
break;
}
// 标题图上传
if ($_FILES['title_pic']['name'] && $_FILES['title_pic']['size'] > 0)
{
/* 检查文件合法性 */
if(!get_file_suffix($_FILES['title_pic']['name'], $allow_suffix))
{
sys_msg($_LANG['invalid_type']);
}
/* 处理 */
$name = date('Ymd');
for ($i = 0; $i < 6; $i++)
{
$name .= chr(mt_rand(97, 122));
}
$name .= '.' . end(explode('.', $_FILES['title_pic']['name']));
$target = ROOT_PATH . DATA_DIR . '/afficheimg/' . $name;
if (move_upload_file($_FILES['title_pic']['tmp_name'], $target))
{
$title_pic = DATA_DIR . '/afficheimg/' . $name;
}
}
else if (!empty($_REQUEST['title_url']))
{
/* 来自互联网图片 不可以是服务器地址 */
if(strstr($_REQUEST['title_url'], 'http') && !strstr($_REQUEST['title_url'], $_SERVER['SERVER_NAME']))
{
/* 取互联网图片至本地 */
$title_pic = get_url_image($_REQUEST['title_url']);
}
else{
sys_msg($_LANG['web_url_no']);
}
}
unset($name, $target);
$title_pic = empty($title_pic) ? $_POST['title_img_url'] : $title_pic;
require(ROOT_PATH . 'includes/cls_json.php');
$start_time = local_strtotime($_POST['start_time']);
$end_time = local_strtotime($_POST['end_time']);
get_oss_add_file(array($topic_img, $title_pic));
$json = new JSON;
$tmp_data = $json->decode($_POST['topic_data']);
$data = serialize($tmp_data);
$base_style = $_POST['base_style'];
$keywords = $_POST['keywords'];
$description= $_POST['description'];
if ($is_insert)
{
$adminru = get_admin_ru_id(); //ecmoban模板堂 --zhuo
$sql = "INSERT INTO " . $ecs->table('topic') . " (title,start_time,end_time,data,intro,template,css,topic_img,title_pic,base_style, htmls,keywords,description, user_id)" .
"VALUES ('$_POST[topic_name]','$start_time','$end_time','$data','$_POST[topic_intro]','$_POST[topic_template_file]','$_POST[topic_css]', '$topic_img', '$title_pic', '$base_style', '$htmls','$keywords','$description', '$adminru[ru_id]')";
}
else
{
$sql = "UPDATE " . $ecs->table('topic') .
"SET title='$_POST[topic_name]',start_time='$start_time',end_time='$end_time',data='$data',intro='$_POST[topic_intro]',template='$_POST[topic_template_file]',css='$_POST[topic_css]', topic_img='$topic_img', title_pic='$title_pic', base_style='$base_style', htmls='$htmls', keywords='$keywords', description='$description'" .
" WHERE topic_id='$topic_id' LIMIT 1";
}
$db->query($sql);
clear_cache_files();
$links[] = array('href' => 'topic.php', 'text' => $_LANG['back_list']);
sys_msg($_LANG['succed'], 0, $links);
}
elseif ($_REQUEST['act'] == 'get_goods_list')
{
include_once(ROOT_PATH . 'includes/cls_json.php');
$json = new JSON;
$filters = $json->decode($_GET['JSON']);
$arr = get_goods_list($filters);
$opt = array();
foreach ($arr AS $key => $val)
{
$opt[] = array('value' => $val['goods_id'],
'text' => $val['goods_name']);
}
make_json_result($opt);
}
elseif ($_REQUEST["act"] == "delete")
{
admin_priv('topic_manage');
//删除图片
get_del_batch($_POST['checkboxs'], intval($_GET['id']), array('topic_img', 'title_pic'), 'topic_id', 'topic', 1);
$sql = "DELETE FROM " . $ecs->table('topic') . " WHERE ";
if (!empty($_POST['checkboxs']))
{
$sql .= db_create_in($_POST['checkboxs'], 'topic_id');
}
elseif (!empty($_GET['id']))
{
$_GET['id'] = intval($_GET['id']);
$sql .= "topic_id = '$_GET[id]'";
}
else
{
exit;
}
$db->query($sql);
clear_cache_files();
if (!empty($_REQUEST['is_ajax']))
{
$url = 'topic.php?act=query&' . str_replace('act=delete', '', $_SERVER['QUERY_STRING']);
ecs_header("Location: $url\n");
exit;
}
$links[] = array('href' => 'topic.php', 'text' => $_LANG['back_list']);
sys_msg($_LANG['succed'], 0, $links);
}
elseif ($_REQUEST["act"] == "query")
{
$topic_list = get_topic_list();
$smarty->assign('topic_list', $topic_list['item']);
$smarty->assign('filter', $topic_list['filter']);
$smarty->assign('record_count', $topic_list['record_count']);
$smarty->assign('page_count', $topic_list['page_count']);
$smarty->assign('use_storage', empty($_CFG['use_storage']) ? 0 : 1);
/* 排序标记 */
$sort_flag = sort_flag($topic_list['filter']);
$smarty->assign($sort_flag['tag'], $sort_flag['img']);
$tpl = 'topic_list.htm';
make_json_result($smarty->fetch($tpl), '',array('filter' => $topic_list['filter'], 'page_count' => $topic_list['page_count']));
}
/**
* 获取专题列表
* @access public
* @return void
*/
function get_topic_list()
{
//ecmoban模板堂 --zhuo start
$adminru = get_admin_ru_id();
$ruCat = '';
if($adminru['ru_id'] > 0){
$ruCat = " where user_id = '" .$adminru['ru_id']. "'";
}
//ecmoban模板堂 --zhuo end
$result = get_filter();
if ($result === false)
{
/* 查询条件 */
$filter['sort_by'] = empty($_REQUEST['sort_by']) ? 'topic_id' : trim($_REQUEST['sort_by']);
$filter['sort_order'] = empty($_REQUEST['sort_order']) ? 'DESC' : trim($_REQUEST['sort_order']);
$sql = "SELECT COUNT(*) FROM ".$GLOBALS['ecs']->table('topic');
$filter['record_count'] = $GLOBALS['db']->getOne($sql);
/* 分页大小 */
$filter = page_and_size($filter);
$sql = "SELECT * FROM " .$GLOBALS['ecs']->table('topic'). $ruCat. " ORDER BY $filter[sort_by] $filter[sort_order]";
set_filter($filter, $sql);
}
else
{
$sql = $result['sql'];
$filter = $result['filter'];
}
$query = $GLOBALS['db']->selectLimit($sql, $filter['page_size'], $filter['start']);
$res = array();
while($topic = $GLOBALS['db']->fetch_array($query)){
$topic['start_time'] = local_date('Y-m-d',$topic['start_time']);
$topic['end_time'] = local_date('Y-m-d',$topic['end_time']);
$topic['url'] = $GLOBALS['ecs']->url() . 'topic.php?topic_id=' . $topic['topic_id'];
$res[] = $topic;
}
$arr = array('item' => $res, 'filter' => $filter, 'page_count' => $filter['page_count'], 'record_count' => $filter['record_count']);
return $arr;
}
/**
* 列表链接
* @param bool $is_add 是否添加(插入)
* @param string $text 文字
* @return array('href' => $href, 'text' => $text)
*/
function list_link($is_add = true, $text = '')
{
$href = 'topic.php?act=list';
if (!$is_add)
{
$href .= '&' . list_link_postfix();
}
if ($text == '')
{
$text = $GLOBALS['_LANG']['topic_list'];
}
return array('href' => $href, 'text' => $text);
}
function get_toppic_width_height()
{
$width_height = array();
$file_path = ROOT_PATH . 'themes/' . $GLOBALS['_CFG']['template'] . '/topic.dwt';
if (!file_exists($file_path) || !is_readable($file_path))
{
return $width_height;
}
$string = file_get_contents($file_path);
$pattern_width = '/var\s*topic_width\s*=\s*"(\d+)";/';
$pattern_height = '/var\s*topic_height\s*=\s*"(\d+)";/';
preg_match($pattern_width, $string, $width);
preg_match($pattern_height, $string, $height);
if(isset($width[1]))
{
$width_height['pic']['width'] = $width[1];
}
if(isset($height[1]))
{
$width_height['pic']['height'] = $height[1];
}
unset($width, $height);
$pattern_width = '/TitlePicWidth:\s{1}(\d+)/';
$pattern_height = '/TitlePicHeight:\s{1}(\d+)/';
preg_match($pattern_width, $string, $width);
preg_match($pattern_height, $string, $height);
if(isset($width[1]))
{
$width_height['title_pic']['width'] = $width[1];
}
if(isset($height[1]))
{
$width_height['title_pic']['height'] = $height[1];
}
return $width_height;
}
function get_url_image($url)
{
$ext = strtolower(end(explode('.', $url)));
if($ext != "gif" && $ext != "jpg" && $ext != "png" && $ext != "bmp" && $ext != "jpeg")
{
return $url;
}
$name = date('Ymd');
for ($i = 0; $i < 6; $i++)
{
$name .= chr(mt_rand(97, 122));
}
$name .= '.' . $ext;
$target = ROOT_PATH . DATA_DIR . '/afficheimg/' . $name;
$tmp_file = DATA_DIR . '/afficheimg/' . $name;
$filename = ROOT_PATH . $tmp_file;
$img = file_get_contents($url);
$fp = @fopen($filename, "a");
fwrite($fp, $img);
fclose($fp);
return $tmp_file;
}
?>