UserArticle.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <?php
  2. namespace app\Nutrition\controller;
  3. use app\common\model\ArticleCate;
  4. use app\common\model\ArticleIntro;
  5. use app\common\model\User;
  6. use app\common\model\UserMessage;
  7. use app\common\model\VideoIntro;
  8. use app\common\model\VideoUrl;
  9. use library\Controller;
  10. use library\tools\Data;
  11. use think\Db;
  12. use app\common\model\VideoCate as VCM;
  13. /**
  14. * 图文管理
  15. * Class UserArticle
  16. * @package app\Nutrition\controller
  17. */
  18. class UserArticle extends Controller
  19. {
  20. /**
  21. * 绑定数据表
  22. * @var string
  23. */
  24. protected $table = 'UserArticle';
  25. /**
  26. * 列表
  27. * @auth true
  28. * @menu true
  29. * @throws \think\Exception
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. * @throws \think\exception\DbException
  33. * @throws \think\exception\PDOException
  34. */
  35. public function index()
  36. {
  37. $this->title = '图文列表';
  38. $video_cate = VCM::field('id,title')->select()->toArray();
  39. $this->video_cate = array_column($video_cate,null,'id');
  40. $sel_where = [];
  41. $sel_where[] = ['v.is_deleted','=',0];
  42. if($title = $this->request->get('title')) $sel_where[] = ['v.title','like','%'.$title.'%'];
  43. if($phone = $this->request->get('phone')) $sel_where[] = ['m.phone','like','%'.$phone.'%'];
  44. $this->status = $this->request->get('status',-1);
  45. if( $this->status >= 0 ) $sel_where[] = ['v.status','=', $this->status ];
  46. $query = $this->_query($this->table)->field('v.*,m.phone,m.name user_name, m.headimg')->alias('v')
  47. ->leftJoin('StoreMember m','m.id = v.user_id');
  48. $arr = ['is_new' => 0];
  49. \app\common\model\UserArticle::alias('f')->where('is_new',1)->update($arr);
  50. $query->where($sel_where)->order('v.status desc ,v.id desc')->page();
  51. }
  52. /**
  53. * 数据列表处理
  54. * @auth true
  55. * @menu true
  56. * @param array $data
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. */
  61. protected function _index_page_filter(&$data)
  62. {
  63. }
  64. /**
  65. * 编辑
  66. * @auth true
  67. * @menu true
  68. * @throws \think\Exception
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\ModelNotFoundException
  71. * @throws \think\exception\DbException
  72. * @throws \think\exception\PDOException
  73. */
  74. public function edit()
  75. {
  76. $this->title = '编辑图文';
  77. $this->_form($this->table, 'form');
  78. }
  79. /**
  80. * 禁用
  81. * @auth true
  82. * @menu true
  83. * @throws \think\Exception
  84. * @throws \think\db\exception\DataNotFoundException
  85. * @throws \think\db\exception\ModelNotFoundException
  86. * @throws \think\exception\DbException
  87. * @throws \think\exception\PDOException
  88. */
  89. public function forbidden()
  90. {
  91. $this->_save($this->table, ['status' => '0']);
  92. }
  93. /**
  94. * 启用
  95. * @auth true
  96. * @menu true
  97. * @throws \think\Exception
  98. * @throws \think\db\exception\DataNotFoundException
  99. * @throws \think\db\exception\ModelNotFoundException
  100. * @throws \think\exception\DbException
  101. * @throws \think\exception\PDOException
  102. */
  103. public function enable()
  104. {
  105. $this->_save($this->table, ['status' => 1]);
  106. }
  107. /**
  108. * 删除图文
  109. * @auth true
  110. * @menu true
  111. * @throws \think\Exception
  112. * @throws \think\db\exception\DataNotFoundException
  113. * @throws \think\db\exception\ModelNotFoundException
  114. * @throws \think\exception\DbException
  115. * @throws \think\exception\PDOException
  116. */
  117. public function del()
  118. {
  119. $this->_save($this->table, ['is_deleted' => 1]);
  120. }
  121. /**
  122. * 表单数据处理
  123. * @auth true
  124. * @menu true
  125. * @param array $data
  126. */
  127. protected function _form_filter(&$data)
  128. {
  129. if($this->request->isGet() && in_array($this->request->action(),['add','edit'])){
  130. $all_cate = VCM::where(['is_deleted'=>0])->order('sort desc ,id desc')->select();
  131. $this->cate_tree = make_tree($all_cate);
  132. }
  133. if($this->request->isPost() && in_array($this->request->action(),['add','edit'])) {
  134. if($data['status'] > 0 ) UserMessage::sendUserMessage($data['user_id'],'article',2,$data['status']-1,0,$data['id']);
  135. }
  136. }
  137. protected function _form_result($result){
  138. }
  139. /**
  140. * 图文添加到系列
  141. * @auth true
  142. * @throws \think\Exception
  143. * @throws \think\db\exception\DataNotFoundException
  144. * @throws \think\db\exception\ModelNotFoundException
  145. * @throws \think\exception\DbException
  146. * @throws \think\exception\PDOException
  147. */
  148. public function series()
  149. {
  150. if ($this->request->isGet()) {
  151. $id = $this->request->get('id');
  152. $has_series = \app\common\model\ArticleItem::where('rel_id',$id)->column('article_id');
  153. $user_article = \app\common\model\UserArticle::where(['id' => $id])->find()->toArray();
  154. $series_list = ArticleIntro::where(['is_deleted'=>0,'type'=>2])->where('id','not in',$has_series)->column('title','id');
  155. $this->fetch('', ['vo' => $user_article,'series_list'=>$series_list]);
  156. } else {
  157. $id = input('post.id');
  158. $series_id = input('post.series_id');
  159. if(!$series_id) $this->error('请选择系列');
  160. $is_vip = input('post.is_vip');
  161. $user_article = \app\common\model\UserArticle::where(['id' => $id])->find()->toArray();
  162. $user_phone = User::where('id',$user_article['user_id'])->value('phone');
  163. \app\common\model\ArticleItem::create([
  164. 'article_id'=>$series_id,
  165. 'cover'=>explode('|',$user_article['images'])[0],
  166. 'images'=>$user_article['images'],
  167. 'sort'=>0,
  168. 'is_vip'=>$is_vip,
  169. 'source'=>2,
  170. 'rel_id'=>$id,
  171. 'content'=>$user_article['desc'],
  172. 'title'=>$user_article['title'],
  173. 'user_id' => $user_article['user_id'],
  174. 'phone' => $user_phone,
  175. 'release_time' => date("Y-m-d H:i:s"),
  176. ]);
  177. ArticleIntro::where('id',$series_id)->setInc('item_num');
  178. $this->success('添加成功!');
  179. }
  180. }
  181. public function new_article(){
  182. if($this->request->isGet())
  183. {
  184. $user_article = \app\common\model\UserArticle::where('id',input('id'))->find()->toArray();
  185. $all_cate = ArticleCate::where(['is_deleted'=>0])->order('sort desc ,id desc')->select();
  186. $cate_tree = make_tree($all_cate);
  187. $this->cate_tree = $cate_tree;
  188. $this->fetch('',['vo'=>$user_article,'cate_tree '=>$cate_tree]);
  189. }else{
  190. $user_article_id= input('user_article_id');
  191. $user_article = \app\common\model\UserArticle::where('id',$user_article_id)->find()->toArray();
  192. $user_phone = User::where('id',$user_article['user_id'])->value('phone');
  193. $new_article = [
  194. 'title' => $user_article['title'],
  195. 'content' => $user_article['desc'],
  196. 'cover' => explode('|',$user_article['images'])[0],
  197. 'images' => $user_article['images'],
  198. 'first_classify' => input('first_classify'),
  199. 'second_classify' => input('second_classify'),
  200. 'type' => 1,
  201. 'is_over' => 1,
  202. 'label' => $user_article['label'],
  203. 'is_vip' => input('is_vip'),
  204. ];
  205. $result = ArticleIntro::create($new_article);
  206. $article_item = [
  207. 'article_id' => $result->id,
  208. 'cover' => $new_article['cover'],
  209. 'images' => $new_article['images'],
  210. 'content' => $new_article['content'],
  211. 'is_vip' => $new_article['is_vip'],
  212. 'source' => 2,
  213. 'title' => $new_article['title'],
  214. 'rel_id' => $user_article_id,
  215. 'user_id' => $user_article['user_id'],
  216. 'phone' => $user_phone,
  217. 'release_time' => date("Y-m-d H:i:s"),
  218. ];
  219. Data::save('ArticleItem',$article_item,'article_id',['article_id' => $result->id]);
  220. $this->success('创建成功');
  221. }
  222. }
  223. }