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

ClosureLogic.php 8.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <?php
  2. namespace app\shop\logic\content;
  3. use app\common\basics\Logic;
  4. use app\common\model\content\Closure; //截流配置表 模型
  5. use app\common\model\content\IndustryCategory as IndustryCategoryModel; //行业表 模型
  6. use app\common\model\content\ClosureCategory as ClosureCategoryModel; //应用分类表 模型
  7. use Exception;
  8. class ClosureLogic extends Logic
  9. {
  10. /**
  11. * 获取文章分类
  12. * @param $get
  13. * @return array
  14. */
  15. public static function lists($get, $shop_id)
  16. {
  17. try {
  18. $where = [
  19. ['shop_id', '=', $shop_id],
  20. ['del', '=', 0]
  21. ];
  22. if (!empty($get['title']) and $get['title'])
  23. $where[] = ['title', 'like', '%' . $get['title'] . '%'];
  24. if (!empty($get['cid']) and is_numeric($get['cid']))
  25. $where[] = ['cid', '=', $get['cid']];
  26. //行业分类
  27. if (!empty($get['yid']) and is_numeric($get['yid']))
  28. $where[] = ['yid', '=', $get['yid']];
  29. if (isset($get['is_notice']) and is_numeric($get['is_notice']))
  30. $where[] = ['is_notice', '=', $get['is_notice']];
  31. $model = new Closure();
  32. $lists = $model->field(true)
  33. ->where($where)
  34. ->with(['category', 'category2'])
  35. //->order('sort', 'asc')
  36. ->order([
  37. 'yid' => 'asc',
  38. 'cid' => 'asc'
  39. ])
  40. ->paginate([
  41. 'page' => $get['page'],
  42. 'list_rows' => $get['limit'],
  43. 'var_page' => 'page'
  44. ])
  45. ->toArray();
  46. foreach ($lists['data'] as &$item) {
  47. $item['category'] = $item['category']['name'] ?? '未知';
  48. $item['category2'] = $item['category2']['name'] ?? '未知';
  49. $item['is_notice'] = $item['is_notice'] ? '是' : '否';
  50. $item['is_show'] = $item['is_show'] ? '显示' : '隐藏';
  51. }
  52. return ['count' => $lists['total'], 'lists' => $lists['data']];
  53. } catch (Exception $e) {
  54. return ['error' => $e->getMessage()];
  55. }
  56. }
  57. /**
  58. * @Notes: 文章详细
  59. * @Author: 张无忌
  60. * @param $id
  61. * @return array
  62. */
  63. public static function detail($id)
  64. {
  65. $model = new Closure();
  66. $data = $model->field(true)->findOrEmpty($id)->toArray();
  67. $data['form_data'] = json_decode($data['form_data'], true);
  68. return $data;
  69. }
  70. /**
  71. * @Notes: 添加文章
  72. * @Author: 张无忌
  73. * @param $post
  74. * @return bool
  75. */
  76. public static function add($post)
  77. {
  78. try {
  79. $model = new Closure();
  80. $arr = $model->postDataHandle($post);
  81. Closure::create([
  82. 'shop_id' => $post['shop_id'],
  83. 'cid' => $post['cid'],
  84. 'yid' => $post['yid'],
  85. 'title' => $post['title'],
  86. 'image' => $post['image'] ?? '',
  87. 'intro' => $post['intro'] ?? '',
  88. 'content' => $post['content'] ?? '',
  89. 'visit' => 0,
  90. 'likes' => 0,
  91. 'sort' => $post['sort'] ?? 0,
  92. 'is_notice' => $post['is_notice'],
  93. 'is_show' => $post['is_show'],
  94. 'version' => $post['shop_id'] . '-' . time(),
  95. 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE),
  96. 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE)
  97. ]);
  98. return true;
  99. } catch (\Exception $e) {
  100. static::$error = $e->getMessage();
  101. return false;
  102. }
  103. }
  104. /**
  105. * @Notes: 编辑文章
  106. * @Author: 张无忌
  107. * @param $post
  108. * @return bool
  109. */
  110. public static function edit($post)
  111. {
  112. try {
  113. $model = new Closure();
  114. $arr = $model->postDataHandle($post);
  115. Closure::update([
  116. 'shop_id' => $post['shop_id'],
  117. 'cid' => $post['cid'],
  118. 'yid' => $post['yid'] ?? '',
  119. 'title' => $post['title'],
  120. 'image' => $post['image'] ?? '',
  121. 'intro' => $post['intro'] ?? '',
  122. 'content' => $post['content'] ?? '',
  123. 'visit' => 0,
  124. 'likes' => 0,
  125. 'sort' => $post['sort'] ?? 0,
  126. 'is_notice' => $post['is_notice'],
  127. 'is_show' => $post['is_show'],
  128. 'version' => $post['version'],
  129. 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE),
  130. 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE)
  131. ], ['id' => $post['id']]);
  132. return true;
  133. } catch (\Exception $e) {
  134. static::$error = $e->getMessage();
  135. return false;
  136. }
  137. }
  138. /**
  139. * @Notes: 删除
  140. * @Author: 张无忌
  141. * @param $id
  142. * @return bool
  143. */
  144. public static function del($id)
  145. {
  146. try {
  147. $item = Closure::where(['id' => $id])->find();
  148. $t = $item['shop_id'].'_'.'默认配置';
  149. if($item['title'] == $t){
  150. static::$error = "默认配置不允许删除";
  151. return false;
  152. }
  153. Closure::update([
  154. 'del' => 1,
  155. 'update_time' => time()
  156. ], ['id' => $id]);
  157. return true;
  158. } catch (\Exception $e) {
  159. static::$error = $e->getMessage();
  160. return false;
  161. }
  162. }
  163. /**
  164. * @Notes: 隐藏
  165. * @Author: 张无忌
  166. * @param $id
  167. * @return bool
  168. */
  169. public static function hide($id)
  170. {
  171. try {
  172. $model = new Closure();
  173. $article = $model->findOrEmpty($id)->toArray();
  174. Closure::update([
  175. 'is_show' => !$article['is_show'],
  176. 'update_time' => time()
  177. ], ['id' => $id]);
  178. return true;
  179. } catch (\Exception $e) {
  180. static::$error = $e->getMessage();
  181. return false;
  182. }
  183. }
  184. /*
  185. * 初始化一个默认配置
  186. */
  187. public static function insertDefault($shop_id){
  188. /*
  189. * 查询默认记录
  190. */
  191. $model = new Closure();
  192. $where = [
  193. "shop_id" => 1,
  194. "cid" => 3,
  195. "yid" => 4,
  196. ];
  197. //先查询用户是否已有配置
  198. $t = $model->where(['del'=>0,'shop_id'=>$shop_id])->order('id asc')->find();
  199. //$t = $t->toArray();
  200. if(empty($t)){
  201. //不存在配置
  202. $row = $model->where($where)->order('id asc')->find();
  203. //默认配置id
  204. $cid = ClosureCategoryModel::where(['shop_id'=>$shop_id,'del'=>0,'name'=>'默认'])->value('id');
  205. //默认行业id
  206. $sid = IndustryCategoryModel::where(['shop_id'=>$shop_id,'del'=>0,'name'=>'默认'])->value('id');
  207. if(!empty($row)){
  208. //转成数组
  209. $row = $row->toArray();
  210. //dump($row);
  211. //复制给用户
  212. unset($row['id']);
  213. $row['cid'] = $cid;
  214. $row['yid'] = $sid;
  215. $row['title'] = $shop_id."_默认配置";
  216. $row['version'] = $shop_id.'_'.time();
  217. $row['create_time'] = time();
  218. $row['update_time'] = time();
  219. $row['shop_id'] = $shop_id;
  220. //插入数据库
  221. $model->insert($row);
  222. }
  223. }else{
  224. //查找是否存在默认配置 重新增加 这条记录不可删除
  225. //现有用户的记录如果已绑定 也不影响
  226. $title = $shop_id."_默认配置";
  227. $item = $model->where(['del'=>0,'shop_id'=>$shop_id,'title'=>$title])->find();
  228. //$item = $item->toArray();
  229. if(empty($item)){
  230. //不存在 则新增
  231. $row = $model->where($where)->order('id asc')->find();
  232. if(!empty($row)){
  233. //转成数组
  234. $row = $row->toArray();
  235. //复制给用户
  236. unset($row['id']);
  237. $row['title'] = $shop_id."_默认配置";
  238. $row['version'] = $shop_id.'_'.time();
  239. $row['create_time'] = time();
  240. $row['update_time'] = time();
  241. $row['shop_id'] = $shop_id;
  242. //插入数据库
  243. $model->insert($row);
  244. }
  245. }
  246. }
  247. }
  248. }