Article.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\ArticleModel;
  4. use app\admin\model\ArticleCateModel;
  5. use think\Db;
  6. use org\Qiniu;
  7. class Article extends Base
  8. {
  9. /**
  10. * [index 文章列表]
  11. * @author
  12. */
  13. public function index(){
  14. if(request()->isAjax ()){
  15. extract(input());
  16. $map = [];
  17. if(isset($key)&&$key!=""){
  18. $map['r.title'] = ['like',"%" . $key . "%"];
  19. }
  20. if(isset($start)&&$start!=""&&isset($end)&&$end=="")
  21. {
  22. $map['r.create_time'] = ['>= time',$start];
  23. }
  24. if(isset($end)&&$end!=""&&isset($start)&&$start=="")
  25. {
  26. $map['r.create_time'] = ['<= time',$end];
  27. }
  28. if(isset($start)&&$start!=""&&isset($end)&&$end!="")
  29. {
  30. $map['r.create_time'] = ['between time',[$start,$end]];
  31. }
  32. $field=input('field');//字段
  33. $order=input('order');//排序方式
  34. if($field && $order){
  35. $od="r.".$field." ".$order;
  36. }else{
  37. $od="r.create_time desc";
  38. }
  39. $Nowpage = input('get.page') ? input('get.page'):1;
  40. $limits = input("limit")?input("limit"):10;
  41. $count = Db::name('article')->alias('r')->where($map)->count();//计算总页面
  42. $article = new ArticleModel();
  43. $lists = $article->getArticleByWhere($map, $Nowpage, $limits,$od);
  44. for($i=0;$i<count($lists);$i++){
  45. $photo = explode(',',$lists[$i]['photo']);
  46. $lists[$i]['photo'] = array_values($photo);
  47. }
  48. return json(['code'=>220,'msg'=>'','count'=>$count,'data'=>$lists]);
  49. }
  50. return $this->fetch("article/index");
  51. }
  52. //tableSelect测试数据
  53. public function getUserData(){
  54. if(request()->isGet ()){
  55. extract(input());
  56. $map = [];
  57. if(isset($keyword)&&$keyword!=""){
  58. $map['name'] = ['like',"%" . $keyword . "%"];
  59. }
  60. $Nowpage = input('get.page') ? input('get.page'):1;
  61. $limits = input("limit")?input("limit"):10;
  62. $count = Db::name('test')->where($map)->count();//计算总页面
  63. $lists = Db::name('test')
  64. ->where($map)
  65. ->page($Nowpage,$limits)
  66. ->select();
  67. return json(['code'=>220,'msg'=>'','count'=>$count,'data'=>$lists]);
  68. }
  69. if(request()->isPost ()){
  70. $data = Db::name('test')
  71. ->where('id','in',input('id'))
  72. ->select();
  73. return json(['code'=>200,'data'=>$data]);
  74. }
  75. }
  76. // public function insertData(){
  77. // set_time_limit (0);
  78. // for($i=0;$i<100000;$i++){
  79. // $param = ['name'=>'kevin'.($i+1)];
  80. // Db::name('test')->insert($param);
  81. // }
  82. // }
  83. /**
  84. * [add_article 添加文章]
  85. * @return [type] [description]
  86. * @author
  87. */
  88. public function add_article()
  89. {
  90. if(request()->isPost()){
  91. extract(input());
  92. $param = input('post.');
  93. if(!isset($status)){
  94. $param['status'] = 2;
  95. }
  96. $param['photo'] = trim($param['photo'],',');
  97. $article = new ArticleModel();
  98. $flag = $article->insertArticle($param);
  99. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  100. }
  101. $cate = new ArticleCateModel();
  102. $area = new \app\common\place\Area;
  103. return $this->fetch('article/add_article',['province'=>$area->province(),'cate'=>$cate->getCate()]);
  104. }
  105. /**
  106. * [edit_article 编辑文章]
  107. * @return [type] [description]
  108. * @author
  109. */
  110. public function edit_article()
  111. {
  112. $article = new ArticleModel();
  113. if(request()->isPost()){
  114. $param = input('post.');
  115. $imgs = explode(',',$param['del']);
  116. foreach($imgs as $vo){
  117. $add = str_replace ('http://p73q8jzf0.bkt.clouddn.com/','',$vo);
  118. $up = new Qiniu();
  119. $up->delFile($add,'kevin');
  120. }
  121. $param['photo'] = trim($param['photo'],',');
  122. $flag = $article->updateArticle($param);
  123. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  124. }
  125. $id = input('param.id');
  126. $cate = new ArticleCateModel();
  127. $data = $article->getOneArticle($id);
  128. if(!empty($data['photo'])){
  129. $data['photo'] = trim($data['photo'],',');
  130. // $img = explode(',',$data['photo']);
  131. // foreach($img as $vo){
  132. // $photo[] = '/uploads/images/'.$vo;
  133. // }
  134. $data['imges'] = $data['photo'];
  135. }else{
  136. $data['photo'] = '';
  137. $data['imges'] = '';
  138. }
  139. $this->assign('cate',$cate->getCate());
  140. $this->assign('article',$data);
  141. return $this->fetch();
  142. }
  143. // /**
  144. // * imgDelete 删除图片
  145. // * @return \think\response\Json
  146. // * @throws \think\Exception
  147. // * @throws \think\exception\PDOException
  148. // */
  149. // public function imgDelete(){
  150. // extract(input());
  151. // $photo = Db::name('article')->where('id',$id)->value('photo');
  152. // $add = str_replace('/uploads/images/',"",$add);
  153. // $imgs = explode(',',$photo);;
  154. // if(in_array($add,$imgs)){
  155. // $key = array_search ($add,$imgs);
  156. // $place = 'uploads/images/'.$imgs[$key];
  157. // unset($imgs[$key]);
  158. // $img = implode(',',$imgs);
  159. // trim($img,',');
  160. // $res = Db::name('article')->where('id',$id)->update(['photo'=>$img]);
  161. // if($res){
  162. // unlink ($place);
  163. // return json(['code'=>200,'msg'=>'删除成功']);
  164. // }else{
  165. // return json(['code'=>100,'msg'=>'删除失败!']);
  166. // }
  167. // }
  168. // }
  169. //
  170. // /**
  171. // * updatePhoto 修改图片
  172. // * @return \think\response\Json
  173. // */
  174. // public function updatePhoto(){
  175. // extract(input());
  176. // $photo = Db::name('article')->where('id',$id)->value('photo');
  177. // if($photo != ""){
  178. // $photo = $photo.",".$add;
  179. // }else{
  180. // $photo = $add;
  181. // }
  182. // $res = Db::name('article')->where('id',$id)->setField ('photo',$photo);
  183. // if($res){
  184. // return json(['code'=>200,'msg'=>'']);
  185. // }else{
  186. // return json(['code'=>100,'msg'=>'']);
  187. // }
  188. // }
  189. /**
  190. * [del_article 删除文章]
  191. * @return [type] [description]
  192. * @author
  193. */
  194. public function del_article()
  195. {
  196. $id = input('param.id');
  197. $cate = new ArticleModel();
  198. $flag = $cate->delArticle($id);
  199. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  200. }
  201. /**
  202. * [article_state 文章状态]
  203. * @return [type] [description]
  204. * @author
  205. */
  206. public function article_state()
  207. {
  208. extract(input());
  209. $cate = new ArticleModel();
  210. $flag = $cate->articleState($id,$num);
  211. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  212. }
  213. /**
  214. * batchDelArticle 批量删除文章
  215. * @return \think\response\Json
  216. */
  217. public function batchDelArticle(){
  218. extract(input());
  219. if(empty($ids)){
  220. return json(['code'=>100,'msg'=>'请选择要删除的记录!']);
  221. }
  222. $article = new ArticleModel();
  223. $flag = $article->batchDelArticle($ids);
  224. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  225. }
  226. /**
  227. * 批量启用文章
  228. * @return \think\response\Json
  229. */
  230. public function usingArticle(){
  231. extract(input());
  232. $list = [];
  233. if($ids){
  234. $ids = explode(',',$ids);
  235. for($i=0;$i<count($ids);$i++){
  236. $param = [
  237. 'id'=>$ids[$i],
  238. 'status'=>1
  239. ];
  240. $list[] = $param;
  241. }
  242. }
  243. $article = new ArticleModel();
  244. $flag = $article->usingArticle($list);
  245. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  246. }
  247. /**
  248. * 批量禁用文章
  249. * @return \think\response\Json
  250. */
  251. public function forbiddenArticle(){
  252. extract(input());
  253. $list = [];
  254. if($ids){
  255. $ids = explode(',',$ids);
  256. for($i=0;$i<count($ids);$i++){
  257. $param = [
  258. 'id'=>$ids[$i],
  259. 'status'=>2
  260. ];
  261. $list[] = $param;
  262. }
  263. }
  264. $article = new ArticleModel();
  265. $flag = $article->forbiddenArticle($list);
  266. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  267. }
  268. // /**
  269. // * showImg 多图预览
  270. // * @return mixed
  271. // */
  272. // public function showImg(){
  273. // $imgs = Db::name('article')->where('id',input('id'))->value('photo');
  274. // $imgs = explode(',',$imgs);
  275. //// $this->assign('imgs',$imgs);
  276. //// return $this->fetch('article/show_img');
  277. // return json(['msg'=>$imgs,'one'=>$imgs[0]]);
  278. //
  279. // }
  280. //*********************************************分类管理*********************************************//
  281. /**
  282. * [index_cate 分类列表]
  283. * @return [type] [description]
  284. * @author
  285. */
  286. public function index_cate(){
  287. if(request()->isAjax ()){
  288. extract(input());
  289. $map = [];
  290. if(isset($key)&&$key!=""){
  291. $map['name'] = ['like',"%" . $key . "%"];
  292. }
  293. if(isset($start)&&$start!=""&&isset($end)&&$end=="")
  294. {
  295. $map['create_time'] = ['>= time',$start];
  296. }
  297. if(isset($end)&&$end!=""&&isset($start)&&$start=="")
  298. {
  299. $map['create_time'] = ['<= time',$end];
  300. }
  301. if(isset($start)&&$start!=""&&isset($end)&&$end!="")
  302. {
  303. $map['create_time'] = ['between time',[$start,$end]];
  304. }
  305. $field=input('field');//字段
  306. $order=input('order');//排序方式
  307. if($field && $order){
  308. $od=$field." ".$order;
  309. }else{
  310. $od="create_time desc";
  311. }
  312. $cate = new ArticleCateModel();
  313. $nowpage = input('get.page') ? input('get.page'):1;
  314. $limits = input("limit")?input("limit"):10;
  315. $count = $cate->getAllCount($map);//计算总页面
  316. $lists = $cate->getAllCate($map, $nowpage, $limits,$od);
  317. return json(['code'=>0,'msg'=>'','count'=>$count,'data'=>$lists]);
  318. }
  319. return $this->fetch("article/index_cate");
  320. }
  321. /**
  322. * [add_cate 添加分类]
  323. * @return [type] [description]
  324. * @author
  325. */
  326. public function add_cate()
  327. {
  328. if(request()->isPost()){
  329. extract(input());
  330. $param = input('post.');
  331. if(!isset($status)){
  332. $param['status'] = 2;
  333. }
  334. $cate = new ArticleCateModel();
  335. $flag = $cate->insertCate($param);
  336. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  337. }
  338. return $this->fetch();
  339. }
  340. /**
  341. * [edit_cate 编辑分类]
  342. * @return [type] [description]
  343. * @author
  344. */
  345. public function edit_cate()
  346. {
  347. $cate = new ArticleCateModel();
  348. if(request()->isPost()){
  349. $param = input('post.');
  350. $flag = $cate->editCate($param);
  351. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  352. }
  353. $id = input('param.id');
  354. $this->assign('cate',$cate->getOneCate($id));
  355. return $this->fetch();
  356. }
  357. /**
  358. * [del_cate 删除分类]
  359. * @return [type] [description]
  360. * @author
  361. */
  362. public function del_cate()
  363. {
  364. $id = input('param.id');
  365. $cate = new ArticleCateModel();
  366. $flag = $cate->delCate($id);
  367. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  368. }
  369. /**
  370. * [cate_state 分类状态]
  371. * @return [type] [description]
  372. * @author
  373. */
  374. public function cate_state()
  375. {
  376. extract(input());
  377. $cate = new ArticleCateModel();
  378. $flag = $cate->cateState($id,$num);
  379. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  380. }
  381. /**
  382. * batchDelCate 批量删除文章分类
  383. * @return \think\response\Json
  384. */
  385. public function batchDelCate(){
  386. extract(input());
  387. if(empty($ids)){
  388. return json(['code'=>100,'msg'=>'请选择要删除的记录!']);
  389. }
  390. $cate = new ArticleCateModel();
  391. $flag = $cate->batchDelCate($ids);
  392. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  393. }
  394. /**
  395. * 批量启用分类
  396. * @return \think\response\Json
  397. */
  398. public function usingCate(){
  399. extract(input());
  400. $list = [];
  401. if($ids){
  402. $ids = explode(',',$ids);
  403. for($i=0;$i<count($ids);$i++){
  404. $param = [
  405. 'id'=>$ids[$i],
  406. 'status'=>1
  407. ];
  408. $list[] = $param;
  409. }
  410. }
  411. $cate = new ArticleCateModel();
  412. $flag = $cate->usingCate($list);
  413. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  414. }
  415. /**
  416. * 批量禁用分类
  417. * @return \think\response\Json
  418. */
  419. public function forbiddenCate(){
  420. extract(input());
  421. $list = [];
  422. if($ids){
  423. $ids = explode(',',$ids);
  424. for($i=0;$i<count($ids);$i++){
  425. $param = [
  426. 'id'=>$ids[$i],
  427. 'status'=>2
  428. ];
  429. $list[] = $param;
  430. }
  431. }
  432. $cate = new ArticleCateModel();
  433. $flag = $cate->forbiddenCate($list);
  434. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  435. }
  436. public function printOrder(){
  437. return $this->fetch('article/order');
  438. }
  439. }