截流自动化的商城平台
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.

MenuDecorateLogic.php 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\decoration;
  20. use app\common\basics\Logic;
  21. use app\common\enum\MenuEnum;
  22. use app\common\server\ConfigServer;
  23. use app\common\server\UrlServer;
  24. use think\facade\Db;
  25. class MenuDecorateLogic extends Logic {
  26. /**
  27. * Notes:获取菜单列表
  28. * @param $get
  29. * @return array
  30. * @author: cjhao 2021/4/28 9:47
  31. */
  32. public static function lists($get){
  33. $where[] = ['del','=',0];
  34. $where[] = ['decorate_type','=',$get['type']];
  35. $lists = Db::name('menu_decorate')
  36. ->where($where)
  37. ->paginate(['list_rows'=>$get['limit'],'page'=>$get['page']]);
  38. $list = $lists->items();
  39. $count = $lists->total();
  40. $menu_type = 1 == $get['type'] ? 'index' : 'center';
  41. foreach ($list as $key => $menu){
  42. if(1 == $menu['link_type']){
  43. $list[$key]['link_address'] = MenuEnum::getMenu($menu_type,$menu['link_address'])['name'] ?? '';
  44. }
  45. $list[$key]['image'] = empty($list[$key]['image']) ? '' : UrlServer::getFileUrl($list[$key]['image']);
  46. }
  47. return ['count'=>$count,'lists'=>$list];
  48. }
  49. /**
  50. * Notes:添加菜单
  51. * @param $post
  52. * @author: cjhao 2021/5/18 17:07
  53. */
  54. public static function add($post){
  55. $data = [
  56. 'name' => $post['name'],
  57. 'decorate_type' => $post['decorate_type'],
  58. 'image' => clearDomain($post['image']),
  59. 'link_type' => $post['link_type'],
  60. 'link_address' => $post['menu'] ?? $post['link_address'],
  61. 'sort' => $post['sort'],
  62. 'is_show' => $post['is_show'],
  63. 'create_time' => time(),
  64. ];
  65. return Db::name('menu_decorate')->insert($data);
  66. }
  67. /**
  68. * Notes:编辑菜单
  69. * @param $post
  70. * @return int
  71. * @author: cjhao 2021/5/18 17:38
  72. */
  73. public static function edit($post){
  74. $data = [
  75. 'name' => $post['name'],
  76. 'image' => clearDomain($post['image']),
  77. 'link_type' => $post['link_type'],
  78. 'link_address' => 1 == $post['link_type'] ? $post['menu'] : $post['url'],
  79. 'sort' => $post['sort'],
  80. 'is_show' => $post['is_show'],
  81. 'update_time' => time(),
  82. ];
  83. return Db::name('menu_decorate')->where(['id'=>$post['id']])->update($data);
  84. }
  85. /**
  86. * Notes:删除菜单
  87. * @param $id
  88. * @return int
  89. * @author: cjhao 2021/5/18 18:38
  90. */
  91. public static function del($id){
  92. return Db::name('menu_decorate')
  93. ->where(['id'=>$id,'del'=>0])
  94. ->update(['update_time'=>time(),'del'=>1]);
  95. }
  96. /**
  97. * Notes:切换菜单状态
  98. * @param $post
  99. * @return int
  100. * @author: cjhao 2021/5/18 18:38
  101. */
  102. public static function swtichStatus($post){
  103. return Db::name('menu_decorate')
  104. ->update($post);
  105. }
  106. /**
  107. * Notes:获取菜单
  108. * @param $id
  109. * @return array|\think\Model|null
  110. * @author: cjhao 2021/4/28 11:47
  111. */
  112. public static function getMenuDecorate($id){
  113. $info = Db::name('menu_decorate')
  114. ->where(['del'=>0,'id'=>$id])
  115. ->find();
  116. $info['image'] = empty($info['image']) ? '' : UrlServer::getFileUrl($info['image']);
  117. return $info;
  118. }
  119. /**
  120. * Notes:其他设置
  121. * @param $post
  122. * @return bool
  123. * @author: cjhao 2021/5/19 14:20
  124. */
  125. public static function otherSet($post){
  126. //首页
  127. if(1 == $post['type']){
  128. ConfigServer::set('decoration_index','host_show',$post['host_show']);
  129. ConfigServer::set('decoration_index','new_show',$post['new_show']);
  130. ConfigServer::set('decoration_index','shop_show',$post['shop_show']);
  131. ConfigServer::set('decoration_index','community_show',$post['community_show']);
  132. ConfigServer::set('decoration_index','live_room',$post['live_room']);
  133. ConfigServer::set('decoration_index','background_image',UrlServer::setFileUrl($post['background_image'] ?? ''));
  134. }else{
  135. ConfigServer::set('decoration_center','background_image',UrlServer::setFileUrl($post['background_image'] ?? ''));
  136. }
  137. return true;
  138. }
  139. /**
  140. * Notes:获取其他设置
  141. * @param $type
  142. * @return array
  143. * @author: cjhao 2021/5/19 14:37
  144. */
  145. public static function getOtherSet($type) {
  146. if(1 == $type) {
  147. $data = [
  148. 'host_show' => ConfigServer::get('decoration_index','host_show',1),
  149. 'new_show' => ConfigServer::get('decoration_index','new_show',1),
  150. 'shop_show' => ConfigServer::get('decoration_index','shop_show',1),
  151. 'community_show' => ConfigServer::get('decoration_index','community_show',1),
  152. 'live_room' => ConfigServer::get('decoration_index','live_room',1),
  153. 'background_image' => ConfigServer::get('decoration_index','background_image',''),
  154. ];
  155. $data['background_image'] && $data['background_image'] = UrlServer::getFileUrl($data['background_image']);
  156. }else{
  157. $background_image = ConfigServer::get('decoration_center','background_image','');
  158. $background_image && $background_image = UrlServer::getFileUrl($background_image);
  159. $data['background_image'] = $background_image;
  160. }
  161. return $data;
  162. }
  163. /**
  164. * 底部导航 - 列表
  165. */
  166. public static function bottomNavigation($get)
  167. {
  168. $lists = Db::name('dev_navigation')
  169. ->where('del', 0)
  170. ->page($get['page'], $get['limit'])
  171. ->order('id', 'desc')
  172. ->select()
  173. ->toArray();
  174. $count = Db::name('dev_navigation')->count();
  175. foreach($lists as &$item) {
  176. $item['selected_icon'] = UrlServer::getFileUrl($item['selected_icon']);
  177. $item['un_selected_icon'] = UrlServer::getFileUrl($item['un_selected_icon']);
  178. $item['status_text'] = $item['status'] ? '显示' : '隐藏';
  179. }
  180. $data = [
  181. 'count' => $count,
  182. 'lists' => $lists
  183. ];
  184. return $data;
  185. }
  186. /**
  187. * 底部导航 - 详情
  188. */
  189. public static function getNavigation($id)
  190. {
  191. $navigation = Db::name('dev_navigation')->where('id', $id)->find();
  192. $navigation['selected_icon'] = $navigation['selected_icon'] ? UrlServer::getFileUrl($navigation['selected_icon']) : '';
  193. $navigation['un_selected_icon'] = $navigation['un_selected_icon'] ? UrlServer::getFileUrl($navigation['un_selected_icon']) : '';
  194. return $navigation;
  195. }
  196. /**
  197. * 底部导航 - 编辑
  198. */
  199. public static function editNavigation($post)
  200. {
  201. try {
  202. if(empty($post['name'])) {
  203. throw new \Exception( '导航名称不能为空');
  204. }
  205. $count = Db::name('dev_navigation')->where([
  206. ['del', '=', 0],
  207. ['name', '=', trim($post['name']) ],
  208. ['id', '<>', $post['id']]
  209. ])->count();
  210. if($count) {
  211. throw new \Exception( '导航名称已存在');
  212. }
  213. // 首页菜单不可隐藏,最少保留两个导航
  214. $checkRes = self::checkAbleHideNavBtn($post['id'], $post['status']);
  215. if (true !== $checkRes) {
  216. throw new \Exception($checkRes);
  217. }
  218. $updateData = [
  219. 'name' => trim($post['name']),
  220. 'status' => $post['status'] ?? 1,
  221. 'update_time' => time()
  222. ];
  223. if(isset($post['selected_icon'])) {
  224. $updateData['selected_icon'] = trim(UrlServer::setFileUrl($post['selected_icon']));
  225. }
  226. if(isset($post['un_selected_icon'])) {
  227. $updateData['un_selected_icon'] = trim(UrlServer::setFileUrl($post['un_selected_icon']));
  228. }
  229. Db::name('dev_navigation')->where('id', $post['id'])->update($updateData);
  230. return true;
  231. } catch (\Exception $e) {
  232. self::$error = $e->getMessage();
  233. return false;
  234. }
  235. }
  236. /**
  237. * @notes 校验能都隐藏导航菜单
  238. * @param $navId
  239. * @param $status
  240. * @return bool|string
  241. * @author 段誉
  242. * @date 2023/2/21 15:13
  243. */
  244. public static function checkAbleHideNavBtn($navId, $status)
  245. {
  246. if ($status) {
  247. return true;
  248. }
  249. $first = Db::name('dev_navigation')
  250. ->where('del', 0)
  251. ->order('id', 'desc')
  252. ->findOrEmpty();
  253. if ($first['id'] == $navId) {
  254. return '首页导航不可隐藏';
  255. }
  256. $hideCount = Db::name('dev_navigation')
  257. ->where(['del' => 0, 'status' => 1])
  258. ->count();
  259. if ($hideCount <= 2) {
  260. return '最少保留两个导航菜单';
  261. }
  262. return true;
  263. }
  264. }