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

Closure.php 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. namespace app\shop\controller\content;
  3. use app\shop\logic\content\ClosureCategoryLogic; //应用分类 逻辑控制器
  4. use app\shop\logic\content\ClosureLogic; //截流配置 逻辑控制器
  5. use app\shop\validate\content\ClosureValidate; //截流配置 验证器
  6. use app\common\server\JsonServer;
  7. use app\common\basics\ShopBase; //$this->shop_id;
  8. class Closure extends ShopBase
  9. {
  10. public function lists()
  11. {
  12. if ($this->request->isAjax()) {
  13. $get = $this->request->get();
  14. $lists = ClosureLogic::lists($get,$this->shop_id);
  15. return JsonServer::success("获取成功", $lists);
  16. }
  17. return view('', [
  18. 'category' => ClosureCategoryLogic::getCategory($this->shop_id),
  19. 'category2' => ClosureCategoryLogic::getCategory2($this->shop_id)
  20. ]);
  21. }
  22. public function add()
  23. {
  24. if ($this->request->isAjax()) {
  25. $post = $this->request->post();
  26. $post['shop_id'] = $this->shop_id;
  27. $post['a3'] = $post['a2'] ?? 0;
  28. (new ClosureValidate())->goCheck('add',$post);
  29. $post['a3'] = intval($post['a3'] / 10);
  30. $res = ClosureLogic::add($post);
  31. if ($res === false) {
  32. $error = ClosureLogic::getError() ?: '新增失败';
  33. return JsonServer::error($error);
  34. }
  35. return JsonServer::success('新增成功');
  36. }
  37. $title_no = date('YmdHis') . mt_rand(1000, 9999);
  38. $a = ClosureCategoryLogic::getCategory($this->shop_id);
  39. $b = ClosureCategoryLogic::getCategory2($this->shop_id);
  40. //是否已配置分类
  41. $is_true = false;
  42. foreach ($a as $k => $v) {
  43. if($v['name'] == '默认'){
  44. $is_true = true;
  45. }
  46. }
  47. if($is_true === false){
  48. foreach ($b as $k => $v) {
  49. if($v['name'] == '默认'){
  50. $is_true = true;
  51. }
  52. }
  53. }
  54. //不管当前是什么类型的app设置
  55. $search_list = [
  56. 'xhs' => [
  57. "a" => ["综合",'最新','最多点赞','最多评论'], //排序依据
  58. "b" => ["不限",'视频','图文','直播'], //笔记类型
  59. "c" => ["不限",'一天内','一周内','半年内'], //发布时间
  60. "d" => ["不限",'已看过','未看过','已关注'], //搜索范围
  61. ]
  62. ];
  63. return view('', [
  64. 'category' => $a,
  65. 'category2' => $b,
  66. 'title_no' => $title_no,
  67. 'is_true' => $is_true,
  68. 'search_list' => $search_list
  69. ]);
  70. }
  71. /***
  72. * @Notes: 编辑文章
  73. * @Author: 张无忌
  74. */
  75. public function edit()
  76. {
  77. if ($this->request->isAjax()) {
  78. $post = $this->request->post();
  79. $post['shop_id'] = $this->shop_id;
  80. $post['a3'] = $post['a2'] ?? 0;
  81. (new ClosureValidate())->goCheck('edit',$post);
  82. $post['a3'] = intval($post['a3'] / 10);
  83. $res = ClosureLogic::edit($post);
  84. if ($res === false) {
  85. $error = ClosureLogic::getError() ?: '编辑失败';
  86. return JsonServer::error($error);
  87. }
  88. return JsonServer::success('编辑成功');
  89. }
  90. $id = $this->request->get('id');
  91. $data = ClosureLogic::detail($id);
  92. //不管当前是什么类型的app设置
  93. $search_list = [
  94. 'xhs' => [
  95. "a" => ["综合",'最新','最多点赞','最多评论'], //排序依据
  96. "b" => ["不限",'视频','图文','直播'], //笔记类型
  97. "c" => ["不限",'一天内','一周内','半年内'], //发布时间
  98. "d" => ["不限",'已看过','未看过','已关注'], //搜索范围
  99. ]
  100. ];
  101. return view('', [
  102. 'detail' => $data,
  103. 'extend' => $data['form_data'],
  104. 'category' => ClosureCategoryLogic::getCategory($this->shop_id),
  105. 'category2' => ClosureCategoryLogic::getCategory2($this->shop_id),
  106. 'search_list' => $search_list
  107. ]);
  108. }
  109. /**
  110. * @Notes: 删除文章
  111. * @Author: 张无忌
  112. */
  113. public function del()
  114. {
  115. if ($this->request->isAjax()) {
  116. (new ClosureValidate())->goCheck('id');
  117. $id = $this->request->post('id');
  118. $res = ClosureLogic::del($id);
  119. if ($res === false) {
  120. $error = ClosureLogic::getError() ?: '删除失败';
  121. return JsonServer::error($error);
  122. }
  123. return JsonServer::success('删除成功');
  124. }
  125. return JsonServer::success('异常');
  126. }
  127. /**
  128. * @Notes: 隐藏文章
  129. * @Author: 张无忌
  130. */
  131. public function hide()
  132. {
  133. if ($this->request->isAjax()) {
  134. (new ClosureValidate())->goCheck('id');
  135. $id = $this->request->post('id');
  136. $res = ClosureLogic::hide($id);
  137. if ($res === false) {
  138. $error = ClosureLogic::getError() ?: '操作失败';
  139. return JsonServer::error($error);
  140. }
  141. return JsonServer::success('操作成功');
  142. }
  143. return JsonServer::success('异常');
  144. }
  145. }