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.

159 lines
6.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
/**
* shop 生成商品列表
* ============================================================================
* * 版权所有 2005-2012 上海商派网络科技有限公司,并保留所有权利。
* 网站地址: http://www.shop.com
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
* 使用;不允许对程序代码以任何形式任何目的的再发布。
* ============================================================================
* $Author: wayne $
* $Id: goods_script.php 17217 2011-01-19 06:29:08Z wayne $
*/
define('IN_ASC', true);
define('INIT_NO_USERS', true);
require(dirname(__FILE__) . '/includes/init.php');
if ((DEBUG_MODE & 2) != 2)
{
$smarty->caching = true;
}
$charset = empty($_GET['charset']) ? EC_CHARSET : $_GET['charset'];
$type = empty($_GET['type']) ? '' : 'collection';
if (strtolower($charset) == 'gb2312')
{
$charset = 'gbk';
}
header('content-type: application/x-javascript; charset=' . ($charset == 'UTF8' ? 'utf-8' : $charset));
/*------------------------------------------------------ */
//-- 判断是否存在缓存,如果存在则调用缓存,反之读取相应内容
/*------------------------------------------------------ */
/* 缓存编号 */
$cache_id = sprintf('%X', crc32($_SERVER['QUERY_STRING']));
$tpl = ROOT_PATH . DATA_DIR . '/goods_script.html';
if (!$smarty->is_cached($tpl, $cache_id))
{
$time = gmtime();
$sql='';
/* 根据参数生成查询语句 */
if ($type == '')
{
$sitename = !empty($_GET['sitename']) ? $_GET['sitename'] : '';
$_from = (!empty($_GET['charset']) && $_GET['charset'] != 'UTF8')? urlencode(ecs_iconv('UTF-8', 'GBK', $sitename)) : urlencode(@$sitename);
$goods_url = $ecs->url() . 'affiche.php?ad_id=-1&amp;from=' . $_from . '&amp;goods_id=';
$sql = 'SELECT goods_id, goods_name, market_price, goods_thumb, RAND() AS rnd, ' .
"IF(is_promote = 1 AND '$time' >= promote_start_date AND ".
"'$time' <= promote_end_date, promote_price, shop_price) AS goods_price " .
'FROM ' . $ecs->table('goods') . ' AS g ' .
"WHERE is_delete = '0' AND is_on_sale = '1' AND is_alone_sale = '1' ";
if (!empty($_GET['cat_id']))
{
$sql .= ' AND ' . get_children(intval($_GET['cat_id']));
}
if (!empty($_GET['brand_id']))
{
$sql .= " AND brand_id = '" . intval($_GET['brand_id']) . "'";
}
if (!empty($_GET['intro_type']))
{
$_GET['intro_type'] = trim($_GET['intro_type']);
if ($_GET['intro_type'] == 'is_best' || $_GET['intro_type'] == 'is_new' || $_GET['intro_type'] == 'is_hot' || $_GET['intro_type'] == 'is_promote' || $_GET['intro_type'] == 'is_random')
{
if ($_GET['intro_type'] == 'is_random')
{
$sql .= ' ORDER BY rnd';
}
else
{
if ($_GET['intro_type'] == 'is_promote')
{
$sql .= " AND promote_start_date <= '$time' AND promote_end_date >= '$time'";
}
$sql .= " AND " . $_GET['intro_type'] . " = 1 ORDER BY add_time DESC";
}
}
}
}
elseif ($type == 'collection')
{
$uid = (int)$_GET['u'];
$goods_url = $ecs->url() . "goods.php?u=$uid&id=";
$sql = "SELECT g.goods_id, g.goods_name, g.market_price, g.goods_thumb, IF(g.is_promote = 1 AND '$time' >= g.promote_start_date AND ".
"'$time' <= g.promote_end_date, g.promote_price, g.shop_price) AS goods_price FROM " . $ecs->table('goods') . " g LEFT JOIN " . $ecs->table('collect_goods') . " c ON g.goods_id = c.goods_id " .
" WHERE c.user_id = '$uid'";
}
$sql .= " LIMIT " . (!empty($_GET['goods_num']) ? intval($_GET['goods_num']) : 10);
$res = $db->query($sql);
$goods_list = array();
while ($goods = $db->fetchRow($res))
{
// 转换编码
$goods['goods_price'] = price_format($goods['goods_price']);
if ($charset != EC_CHARSET)
{
if (EC_CHARSET == 'gbk')
{
$tmp_goods_name = htmlentities($goods['goods_name'], ENT_QUOTES, 'gb2312');
}
else
{
$tmp_goods_name = htmlentities($goods['goods_name'], ENT_QUOTES, EC_CHARSET);
}
$goods['goods_name'] = ecs_iconv(EC_CHARSET, $charset, $tmp_goods_name);
$goods['goods_price'] = ecs_iconv(EC_CHARSET, $charset, $goods['goods_price']);
}
$goods['goods_name'] = $GLOBALS['_CFG']['goods_name_length'] > 0 ? sub_str($goods['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $goods['goods_name'];
$goods['goods_thumb'] = get_image_path($goods['goods_id'], $goods['goods_thumb'], true);
$goods_list[] = $goods;
}
/* 排列方式 */
$arrange = empty($_GET['arrange']) || !in_array($_GET['arrange'], array('h', 'v')) ? 'h' : $_GET['arrange'];
/* 排列显示条目个数 */
$goods_num = !empty($_GET['goods_num']) ? intval($_GET['goods_num']) : 10;
$rows_num = !empty($_GET['rows_num']) ? intval($_GET['rows_num']) : '1';
if($arrange == 'h')
{
$goods_items = array_chunk($goods_list,$rows_num);
}
else
{
$columns_num = ceil($goods_num / $rows_num);
$goods_items = array_chunk($goods_list,$columns_num);
}
$smarty->assign('goods_list', $goods_items);
/* 是否需要图片 */
$need_image = empty($_GET['need_image']) || $_GET['need_image'] == 'true' ? 1 : 0;
$smarty->assign('need_image', $need_image);
/* 图片大小 */
$smarty->assign('thumb_width', intval($_CFG['thumb_width']));
$smarty->assign('thumb_height', intval($_CFG['thumb_height']));
/* 网站根目录 */
$smarty->assign('url', $ecs->url());
/* 商品页面连接 */
$smarty->assign('goods_url', $goods_url);
}
$output = $smarty->fetch($tpl, $cache_id);
$output = str_replace("\r", '', $output);
$output = str_replace("\n", '', $output);
echo "document.write('$output');";
?>