Index.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Features;
  5. use app\common\model\Hotsearch;
  6. use app\common\model\Information;
  7. /**
  8. * 首页接口
  9. */
  10. class Index extends Api
  11. {
  12. protected $noNeedLogin = ['*'];
  13. protected $noNeedRight = ['*'];
  14. /**
  15. * 首页资讯
  16. *
  17. */
  18. public function index()
  19. {
  20. $this->success('请求成功',Information::where('status',1)->field('id,title,content,createtime')->limit(10)->select());
  21. }
  22. /**
  23. * 热门搜索
  24. */
  25. public function hotsearch(){
  26. $this->success('请求成功',Hotsearch::where('status',1)->select());
  27. }
  28. /**
  29. * 首页搜索
  30. * @param string $type 搜索类型1营养指向 2活性成分 3原料
  31. * @param string $search 搜索内容
  32. * @param string $page 页数
  33. *
  34. */
  35. public function search(){
  36. $rule = [
  37. 'search|搜索内容'=>'require'
  38. ];
  39. $input = $this->_validate($rule);
  40. //搜索资讯
  41. switch ($input['type']){
  42. case 1:
  43. $where['nutrition'] = ['like','%'.$input['search'].'%'];
  44. break;
  45. case 2:
  46. $where['ingredient'] = ['like','%'.$input['search'].'%'];
  47. break;
  48. case 3:
  49. $where['rawmaterial'] = ['like','%'.$input['search'].'%'];
  50. }
  51. $where['status'] = 1;
  52. if($this->auth->rights){
  53. $searchInformation = Information::where($where)->page($input['page'],10)->selectOrFail();
  54. }else{
  55. $searchInformation = Information::where($where)->limit(5)->selectOrFail();
  56. }
  57. $this->success('请求成功',$searchInformation);
  58. }
  59. /**
  60. * 热门资讯
  61. */
  62. public function hotinformation(){
  63. $this->success('请求成功',Information::where('status',1)->field('id,title,createtime,status')->limit(5)->selectOrFail());
  64. }
  65. /**
  66. * 首页专题
  67. */
  68. public function features(){
  69. $this->success('请求成功',Features::where('status',1)->limit(3)->selectOrFail());
  70. }
  71. /**
  72. * 资讯列表
  73. * @param string $page 页数
  74. */
  75. public function informationall(){
  76. $page = $this->_validate(['page|页数'=>'require']);
  77. $this->success('请求成功',Information::where('status',1)->field('id,title,content,createtime')->page($page,'20')->select());
  78. }
  79. /**
  80. * 资讯详情
  81. * @param string $id 资讯id
  82. */
  83. public function informationdetails(){
  84. $where = [
  85. 'status'=>1,
  86. 'id'=>input('id')
  87. ];
  88. $data = Information::where($where)->findOrFail();
  89. $this->success('请求成功',$data);
  90. }
  91. /**
  92. * 广告位
  93. */
  94. public function advertising(){
  95. $this->success('请求成功',config('site.advertising'));
  96. }
  97. }