field($field)->where(array('nav_type'=>'header', 'is_show'=>1, 'pid'=>0))->order('sort')->select()); if(!empty($header)) { foreach($header as &$v) { $v['items'] = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>'header', 'is_show'=>1, 'pid'=>$v['id']))->order('sort')->select()); } } // 大导航钩子 $hook_name = 'plugins_service_navigation_header_handle'; $ret = Hook::listen($hook_name, [ 'hook_name' => $hook_name, 'is_backend' => true, 'params' => &$params, 'header' => &$header, ]); cache(config('shopxo.cache_common_home_nav_header_key'), $header); } // 底部导航 if(empty($footer)) { $footer = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>'footer', 'is_show'=>1, 'pid'=>0))->order('sort')->select()); if(!empty($footer)) { foreach($footer as &$v) { $v['items'] = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(array('nav_type'=>'footer', 'is_show'=>1, 'pid'=>$v['id']))->order('sort')->select()); } } // 底部导航钩子 $hook_name = 'plugins_service_navigation_footer_handle'; $ret = Hook::listen($hook_name, [ 'hook_name' => $hook_name, 'is_backend' => true, 'params' => &$params, 'footer' => &$footer, ]); cache(config('shopxo.cache_common_home_nav_footer_key'), $footer); } //print_r($header); return [ 'header' => $header, 'footer' => $footer, ]; } /** * [NavDataDealWith 导航数据处理] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-05T21:36:46+0800 * @param [array] $data [需要处理的数据] * @return [array] [处理好的数据] */ public static function NavDataDealWith($data) { if(!empty($data) && is_array($data)) { foreach($data as $k=>$v) { // url处理 switch($v['data_type']) { // 文章分类 case 'article': $v['url'] = MyUrl('index/article/index', ['id'=>$v['value']]); break; // 自定义页面 case 'customview': $v['url'] = MyUrl('index/customview/index', ['id'=>$v['value']]); break; // 商品分类 case 'goods_category': $v['url'] = MyUrl('index/search/index', ['category_id'=>$v['value']]); break; } $data[$k] = $v; } } return $data; } /** * 获取导航列表 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-12-18 * @desc description * @param [array] $params [输入参数] */ public static function NavList($params = []) { if(empty($params['nav_type'])) { return []; } $field = 'id,pid,name,url,value,data_type,sort,is_show,is_new_window_open'; $data = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(['nav_type'=>$params['nav_type'], 'pid'=>0])->order('sort')->select()); if(!empty($data)) { foreach($data as &$v) { $v['items'] = self::NavDataDealWith(Db::name('Navigation')->field($field)->where(['nav_type'=>$params['nav_type'], 'pid'=>$v['id']])->order('sort')->select()); } } return $data; } /** * 获取一级导航列表 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-12-18 * @desc description * @param [array] $params [输入参数] */ public static function LevelOneNav($params = []) { if(empty($params['nav_type'])) { return []; } return Db::name('Navigation')->field('id,name')->where(['is_show'=>1, 'pid'=>0, 'nav_type'=>$params['nav_type']])->select(); } /** * 导航保存 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-07T21:58:19+0800 * @param [array] $params [输入参数] */ public static function NavSave($params = []) { if(empty($params['data_type'])) { return DataReturn('操作类型有误', -1); } // 请求类型 $p = [ [ 'checked_type' => 'length', 'key_name' => 'sort', 'checked_data' => '4', 'error_msg' => '顺序 0~255 之间的数值', ], [ 'checked_type' => 'in', 'key_name' => 'is_show', 'checked_data' => [0,1], 'error_msg' => '是否显示范围值有误', ], [ 'checked_type' => 'in', 'key_name' => 'is_new_window_open', 'checked_data' => [0,1], 'error_msg' => '是否新窗口打开范围值有误', ] ]; switch($params['data_type']) { // 自定义导航 case 'custom': $p = [ [ 'checked_type' => 'in', 'key_name' => 'nav_type', 'checked_data' => ['header', 'footer'], 'error_msg' => '数据类型有误', ], [ 'checked_type' => 'length', 'key_name' => 'name', 'checked_data' => '2,16', 'error_msg' => '导航名称格式 2~16 个字符', ], [ 'checked_type' => 'fun', 'key_name' => 'url', 'checked_data' => 'CheckUrl', 'error_msg' => 'url格式有误', ], ]; break; // 文章分类导航 case 'article': $p = [ [ 'checked_type' => 'length', 'key_name' => 'name', 'checked_data' => '2,16', 'is_checked' => 1, 'error_msg' => '导航名称格式 2~16 个字符', ], [ 'checked_type' => 'empty', 'key_name' => 'value', 'error_msg' => '文章选择有误', ], ]; break; // 自定义页面导航 case 'customview': $p = [ [ 'checked_type' => 'length', 'key_name' => 'name', 'checked_data' => '2,16', 'is_checked' => 1, 'error_msg' => '导航名称格式 2~16 个字符', ], [ 'checked_type' => 'empty', 'key_name' => 'value', 'error_msg' => '自定义页面选择有误', ], ]; break; // 商品分类导航 case 'goods_category': $p = [ [ 'checked_type' => 'length', 'key_name' => 'name', 'checked_data' => '2,16', 'is_checked' => 1, 'error_msg' => '导航名称格式 2~16 个字符', ], [ 'checked_type' => 'empty', 'key_name' => 'value', 'error_msg' => '商品分类选择有误', ], ]; break; // 没找到 default : return DataReturn('操作类型有误', -1); } // 参数 $ret = ParamsChecked($params, $p); if($ret !== true) { return DataReturn($ret, -1); } // 保存数据 return self::NacDataSave($params); } /** * 导航数据保存 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-05T20:12:30+0800 * @param [array] $params [输入参数] */ public static function NacDataSave($params = []) { // 非自定义导航数据处理 if(empty($params['name'])) { switch($params['data_type']) { // 文章分类导航 case 'article': $temp_name = Db::name('Article')->where(['id'=>$params['value']])->value('title'); break; // 自定义页面导航 case 'customview': $temp_name = Db::name('CustomView')->where(['id'=>$params['value']])->value('title'); break; // 商品分类导航 case 'goods_category': $temp_name = Db::name('GoodsCategory')->where(['id'=>$params['value']])->value('name'); break; } // 只截取16个字符 $params['name'] = mb_substr($temp_name, 0, 16, config('shopxo.default_charset')); } // 清除缓存 cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null); // 数据 $data = [ 'pid' => isset($params['pid']) ? intval($params['pid']) : 0, 'value' => isset($params['value']) ? intval($params['value']) : 0, 'name' => $params['name'], 'url' => isset($params['url']) ? $params['url'] : '', 'nav_type' => $params['nav_type'], 'data_type' => $params['data_type'], 'sort' => intval($params['sort']), 'is_show' => intval($params['is_show']), 'is_new_window_open' => intval($params['is_new_window_open']), ]; // id为空则表示是新增 if(empty($params['id'])) { $data['add_time'] = time(); if(Db::name('Navigation')->insertGetId($data) > 0) { // 清除缓存 cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null); return DataReturn('新增成功', 0); } else { return DataReturn('新增失败', -100); } } else { $data['upd_time'] = time(); if(Db::name('Navigation')->where(['id'=>intval($params['id'])])->update($data)) { // 清除缓存 cache(config('cache_common_home_nav_'.$params['nav_type'].'_key'), null); return DataReturn('编辑成功', 0); } else { return DataReturn('编辑失败或数据未改变', -100); } } } /** * 导航删除 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-12-18 * @desc description * @param [array] $params [输入参数] */ public static function NavDelete($params = []) { // 请求参数 $p = [ [ 'checked_type' => 'empty', 'key_name' => 'id', 'error_msg' => '操作id有误', ], ]; $ret = ParamsChecked($params, $p); if($ret !== true) { return DataReturn($ret, -1); } // 启动事务 Db::startTrans(); // 删除操作 if(Db::name('Navigation')->where(['id'=>$params['id']])->delete() !== false && Db::name('Navigation')->where(['pid'=>$params['id']])->delete() !== false) { // 提交事务 Db::commit(); // 清除缓存 cache(config('shopxo.cache_common_home_nav_header_key'), null); cache(config('shopxo.cache_common_home_nav_footer_key'), null); return DataReturn('删除成功'); } // 回滚事务 Db::rollback(); return DataReturn('删除失败或资源不存在', -100); } /** * 状态更新 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-06T21:31:53+0800 * @param [array] $params [输入参数] */ public static function NavStatusUpdate($params = []) { // 请求参数 $p = [ [ 'checked_type' => 'empty', 'key_name' => 'id', 'error_msg' => '操作id有误', ], [ 'checked_type' => 'in', 'key_name' => 'state', 'checked_data' => [0,1], 'error_msg' => '状态有误', ], ]; $ret = ParamsChecked($params, $p); if($ret !== true) { return DataReturn($ret, -1); } // 数据更新 if(Db::name('Navigation')->where(['id'=>intval($params['id'])])->update(['is_show'=>intval($params['state'])])) { // 清除缓存 cache(config('shopxo.cache_common_home_nav_header_key'), null); cache(config('shopxo.cache_common_home_nav_footer_key'), null); return DataReturn('编辑成功'); } return DataReturn('编辑失败或数据未改变', -100); } /** * 获取前端顶部右侧导航 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-03-15 * @desc description * @param array $params [description] */ public static function HomeHavTopRight($params = []) { $common_cart_total = 0; $common_message_total = -1; if(!empty($params['user'])) { // 购物车商品总数 $common_cart_total = BuyService::UserCartTotal(['user'=>$params['user']]); $common_cart_total = ($common_cart_total > 99) ? '99+' : $common_cart_total; // 未读消息总数 $message_params = ['user'=>$params['user'], 'is_more'=>1, 'is_read'=>0, 'user_type'=>'user']; $common_message_total = MessageService::UserMessageTotal($message_params); $common_message_total = ($common_message_total > 99) ? '99+' : (($common_message_total <= 0) ? -1 : $common_message_total); } // 列表 $data = [ [ 'name' => '个人中心', 'is_login' => 1, 'badge' => null, 'icon' => 'am-icon-user', 'url' => MyUrl('index/user/index'), 'items' => [], ], [ 'name' => '我的商城', 'is_login' => 1, 'badge' => null, 'icon' => 'am-icon-cube', 'url' => '', 'items' => [ [ 'name' => '我的订单', 'url' => MyUrl('index/order/index'), ], ], ], [ 'name' => '我的收藏', 'is_login' => 1, 'badge' => null, 'icon' => 'am-icon-heart', 'url' => '', 'items' => [ [ 'name' => '商品收藏', 'url' => MyUrl('index/userfavor/goods'), ], ], ], [ 'name' => '购物车', 'is_login' => 1, 'badge' => $common_cart_total, 'icon' => 'am-icon-shopping-cart', 'url' => MyUrl('index/cart/index'), 'items' => [], ], [ 'name' => '消息', 'is_login' => 1, 'badge' => $common_message_total, 'icon' => 'am-icon-bell', 'url' => MyUrl('index/message/index'), 'items' => [], ], ]; // 顶部小导航右侧钩子 $hook_name = 'plugins_service_header_navigation_top_right_handle'; $ret = Hook::listen($hook_name, [ 'hook_name' => $hook_name, 'is_backend' => true, 'params' => &$params, 'data' => &$data, ]); return $data; } /** * 用户中心资料修改展示字段 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-03-15 * @desc description * @param array $params [description] */ public static function UsersPersonalShowFieldList($params = []) { // is_ext 扩展数据 1, key不存在用户字段中可使用该扩展 // name 显示名称 // value 扩展自定义值 // tips html提示操作内容 $data = [ 'avatar' => [ 'name' => '头像', 'tips' => '修改' ], 'nickname' => [ 'name' => '昵称' ], 'gender_text' => [ 'name' => '性别' ], 'birthday_text' => [ 'name' => '生日' ], 'mobile_security' => [ 'name' => '手机号码', 'tips' => '修改' ], 'email_security' => [ 'name' => '电子邮箱', 'tips' => '修改' ], 'add_time_text' => [ 'name' => '注册时间' ], 'upd_time_text' => [ 'name' => '更新时间' ], ]; // 用户中心资料修改展示字段钩子 $hook_name = 'plugins_service_users_personal_show_field_list_handle'; $ret = Hook::listen($hook_name, [ 'hook_name' => $hook_name, 'is_backend' => true, 'params' => &$params, 'data' => &$data, ]); return $data; } /** * 用户安全项列表 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-03-15 * @desc description * @param array $params [description] */ public static function UsersSafetyPanelList($params = []) { $data = [ [ 'title' => '登录密码', 'msg' => '互联网存在被盗风险,建议您定期更改密码以保护安全。', 'url' => MyUrl('index/safety/loginpwdinfo'), 'type' => 'loginpwd', ], [ 'title' => '手机号码', 'no_msg' => '您还没有绑定手机号码', 'ok_msg' => '已绑定手机 #accounts#', 'tips' => '可用于登录,密码找回,账户安全管理校验,接受账户提醒通知。', 'url' => MyUrl('index/safety/mobileinfo'), 'type' => 'mobile', ], [ 'title' => '电子邮箱', 'no_msg' => '您还没有绑定电子邮箱', 'ok_msg' => '已绑定电子邮箱 #accounts#', 'tips' => '可用于登录,密码找回,账户安全管理校验,接受账户提醒邮件。', 'url' => MyUrl('index/safety/emailinfo'), 'type' => 'email', ], ]; // 用户安全项列表钩子 $hook_name = 'plugins_service_users_safety_panel_list_handle'; $ret = Hook::listen($hook_name, [ 'hook_name' => $hook_name, 'is_backend' => true, 'params' => &$params, 'data' => &$data, ]); return $data; } /** * 用户中心左侧菜单 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-03-15 * @desc description * @param array $params [description] */ public static function UsersCenterLeftList($params = []) { // name 名称 // url 页面地址 // is_show 是否显示(0否, 1是) // contains 包含的子页面(包括自身) // icon icon类 // item 二级数据 // is_system 是否系统内置菜单(0否, 1是)扩展数据可空或0 // 菜单列表 $data = [ 'center' => [ 'name' => '个人中心', 'url' => MyUrl('index/user/index'), 'is_show' => 1, 'contains' => ['userindex'], 'icon' => 'am-icon-home', 'is_system' => 1, ], 'business' => [ 'name' => '业务管理', 'is_show' => 1, 'icon' => 'am-icon-cube', 'is_system' => 1, 'item' => [ [ 'name' => '订单管理', 'url' => MyUrl('index/order/index'), 'is_show' => 1, 'contains' => ['orderindex', 'orderdetail', 'ordercomments'], 'icon' => 'am-icon-th-list', 'is_system' => 1, ], [ 'name' => '订单售后', 'url' => MyUrl('index/orderaftersale/index'), 'is_show' => 1, 'contains' => ['orderaftersaleindex', 'orderaftersaleaftersale'], 'icon' => 'am-icon-puzzle-piece', 'is_system' => 1, ], [ 'name' => '我的收藏', 'url' => MyUrl('index/userfavor/goods'), 'contains' => ['userfavorgoods'], 'is_show' => 1, 'icon' => 'am-icon-heart-o', 'is_system' => 1, ], ] ], 'property' => [ 'name' => '财产中心', 'is_show' => 1, 'icon' => 'am-icon-trophy', 'is_system' => 1, 'item' => [ [ 'name' => '我的积分', 'url' => MyUrl('index/userintegral/index'), 'contains' => ['userintegralindex'], 'is_show' => 1, 'icon' => 'am-icon-fire', 'is_system' => 1, ], ] ], 'base' => [ 'name' => '资料管理', 'is_show' => 1, 'icon' => 'am-icon-user', 'is_system' => 1, 'item' => [ [ 'name' => '个人资料', 'url' => MyUrl('index/personal/index'), 'contains' => ['personalindex', 'personalsaveinfo'], 'is_show' => 1, 'icon' => 'am-icon-gear', 'is_system' => 1, ], [ 'name' => '我的地址', 'url' => MyUrl('index/useraddress/index'), 'contains' => ['useraddressindex', 'useraddresssaveinfo'], 'is_show' => 1, 'icon' => 'am-icon-street-view', 'is_system' => 1, ], [ 'name' => '安全设置', 'url' => MyUrl('index/safety/index'), 'contains' => ['safetyindex', 'safetyloginpwdinfo', 'safetymobileinfo', 'safetynewmobileinfo', 'safetyemailinfo', 'safetynewemailinfo'], 'is_show' => 1, 'icon' => 'am-icon-user-secret', 'is_system' => 1, ], [ 'name' => '我的消息', 'url' => MyUrl('index/message/index'), 'contains' => ['messageindex'], 'is_show' => 1, 'icon' => 'am-icon-bell-o', 'is_system' => 1, ], [ 'name' => '我的足迹', 'url' => MyUrl('index/usergoodsbrowse/index'), 'contains' => ['usergoodsbrowseindex'], 'is_show' => 1, 'icon' => 'am-icon-lastfm', 'is_system' => 1, ], [ 'name' => '问答/留言', 'url' => MyUrl('index/answer/index'), 'contains' => ['answerindex'], 'is_show' => 1, 'icon' => 'am-icon-question', 'is_system' => 1, ], ] ], 'logout' => [ 'name' => '安全退出', 'url' => MyUrl('index/user/logout'), 'contains' => ['userlogout'], 'is_show' => 1, 'icon' => 'am-icon-power-off', 'is_system' => 1, ], ]; // 用户中心左侧菜单钩子 $hook_name = 'plugins_service_users_center_left_menu_handle'; $ret = Hook::listen($hook_name, [ 'hook_name' => $hook_name, 'is_backend' => true, 'params' => &$params, 'data' => &$data, ]); return $data; } } ?>