截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?php
  2. namespace app\admin\logic\content;
  3. use app\common\basics\Logic;
  4. use app\common\model\content\Article;
  5. use Exception;
  6. class ArticleLogic extends Logic
  7. {
  8. /**
  9. * 获取文章分类
  10. * @param $get
  11. * @return array
  12. */
  13. public static function lists($get)
  14. {
  15. try {
  16. $where = [
  17. ['del', '=', 0]
  18. ];
  19. if (!empty($get['title']) and $get['title'])
  20. $where[] = ['title', 'like', '%'.$get['title'].'%'];
  21. if (!empty($get['cid']) and is_numeric($get['cid']))
  22. $where[] = ['cid', '=', $get['cid']];
  23. if (isset($get['is_notice']) and is_numeric($get['is_notice']))
  24. $where[] = ['is_notice', '=', $get['is_notice']];
  25. $model = new Article();
  26. $lists = $model->field(true)
  27. ->where($where)
  28. ->with(['category'])
  29. ->order('sort', 'asc')
  30. ->paginate([
  31. 'page' => $get['page'],
  32. 'list_rows' => $get['limit'],
  33. 'var_page' => 'page'
  34. ])
  35. ->toArray();
  36. foreach ($lists['data'] as &$item) {
  37. $item['category'] = $item['category']['name'] ?? '未知';
  38. $item['is_notice'] = $item['is_notice'] ? '是' : '否';
  39. $item['is_show'] = $item['is_show'] ? '显示' : '隐藏';
  40. }
  41. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  42. } catch (Exception $e) {
  43. return ['error'=>$e->getMessage()];
  44. }
  45. }
  46. /**
  47. * @Notes: 文章详细
  48. * @Author: 张无忌
  49. * @param $id
  50. * @return array
  51. */
  52. public static function detail($id)
  53. {
  54. $model = new Article();
  55. return $model->field(true)->findOrEmpty($id)->toArray();
  56. }
  57. /**
  58. * @Notes: 添加文章
  59. * @Author: 张无忌
  60. * @param $post
  61. * @return bool
  62. */
  63. public static function add($post)
  64. {
  65. try {
  66. Article::create([
  67. 'cid' => $post['cid'],
  68. 'title' => $post['title'],
  69. 'image' => $post['image'] ?? '',
  70. 'intro' => $post['intro'] ?? '',
  71. 'content' => $post['content'] ?? '',
  72. 'visit' => 0,
  73. 'likes' => 0,
  74. 'sort' => $post['sort'] ?? 0,
  75. 'is_notice' => $post['is_notice'],
  76. 'is_show' => $post['is_show']
  77. ]);
  78. return true;
  79. } catch (\Exception $e) {
  80. static::$error = $e->getMessage();
  81. return false;
  82. }
  83. }
  84. /**
  85. * @Notes: 编辑文章
  86. * @Author: 张无忌
  87. * @param $post
  88. * @return bool
  89. */
  90. public static function edit($post)
  91. {
  92. try {
  93. Article::update([
  94. 'cid' => $post['cid'],
  95. 'title' => $post['title'],
  96. 'image' => $post['image'] ?? '',
  97. 'intro' => $post['intro'] ?? '',
  98. 'content' => $post['content'] ?? '',
  99. 'visit' => 0,
  100. 'likes' => 0,
  101. 'sort' => $post['sort'] ?? 0,
  102. 'is_notice' => $post['is_notice'],
  103. 'is_show' => $post['is_show']
  104. ], ['id'=>$post['id']]);
  105. return true;
  106. } catch (\Exception $e) {
  107. static::$error = $e->getMessage();
  108. return false;
  109. }
  110. }
  111. /**
  112. * @Notes: 删除
  113. * @Author: 张无忌
  114. * @param $id
  115. * @return bool
  116. */
  117. public static function del($id)
  118. {
  119. try {
  120. Article::update([
  121. 'del' => 1,
  122. 'update_time' => time()
  123. ], ['id'=>$id]);
  124. return true;
  125. } catch (\Exception $e) {
  126. static::$error = $e->getMessage();
  127. return false;
  128. }
  129. }
  130. /**
  131. * @Notes: 隐藏
  132. * @Author: 张无忌
  133. * @param $id
  134. * @return bool
  135. */
  136. public static function hide($id)
  137. {
  138. try {
  139. $model = new Article();
  140. $article = $model->findOrEmpty($id)->toArray();
  141. Article::update([
  142. 'is_show' => !$article['is_show'],
  143. 'update_time' => time()
  144. ], ['id'=>$id]);
  145. return true;
  146. } catch (\Exception $e) {
  147. static::$error = $e->getMessage();
  148. return false;
  149. }
  150. }
  151. }