mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-11-30 02:49:03 +08:00
1223 lines
55 KiB
PHP
1223 lines
55 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed ( https://opensource.org/licenses/mit-license.php )
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Devil
|
||
// +----------------------------------------------------------------------
|
||
namespace app\layout\service;
|
||
|
||
use think\facade\Db;
|
||
use app\service\ResourcesService;
|
||
use app\service\GoodsService;
|
||
|
||
/**
|
||
* 布局自动化服务层
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2020-05-25
|
||
* @desc description
|
||
*/
|
||
class BaseLayout
|
||
{
|
||
// 边线样式类型
|
||
public static $border_style_type_list = [
|
||
'solid' => '实线',
|
||
'dashed' => '虚线',
|
||
'dotted' => '点状',
|
||
'double' => '双线',
|
||
];
|
||
|
||
// 商品样式类型
|
||
public static $goods_view_list_show_style = [
|
||
'routine' => '常规模式',
|
||
'leftright' => '左图右文',
|
||
'rolling' => '滚动模式',
|
||
];
|
||
|
||
// 多图样式类型
|
||
public static $many_images_view_list_show_style = [
|
||
'routine' => '轮播模式',
|
||
'rolling' => '滚动模式',
|
||
'list' => '列表模式',
|
||
];
|
||
|
||
// 图文样式类型
|
||
public static $images_text_view_list_show_style = [
|
||
'updown' => '上图下文',
|
||
'leftright' => '左图右文',
|
||
'rolling' => '滚动模式',
|
||
];
|
||
|
||
// 图片魔方样式类型
|
||
public static $images_magic_cube_view_list_show_style = [
|
||
'g1' => '1图',
|
||
'v2' => '2竖图',
|
||
'v3' => '3竖图',
|
||
'v4' => '4竖图',
|
||
'h2' => '2横图',
|
||
'h3' => '3横图',
|
||
'h4' => '4横图',
|
||
'lr12' => '1左右2',
|
||
'lr13' => '1左右3',
|
||
'lr21' => '2左右1',
|
||
'lr31' => '3左右1',
|
||
'tb12' => '1上下2',
|
||
'tb13' => '1上下3',
|
||
'tb21' => '2上下1',
|
||
'tb31' => '3上下1',
|
||
'lrv2h2'=> '2竖左右横2',
|
||
'lrh2v2'=> '2横左右竖2',
|
||
'g4' => '4图',
|
||
];
|
||
|
||
/**
|
||
* 配置处理-保存
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2021-06-17
|
||
* @desc description
|
||
* @param [array] $config [配置信息]
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function ConfigSaveHandle($config, $params = [])
|
||
{
|
||
$config = empty($config) ? [] : (is_array($config) ? $config : json_decode(htmlspecialchars_decode($config), true));
|
||
if(!empty($config) && is_array($config))
|
||
{
|
||
foreach($config as &$v)
|
||
{
|
||
// 布局
|
||
if(!empty($v['children']) && is_array($v['children']))
|
||
{
|
||
foreach($v['children'] as &$vs)
|
||
{
|
||
// 容器
|
||
if(!empty($vs['children']) && is_array($vs['children']))
|
||
{
|
||
// 模块
|
||
foreach($vs['children'] as &$vss)
|
||
{
|
||
if(!empty($vss['value']) && !empty($vss['config']))
|
||
{
|
||
// 根据模块类型处理
|
||
switch($vss['value'])
|
||
{
|
||
// 视频 video
|
||
case 'video' :
|
||
$vss['config']['content_video'] = ResourcesService::AttachmentPathHandle($vss['config']['content_video']);
|
||
break;
|
||
|
||
// 单图 images
|
||
case 'images' :
|
||
$vss['config']['content_images'] = ResourcesService::AttachmentPathHandle($vss['config']['content_images']);
|
||
break;
|
||
|
||
// 多图 many-images
|
||
case 'many-images' :
|
||
foreach($vss['config']['data_list'] as &$mil)
|
||
{
|
||
$mil['images'] = ResourcesService::AttachmentPathHandle($mil['images']);
|
||
}
|
||
$key = 'content_images_';
|
||
foreach($vss['config'] as $mik=>$miv)
|
||
{
|
||
if(substr($mik, 0, strlen($key)) == $key)
|
||
{
|
||
$vss['config'][$mik] = ResourcesService::AttachmentPathHandle($miv);
|
||
}
|
||
}
|
||
break;
|
||
|
||
// 图文 images-text
|
||
case 'images-text' :
|
||
foreach($vss['config']['data_list'] as &$itl)
|
||
{
|
||
$itl['images'] = ResourcesService::AttachmentPathHandle($itl['images']);
|
||
}
|
||
$key = 'content_images_';
|
||
foreach($vss['config'] as $mik=>$miv)
|
||
{
|
||
if(substr($mik, 0, strlen($key)) == $key)
|
||
{
|
||
$vss['config'][$mik] = ResourcesService::AttachmentPathHandle($miv);
|
||
}
|
||
}
|
||
break;
|
||
|
||
// 图片魔方 images-magic-cube
|
||
case 'images-magic-cube' :
|
||
foreach($vss['config']['data_list'] as &$imc)
|
||
{
|
||
$imc['images'] = ResourcesService::AttachmentPathHandle($imc['images']);
|
||
}
|
||
$key = 'content_images_';
|
||
foreach($vss['config'] as $mik=>$miv)
|
||
{
|
||
if(substr($mik, 0, strlen($key)) == $key)
|
||
{
|
||
$vss['config'][$mik] = ResourcesService::AttachmentPathHandle($miv);
|
||
}
|
||
}
|
||
break;
|
||
|
||
// 商品 goods
|
||
case 'goods' :
|
||
unset($vss['config']['data_list']);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return empty($config) ? '' : json_encode($config, JSON_UNESCAPED_UNICODE);
|
||
}
|
||
|
||
/**
|
||
* 配置处理-管理
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2021-06-17
|
||
* @desc description
|
||
* @param [array] $config [配置信息]
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function ConfigAdminHandle($config, $params = [])
|
||
{
|
||
if(!empty($config))
|
||
{
|
||
// 是否数组
|
||
if(!is_array($config))
|
||
{
|
||
$config = json_decode($config, true);
|
||
}
|
||
if(!empty($config))
|
||
{
|
||
foreach($config as &$v)
|
||
{
|
||
// 布局类型
|
||
$v['value_arr'] = explode(':', $v['value']);
|
||
|
||
// 布局
|
||
if(!empty($v['children']) && is_array($v['children']))
|
||
{
|
||
foreach($v['children'] as &$vs)
|
||
{
|
||
// 容器
|
||
if(!empty($vs['children']) && is_array($vs['children']))
|
||
{
|
||
// 模块
|
||
foreach($vs['children'] as &$vss)
|
||
{
|
||
if(!empty($vss['value']) && !empty($vss['config']))
|
||
{
|
||
// 滚动配置
|
||
if(array_key_exists('view_list_show_style_value', $vss['config']))
|
||
{
|
||
$vss['config']['view_list_show_style_value_arr'] = empty($vss['config']['view_list_show_style_value']) ? '' : json_decode(urldecode($vss['config']['view_list_show_style_value']), true);
|
||
}
|
||
|
||
// 根据模块类型处理
|
||
switch($vss['value'])
|
||
{
|
||
// 视频 video
|
||
case 'video' :
|
||
$vss['config']['content_video'] = ResourcesService::AttachmentPathViewHandle($vss['config']['content_video']);
|
||
break;
|
||
|
||
// 单图 images
|
||
case 'images' :
|
||
$vss['config']['content_images'] = ResourcesService::AttachmentPathViewHandle($vss['config']['content_images']);
|
||
break;
|
||
|
||
// 多图 many-images
|
||
case 'many-images' :
|
||
foreach($vss['config']['data_list'] as &$mil)
|
||
{
|
||
$mil['images'] = ResourcesService::AttachmentPathViewHandle($mil['images']);
|
||
}
|
||
$key = 'content_images_';
|
||
foreach($vss['config'] as $mik=>$miv)
|
||
{
|
||
if(substr($mik, 0, strlen($key)) == $key)
|
||
{
|
||
$vss['config'][$mik] = ResourcesService::AttachmentPathViewHandle($miv);
|
||
}
|
||
}
|
||
break;
|
||
|
||
// 图文 images-text
|
||
case 'images-text' :
|
||
foreach($vss['config']['data_list'] as &$itl)
|
||
{
|
||
$itl['images'] = ResourcesService::AttachmentPathViewHandle($itl['images']);
|
||
}
|
||
$key = 'content_images_';
|
||
foreach($vss['config'] as $mik=>$miv)
|
||
{
|
||
if(substr($mik, 0, strlen($key)) == $key)
|
||
{
|
||
$vss['config'][$mik] = ResourcesService::AttachmentPathViewHandle($miv);
|
||
}
|
||
}
|
||
break;
|
||
|
||
// 图片魔方 images-magic-cube
|
||
case 'images-magic-cube' :
|
||
foreach($vss['config']['data_list'] as &$imc)
|
||
{
|
||
$imc['images'] = ResourcesService::AttachmentPathViewHandle($imc['images']);
|
||
}
|
||
$key = 'content_images_';
|
||
foreach($vss['config'] as $mik=>$miv)
|
||
{
|
||
if(substr($mik, 0, strlen($key)) == $key)
|
||
{
|
||
$vss['config'][$mik] = ResourcesService::AttachmentPathViewHandle($miv);
|
||
}
|
||
}
|
||
break;
|
||
|
||
// 商品
|
||
case 'goods' :
|
||
$p = [
|
||
'data_type' => $vss['config']['goods_data_type'],
|
||
];
|
||
switch($vss['config']['goods_data_type'])
|
||
{
|
||
// 指定商品
|
||
case 'goods' :
|
||
$p['goods_ids'] = $vss['config']['goods_ids'];
|
||
break;
|
||
|
||
// 商品分类
|
||
case 'category' :
|
||
$category = json_decode(urldecode($vss['config']['goods_category_value']), true);
|
||
$p['category_id'] = $category[count($category)-1]['id'];
|
||
$p['order_limit_number'] = empty($vss['config']['goods_order_limit_number']) ? 0 : $vss['config']['goods_order_limit_number'];
|
||
$p['order_by_type'] = isset($vss['config']['goods_order_by_type']) ? $vss['config']['goods_order_by_type'] : 0;
|
||
$p['order_by_rule'] = isset($vss['config']['goods_order_by_rule']) ? $vss['config']['goods_order_by_rule'] : 0;
|
||
break;
|
||
}
|
||
$res = self::GoodsDataList($p);
|
||
$vss['config']['data_list'] = $res['data'];
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return $config;
|
||
}
|
||
|
||
/**
|
||
* 配置处理-展示使用
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2021-06-17
|
||
* @desc description
|
||
* @param [array] $config [配置信息]
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function ConfigHandle($config, $params = [])
|
||
{
|
||
if(!empty($config))
|
||
{
|
||
// 是否数组
|
||
if(!is_array($config))
|
||
{
|
||
$config = json_decode($config, true);
|
||
}
|
||
if(!empty($config))
|
||
{
|
||
foreach($config as &$v)
|
||
{
|
||
// 配置信息处理
|
||
if(!empty($v['config']))
|
||
{
|
||
// 配置信息处理
|
||
$v['config'] = self::ConfigViewFieldHandle($v['config']);
|
||
}
|
||
|
||
// 布局类型
|
||
$v['value_arr'] = explode(':', $v['value']);
|
||
|
||
// 布局
|
||
if(!empty($v['children']) && is_array($v['children']))
|
||
{
|
||
foreach($v['children'] as &$vs)
|
||
{
|
||
// 配置信息处理
|
||
if(!empty($vs['config']))
|
||
{
|
||
// 配置信息处理
|
||
$vs['config'] = self::ConfigViewFieldHandle($vs['config']);
|
||
}
|
||
|
||
// 容器
|
||
if(!empty($vs['children']) && is_array($vs['children']))
|
||
{
|
||
// 模块
|
||
foreach($vs['children'] as &$vss)
|
||
{
|
||
if(!empty($vss['value']) && !empty($vss['config']))
|
||
{
|
||
// 配置信息处理
|
||
$vss['config'] = self::ConfigViewFieldHandle($vss['config']);
|
||
|
||
// 根据模块类型处理
|
||
switch($vss['value'])
|
||
{
|
||
// 视频 video
|
||
case 'video' :
|
||
$vss['config']['video'] = ResourcesService::AttachmentPathViewHandle($vss['config']['content_video']);
|
||
unset($vss['config']['content_video']);
|
||
break;
|
||
|
||
// 单图 images
|
||
case 'images' :
|
||
// 配置重新组合
|
||
$vss['config'] = [
|
||
'frontend_config' => $vss['config']['frontend_config'],
|
||
'images' => ResourcesService::AttachmentPathViewHandle($vss['config']['content_images']),
|
||
'url' => self::LayoutUrlValueHandle($vss['config']['content_to_type'], $vss['config']['content_to_value']),
|
||
];
|
||
break;
|
||
|
||
// 多图 many-images
|
||
case 'many-images' :
|
||
foreach($vss['config']['data_list'] as &$mil)
|
||
{
|
||
$mil = [
|
||
'images' => ResourcesService::AttachmentPathViewHandle($mil['images']),
|
||
'url' => self::LayoutUrlValueHandle($mil['type'], $mil['value']),
|
||
];
|
||
}
|
||
break;
|
||
|
||
// 图文 images-text
|
||
case 'images-text' :
|
||
foreach($vss['config']['data_list'] as &$itl)
|
||
{
|
||
$itl['images'] = ResourcesService::AttachmentPathViewHandle($itl['images']);
|
||
$itl['url'] = self::LayoutUrlValueHandle($itl['type'], $itl['value']);
|
||
}
|
||
break;
|
||
|
||
// 图片魔方 images-magic-cube
|
||
case 'images-magic-cube' :
|
||
foreach($vss['config']['data_list'] as &$imc)
|
||
{
|
||
$imc['images'] = ResourcesService::AttachmentPathViewHandle($imc['images']);
|
||
$imc['url'] = self::LayoutUrlValueHandle($imc['type'], $imc['value']);
|
||
}
|
||
break;
|
||
|
||
// 商品
|
||
case 'goods' :
|
||
$p = [
|
||
'data_type' => $vss['config']['goods_data_type'],
|
||
];
|
||
switch($vss['config']['goods_data_type'])
|
||
{
|
||
// 指定商品
|
||
case 'goods' :
|
||
$p['goods_ids'] = $vss['config']['goods_ids'];
|
||
break;
|
||
|
||
// 商品分类
|
||
case 'category' :
|
||
$category = json_decode(urldecode($vss['config']['goods_category_value']), true);
|
||
$p['category_id'] = $category[count($category)-1]['id'];
|
||
$p['order_limit_number'] = empty($vss['config']['goods_order_limit_number']) ? 0 : $vss['config']['goods_order_limit_number'];
|
||
$p['order_by_type'] = isset($vss['config']['goods_order_by_type']) ? $vss['config']['goods_order_by_type'] : 0;
|
||
$p['order_by_rule'] = isset($vss['config']['goods_order_by_rule']) ? $vss['config']['goods_order_by_rule'] : 0;
|
||
break;
|
||
}
|
||
$res = self::GoodsDataList($p);
|
||
if(!empty($res['data']) && is_array($res['data']))
|
||
{
|
||
foreach($res['data'] as &$g)
|
||
{
|
||
$g['goods_url'] = self::LayoutUrlValueHandle('goods', $g);
|
||
}
|
||
}
|
||
$vss['config']['data_list'] = $res['data'];
|
||
break;
|
||
|
||
// 标题
|
||
case 'title' :
|
||
// 关键字
|
||
$keywords_list = [];
|
||
if(!empty($vss['config']['keywords_list']))
|
||
{
|
||
foreach($vss['config']['keywords_list'] as $wd)
|
||
{
|
||
$keywords_list[] = [
|
||
'keywords' => $wd['content_keywords'],
|
||
'color' => empty($wd['style_keywords_color']) ? '' : $wd['style_keywords_color'],
|
||
'url' => self::LayoutUrlValueHandle($wd['content_to_type'], $wd['content_to_value']),
|
||
];
|
||
}
|
||
}
|
||
|
||
// 配置重新组合
|
||
$vss['config'] = [
|
||
'frontend_config' => $vss['config']['frontend_config'],
|
||
'title' => $vss['config']['content_title'],
|
||
'title_vice' => $vss['config']['content_title_vice'],
|
||
'title_more' => $vss['config']['content_title_more'],
|
||
'title_more_url' => self::LayoutUrlValueHandle($vss['config']['content_to_type'], $vss['config']['content_to_value']),
|
||
'keywords_list' => $keywords_list,
|
||
];
|
||
break;
|
||
|
||
// 自定义html
|
||
case 'custom' :
|
||
$vss['config']['custom'] = empty($vss['config']['custom']) ? '' : htmlspecialchars_decode($vss['config']['custom']);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return $config;
|
||
}
|
||
|
||
/**
|
||
* 配置信息字段处理
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2021-06-22
|
||
* @desc description
|
||
* @param [array] $config [配置信息]
|
||
*/
|
||
public static function ConfigViewFieldHandle($config)
|
||
{
|
||
if(!empty($config) && is_array($config))
|
||
{
|
||
// 配置信息多余字段移除
|
||
$arr = [
|
||
'style_',
|
||
'content_item_keywords_',
|
||
'content_images_',
|
||
'content_to_type_',
|
||
'content_to_name_',
|
||
'content_to_value_',
|
||
'view_list_number_',
|
||
];
|
||
foreach($config as $k=>$v)
|
||
{
|
||
foreach($arr as $f)
|
||
{
|
||
$length = strlen($f);
|
||
if(substr($k, 0, $length) == $f)
|
||
{
|
||
unset($config[$k]);
|
||
}
|
||
}
|
||
}
|
||
|
||
// 滚动配置
|
||
if(array_key_exists('view_list_show_style_value', $config))
|
||
{
|
||
$config['view_list_show_style_value_arr'] = empty($config['view_list_show_style_value']) ? '' : json_decode(urldecode($config['view_list_show_style_value']), true);
|
||
unset($config['view_list_show_style_value']);
|
||
}
|
||
}
|
||
return $config;
|
||
}
|
||
|
||
/**
|
||
* 链接地址处理
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2021-06-22
|
||
* @desc description
|
||
* @param [string] $type [类型]
|
||
* @param [string] $value [特殊地址配置值]
|
||
*/
|
||
public static function LayoutUrlValueHandle($type, $value)
|
||
{
|
||
// 扩展参数处理
|
||
if(!empty($value) && !is_array($value))
|
||
{
|
||
$value = json_decode(urldecode($value), true);
|
||
}
|
||
|
||
// 当前客户端类型
|
||
$client_type = APPLICATION_CLIENT_TYPE;
|
||
|
||
// url地址、默认空字符串
|
||
$url = '';
|
||
|
||
// 静态地址定义-web端
|
||
$static_url_web_arr = [
|
||
'home' => __MY_URL__,
|
||
'goods_category' => MyUrl('index/category/index'),
|
||
'cart' => MyUrl('index/cart/index'),
|
||
'user_center' => MyUrl('index/user/index'),
|
||
'user_order_list' => MyUrl('index/order/index'),
|
||
'user_order_aftersale_list' => MyUrl('index/orderaftersale/index'),
|
||
'user_goods_favor_list' => MyUrl('index/usergoodsfavor/index'),
|
||
'user_address_list' => MyUrl('index/useraddress/index'),
|
||
'user_goods_browse_list' => MyUrl('index/usergoodsbrowse/index'),
|
||
'user_integral_list' => MyUrl('index/userintegral/index'),
|
||
'user_answer_list' => MyUrl('index/answer/index'),
|
||
'user_message_list' => MyUrl('index/message/index'),
|
||
|
||
// 多商户
|
||
'plugins-blog-home' => PluginsHomeUrl('blog', 'index', 'index'),
|
||
'plugins-blog-favor' => PluginsHomeUrl('blog', 'shopfavor', 'index'),
|
||
|
||
// 博客
|
||
'plugins-blog-home' => PluginsHomeUrl('blog', 'index', 'index'),
|
||
'plugins-blog-search' => PluginsHomeUrl('blog', 'index', 'search'),
|
||
|
||
// 品牌
|
||
'plugins-brand-home' => PluginsHomeUrl('brand', 'index', 'index'),
|
||
|
||
// 优惠券
|
||
'plugins-coupon-home' => PluginsHomeUrl('coupon', 'index', 'index'),
|
||
'plugins-coupon-user' => PluginsHomeUrl('coupon', 'coupon', 'index'),
|
||
|
||
// 会员等级
|
||
'plugins-membershiplevelvip-home' => PluginsHomeUrl('membershiplevelvip', 'index', 'index'),
|
||
'plugins-membershiplevelvip-user-center' => PluginsHomeUrl('membershiplevelvip', 'vip', 'index'),
|
||
'plugins-membershiplevelvip-user-poster' => PluginsHomeUrl('membershiplevelvip', 'poster', 'index'),
|
||
|
||
// 分销
|
||
'plugins-distribution-user-center' => PluginsHomeUrl('distribution', 'index', 'index'),
|
||
'plugins-distribution-user-poster' => PluginsHomeUrl('distribution', 'poster', 'index'),
|
||
|
||
// 发票
|
||
'plugins-invoice-user' => PluginsHomeUrl('invoice', 'user', 'index'),
|
||
'plugins-invoice-order' => PluginsHomeUrl('invoice', 'order', 'index'),
|
||
|
||
// 积分商城
|
||
'plugins-points-home' => PluginsHomeUrl('points', 'index', 'index'),
|
||
|
||
// 钱包
|
||
'plugins-wallet-user' => PluginsHomeUrl('wallet', 'wallet', 'index'),
|
||
|
||
// 签到
|
||
'plugins-signin-user' => PluginsHomeUrl('signin', 'userqrcode', 'index'),
|
||
];
|
||
|
||
// 静态地址定义-手机端
|
||
$static_url_app_arr = [
|
||
'home' => '/pages/index/index',
|
||
'goods_category' => '/pages/goods-category/goods-category',
|
||
'cart' => '/pages/cart/cart',
|
||
'user_center' => '/pages/user/user',
|
||
'user_order_list' => '/pages/user-order/user-order',
|
||
'user_order_aftersale_list' => '/pages/user-orderaftersale/user-orderaftersale',
|
||
'user_goods_favor_list' => '/pages/user-favor/user-favor',
|
||
'user_address_list' => '/pages/user-address/user-address',
|
||
'user_goods_browse_list' => '/pages/user-goods-browse/user-goods-browse',
|
||
'user_integral_list' => '/pages/user-integral/user-integral',
|
||
'user_answer_list' => '/pages/user-answer-list/user-answer-list',
|
||
'user_message_list' => '/pages/message/message',
|
||
|
||
// 多商户
|
||
'plugins-shop-home' => '/pages/plugins/shop/index/index',
|
||
'plugins-shop-favor' => '/pages/plugins/shop/favor/favor',
|
||
|
||
// 门店
|
||
'plugins-realstore-home' => '/pages/plugins/realstore/index/index',
|
||
'plugins-realstore-favor' => '/pages/plugins/realstore/favor/favor',
|
||
|
||
// 博客
|
||
'plugins-blog-home' => '/pages/plugins/blog/index/index',
|
||
'plugins-blog-search' => '/pages/plugins/blog/search/search',
|
||
|
||
// 品牌
|
||
'plugins-brand-home' => '/pages/plugins/brand/index/index',
|
||
|
||
// 优惠券
|
||
'plugins-coupon-home' => '/pages/plugins/coupon/index/index',
|
||
'plugins-coupon-user' => '/pages/plugins/coupon/user/user',
|
||
|
||
// 会员等级
|
||
'plugins-membershiplevelvip-home' => '/pages/plugins/membershiplevelvip/index/index',
|
||
'plugins-membershiplevelvip-user-center' => '/pages/plugins/membershiplevelvip/user/user',
|
||
'plugins-membershiplevelvip-user-poster' => '/pages/plugins/membershiplevelvip/poster/poster',
|
||
|
||
// 分销
|
||
'plugins-distribution-user-center' => '/pages/plugins/distribution/user/user',
|
||
'plugins-distribution-user-poster' => '/pages/plugins/distribution/poster/poster',
|
||
|
||
// 发票
|
||
'plugins-invoice-user' => '/pages/plugins/invoice/user/user',
|
||
'plugins-invoice-order' => '/pages/plugins/invoice/order/order',
|
||
|
||
// 积分商城
|
||
'plugins-points-home' => '/pages/plugins/points/index/index',
|
||
|
||
// 钱包
|
||
'plugins-wallet-user' => '/pages/plugins/wallet/user/user',
|
||
|
||
// 签到
|
||
'plugins-signin-user' => '/pages/plugins/signin/user/user',
|
||
];
|
||
|
||
// 静态地址
|
||
$url = '';
|
||
$static_url_arr = ($client_type == 'pc') ? $static_url_web_arr : $static_url_app_arr;
|
||
if(array_key_exists($type, $static_url_arr))
|
||
{
|
||
$url = $static_url_arr[$type];
|
||
} else {
|
||
switch($type)
|
||
{
|
||
// 商品
|
||
case 'goods' :
|
||
if(!empty($value) && !empty($value['id']))
|
||
{
|
||
// 商品处理
|
||
$res = GoodsService::GoodsDataHandle([['goods_id'=>$value['id']]], ['data_key_field'=>'goods_id']);
|
||
if(!empty($res['data']) && !empty($res['data'][0]) && !empty($res['data'][0]['goods_url']))
|
||
{
|
||
$url = $res['data'][0]['goods_url'];
|
||
}
|
||
}
|
||
break;
|
||
|
||
// 商品分类
|
||
case 'goods_search' :
|
||
$gsp = [];
|
||
if(!empty($value) && !empty($value['type']) && !empty($value['value']))
|
||
{
|
||
switch($value['type'])
|
||
{
|
||
// 关键字
|
||
case 'keywords' :
|
||
$gsp = ($client_type == 'pc') ? ['wd'=>StrToAscii($value['value'])] : '?keywords='.$value['value'];
|
||
break;
|
||
|
||
// 分类
|
||
case 'category' :
|
||
$cid = $value['value'][count($value['value'])-1]['id'];
|
||
$gsp = ($client_type == 'pc') ? ['cid'=>$cid] : '?category_id='.$cid;
|
||
break;
|
||
|
||
// 品牌
|
||
case 'brand' :
|
||
$gsp = ($client_type == 'pc') ? ['brand'=>$value['value']['id']] : '?brand='.$value['value']['id'];
|
||
break;
|
||
}
|
||
}
|
||
// 默认搜索页面、无条件
|
||
$url = ($client_type == 'pc') ? MyUrl('index/search/index', $gsp) : '/pages/goods-search/goods-search'.(empty($gsp) ? '' : $gsp);
|
||
break;
|
||
|
||
// 自定义链接
|
||
case 'pages-custom-url' :
|
||
$key = 'pages_custom_url_'.$client_type;
|
||
if(!empty($value) && is_array($value) && array_key_exists($key, $value) && !empty($value[$key]))
|
||
{
|
||
$url = htmlspecialchars_decode($value[$key]);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
|
||
// url值处理钩子
|
||
$hook_name = 'plugins_layout_service_url_value_handle';
|
||
MyEventTrigger($hook_name, [
|
||
'hook_name' => $hook_name,
|
||
'is_backend' => true,
|
||
'type' => $type,
|
||
'value' => $value,
|
||
'client_type' => $client_type,
|
||
'url' => &$url,
|
||
]);
|
||
|
||
// 返回url
|
||
return $url;
|
||
}
|
||
|
||
/**
|
||
* 商品搜索
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2020-07-13
|
||
* @desc description
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function GoodsSearchList($params = [])
|
||
{
|
||
// 返回数据
|
||
$result = [
|
||
'page_total' => 0,
|
||
'page_size' => 20,
|
||
'page' => max(1, isset($params['page']) ? intval($params['page']) : 1),
|
||
'total' => 0,
|
||
'data' => [],
|
||
];
|
||
|
||
// 条件
|
||
$where = [
|
||
['g.is_delete_time', '=', 0],
|
||
['g.is_shelves', '=', 1],
|
||
];
|
||
|
||
// 关键字
|
||
if(!empty($params['keywords']))
|
||
{
|
||
$where[] = ['g.title', 'like', '%'.$params['keywords'].'%'];
|
||
}
|
||
|
||
// 数据分类id
|
||
if(!empty($params['category_id']))
|
||
{
|
||
// 默认系统商品分类,并读取分类子级
|
||
$category_field = empty($params['category_field']) ? 'gci.category_id' : $params['category_field'];
|
||
if($category_field == 'gci.category_id')
|
||
{
|
||
$category_id = GoodsService::GoodsCategoryItemsIds([intval($params['category_id'])]);
|
||
} else {
|
||
$category_id = [intval($params['category_id'])];
|
||
}
|
||
$where[] = [$category_field, 'in', $category_id];
|
||
}
|
||
|
||
// 商品搜索列表读取钩子
|
||
$hook_name = 'plugins_layout_service_search_goods_begin';
|
||
MyEventTrigger($hook_name, [
|
||
'hook_name' => $hook_name,
|
||
'is_backend' => true,
|
||
'params' => $params,
|
||
'where' => &$where,
|
||
]);
|
||
|
||
// 获取商品总数
|
||
$result['total'] = GoodsService::CategoryGoodsTotal($where);
|
||
|
||
// 获取商品列表
|
||
if($result['total'] > 0)
|
||
{
|
||
// 基础参数
|
||
$field = 'g.id,g.title,g.images';
|
||
$order_by = 'g.id desc';
|
||
|
||
// 分页计算
|
||
$m = intval(($result['page']-1)*$result['page_size']);
|
||
$ret = GoodsService::CategoryGoodsList(['where'=>$where, 'm'=>$m, 'n'=>$result['page_size'], 'field'=>$field, 'order_by'=>$order_by]);
|
||
$result['data'] = $ret['data'];
|
||
$result['page_total'] = ceil($result['total']/$result['page_size']);
|
||
// 数据处理
|
||
if(!empty($result['data']) && is_array($result['data']) && !empty($params['goods_ids']))
|
||
{
|
||
$goods_ids = is_array($params['goods_ids']) ? $params['goods_ids'] : explode(',', $params['goods_ids']);
|
||
foreach($result['data'] as &$v)
|
||
{
|
||
// 是否已添加
|
||
$v['is_exist'] = in_array($v['id'], $goods_ids) ? 1 : 0;
|
||
}
|
||
}
|
||
}
|
||
return DataReturn('处理成功', 0, $result);
|
||
}
|
||
|
||
/**
|
||
* 商品数据
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2020-07-13
|
||
* @desc description
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function GoodsDataList($params = [])
|
||
{
|
||
// 数据类型、默认商品
|
||
$data_type = empty($params['data_type']) ? 'goods' : $params['data_type'];
|
||
switch($data_type)
|
||
{
|
||
// 商品
|
||
case 'goods' :
|
||
// 参数处理
|
||
if(empty($params['goods_ids']))
|
||
{
|
||
return DataReturn('商品id为空', -1);
|
||
}
|
||
if(!is_array($params['goods_ids']))
|
||
{
|
||
$params['goods_ids'] = explode(',', $params['goods_ids']);
|
||
}
|
||
|
||
// 读取数量
|
||
$m = 0;
|
||
$n = 50;
|
||
|
||
// 获取商品
|
||
$order_by = 'id desc';
|
||
$field = 'id,title,images,price,original_price,min_price,max_price,min_original_price,max_original_price,inventory,inventory_unit';
|
||
$where = [
|
||
['is_delete_time', '=', 0],
|
||
['is_shelves', '=', 1],
|
||
['id', 'in', $params['goods_ids']],
|
||
];
|
||
break;
|
||
|
||
// 商品分类
|
||
case 'category' :
|
||
// 参数处理
|
||
if(empty($params['category_id']))
|
||
{
|
||
return DataReturn('商品分类id为空', -1);
|
||
}
|
||
|
||
// 排序处理
|
||
$order_by_type_list = MyConst('goods_order_by_type_list');
|
||
$order_by_rule_list = MyConst('goods_order_by_rule_list');
|
||
|
||
// 排序类型
|
||
$order_by_type = empty($params['order_by_type']) ? $order_by_type_list[0]['value'] : (array_key_exists($params['order_by_type'], $order_by_type_list) ? $order_by_type_list[$params['order_by_type']]['value'] : $order_by_type_list[0]['value']);
|
||
|
||
// 排序规则
|
||
$order_by_rule = empty($params['order_by_rule']) ? $order_by_rule_list[0]['value'] : (array_key_exists($params['order_by_rule'], $order_by_rule_list) ? $order_by_rule_list[$params['order_by_rule']]['value'] : $order_by_rule_list[0]['value']);
|
||
|
||
// 读取数量
|
||
$m = 0;
|
||
$n = min(empty($params['order_limit_number']) ? 50 : intval($params['order_limit_number']), 50);
|
||
|
||
// 获取商品
|
||
$order_by = $order_by_type.' '.$order_by_rule;
|
||
$field = 'g.id,g.title,g.images,g.price,g.original_price,g.min_price,g.max_price,g.min_original_price,g.max_original_price,g.inventory,g.inventory_unit';
|
||
$where = [
|
||
['gci.category_id', 'in', GoodsService::GoodsCategoryItemsIds([intval($params['category_id'])])],
|
||
['g.is_delete_time', '=', 0],
|
||
['g.is_shelves', '=', 1],
|
||
];
|
||
break;
|
||
|
||
default :
|
||
return DataReturn('数据类型未处理['.$params['data_type'].']', -1);
|
||
}
|
||
|
||
// 商品数据列表读取钩子
|
||
$hook_name = 'plugins_layout_service_goods_data_begin';
|
||
MyEventTrigger($hook_name, [
|
||
'hook_name' => $hook_name,
|
||
'is_backend' => true,
|
||
'params' => $params,
|
||
'data_type' => $data_type,
|
||
'where' => &$where,
|
||
'field' => &$field,
|
||
'm' => &$m,
|
||
'n' => &$n,
|
||
'order_by' => &$order_by,
|
||
]);
|
||
|
||
// 根据请求类型处理数据读取
|
||
switch($data_type)
|
||
{
|
||
// 商品
|
||
case 'goods' :
|
||
$request_params = [
|
||
'where' => $where,
|
||
'm' => $m,
|
||
'n' => $n,
|
||
'field' => $field,
|
||
'order_by' => $order_by,
|
||
];
|
||
$ret = GoodsService::GoodsList($request_params);
|
||
if(!empty($ret['data']))
|
||
{
|
||
// 商品自定义按照顺序重新调整
|
||
$goods = [];
|
||
$temp = array_column($ret['data'], null, 'id');
|
||
foreach($params['goods_ids'] as $v)
|
||
{
|
||
if(array_key_exists($v, $temp))
|
||
{
|
||
$goods[] = $temp[$v];
|
||
}
|
||
}
|
||
$ret['data'] = $goods;
|
||
}
|
||
break;
|
||
|
||
// 商品分类
|
||
case 'category' :
|
||
$request_params = [
|
||
'where' => $where,
|
||
'm' => $m,
|
||
'n' => $n,
|
||
'field' => $field,
|
||
'order_by' => $order_by,
|
||
];
|
||
$ret = GoodsService::CategoryGoodsList($request_params);
|
||
break;
|
||
}
|
||
if(!empty($ret) && isset($ret['code']) && $ret['code'] == 0 && !empty($ret['data']))
|
||
{
|
||
return $ret;
|
||
}
|
||
return DataReturn('无商品信息', -1);
|
||
}
|
||
|
||
/**
|
||
* 页面数据
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2021-05-14
|
||
* @desc description
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function PagesList($params = [])
|
||
{
|
||
// 返回页面数据定义
|
||
$data = [
|
||
// 公共
|
||
'common' => [
|
||
'name' => '系统页面',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '商城首页',
|
||
],
|
||
[
|
||
'value' => 'goods_category',
|
||
'name' => '全部商品分类',
|
||
],
|
||
[
|
||
'value' => 'goods_search',
|
||
'name' => '商品搜索',
|
||
'tips' => '可带参数(关键字、商品分类id、品牌id)',
|
||
],
|
||
[
|
||
'value' => 'goods',
|
||
'name' => '单一商品',
|
||
],
|
||
[
|
||
'value' => 'cart',
|
||
'name' => '购物车',
|
||
],
|
||
[
|
||
'value' => 'user_center',
|
||
'name' => '用户中心',
|
||
],
|
||
[
|
||
'value' => 'user_order_list',
|
||
'name' => '我的订单',
|
||
],
|
||
[
|
||
'value' => 'user_order_aftersale_list',
|
||
'name' => '订单售后',
|
||
],
|
||
[
|
||
'value' => 'user_goods_favor_list',
|
||
'name' => '商品收藏',
|
||
],
|
||
[
|
||
'value' => 'user_address_list',
|
||
'name' => '我的地址',
|
||
],
|
||
[
|
||
'value' => 'user_goods_browse_list',
|
||
'name' => '我的足迹',
|
||
],
|
||
[
|
||
'value' => 'user_integral_list',
|
||
'name' => '我的积分',
|
||
],
|
||
[
|
||
'value' => 'user_message_list',
|
||
'name' => '我的消息',
|
||
],
|
||
[
|
||
'value' => 'user_answer_list',
|
||
'name' => '问答/留言',
|
||
],
|
||
],
|
||
],
|
||
|
||
// 插件
|
||
'plugins' => [
|
||
'name' => '扩展模块',
|
||
'data' => [
|
||
[
|
||
'name' => '多商户',
|
||
'value' => 'shop',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '所有店铺',
|
||
],
|
||
[
|
||
'value' => 'favor',
|
||
'name' => '店铺收藏',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '多门店',
|
||
'value' => 'realstore',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '所有店铺',
|
||
],
|
||
[
|
||
'value' => 'favor',
|
||
'name' => '店铺收藏',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '博客',
|
||
'value' => 'blog',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '博客首页',
|
||
],
|
||
[
|
||
'value' => 'search',
|
||
'name' => '博客搜索',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '品牌',
|
||
'value' => 'brand',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '所有品牌',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '优惠券',
|
||
'value' => 'coupon',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '领券中心',
|
||
],
|
||
[
|
||
'value' => 'user',
|
||
'name' => '我的优惠券',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '会员等级增强版',
|
||
'value' => 'membershiplevelvip',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '会员首页',
|
||
],
|
||
[
|
||
'value' => 'user-center',
|
||
'name' => '会员中心',
|
||
],
|
||
[
|
||
'value' => 'user-poster',
|
||
'name' => '推广返利',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '分销',
|
||
'value' => 'distribution',
|
||
'data' => [
|
||
[
|
||
'value' => 'user-center',
|
||
'name' => '分销中心',
|
||
],
|
||
[
|
||
'value' => 'user-poster',
|
||
'name' => '推广返利',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '发票',
|
||
'value' => 'invoice',
|
||
'data' => [
|
||
[
|
||
'value' => 'user',
|
||
'name' => '我的发票',
|
||
],
|
||
[
|
||
'value' => 'order',
|
||
'name' => '订单开票',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '积分商城',
|
||
'value' => 'points',
|
||
'data' => [
|
||
[
|
||
'value' => 'home',
|
||
'name' => '首页',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '钱包',
|
||
'value' => 'wallet',
|
||
'data' => [
|
||
[
|
||
'value' => 'user',
|
||
'name' => '我的钱包',
|
||
],
|
||
],
|
||
],
|
||
[
|
||
'name' => '签到',
|
||
'value' => 'signin',
|
||
'data' => [
|
||
[
|
||
'value' => 'user',
|
||
'name' => '我的签到',
|
||
],
|
||
],
|
||
],
|
||
],
|
||
],
|
||
];
|
||
|
||
// 页面列表钩子
|
||
$hook_name = 'plugins_layout_service_pages_list';
|
||
MyEventTrigger($hook_name, [
|
||
'hook_name' => $hook_name,
|
||
'is_backend' => true,
|
||
'params' => $params,
|
||
'data' => &$data,
|
||
]);
|
||
|
||
// 返回页面数据
|
||
return $data;
|
||
}
|
||
}
|
||
?>
|