Books.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Gold
  5. * Date: 2024/1/15
  6. * Time: 14:50
  7. */
  8. namespace app\api\controller;
  9. use app\admin\model\books\Books as BookModel; //教材
  10. use app\admin\model\books\BooksLevel; //教材级别
  11. use app\admin\model\books\BooksArrangement; //教学层次
  12. use app\admin\model\books\BooksSpeciality; //专业类型
  13. use app\admin\model\books\BooksSeries; //教材系列
  14. use app\admin\model\books\Contribute; //投稿
  15. use app\admin\model\books\SampleApply; //样书申请
  16. use app\admin\model\books\Certificate; //体验卡
  17. use app\admin\model\order\UserGoods;
  18. use app\common\controller\Api;
  19. class Books extends Api
  20. {
  21. protected $noNeedLogin = ['getBooksLevel','getBooksArrangement','getBooksSpeciality','getBooksList','getBookInfo','getSeriesBooks'];
  22. //protected $noNeedRight = ['addContribute','addSampleApply'];
  23. /**
  24. * 首页
  25. *
  26. */
  27. public function index()
  28. {
  29. $this->success('请求成功');
  30. }
  31. /**
  32. * 获取教材级别
  33. *
  34. * api/books/getBooksLevel
  35. */
  36. public function getBooksLevel(){
  37. $BooksLevel = new BooksLevel();
  38. $list = $BooksLevel->where('is_deleted',1)->where('status',0)->order('sort desc,id desc')->select();
  39. $this->success('操作成功',$list);
  40. }
  41. /**
  42. * 获取教学层次
  43. *
  44. * api/books/getBooksArrangement
  45. */
  46. public function getBooksArrangement(){
  47. $BooksArrangement = new BooksArrangement();
  48. $list = $BooksArrangement->where('is_deleted',1)->where('status',0)->order('sort desc,id desc')->select();
  49. $this->success('操作成功',$list);
  50. }
  51. /**
  52. * 获取专业类型
  53. *
  54. * api/books/getBooksSpeciality
  55. */
  56. public function getBooksSpeciality(){
  57. $BooksSpeciality = new BooksSpeciality();
  58. $list = $BooksSpeciality->where('is_deleted',1)->where('status',0)->order('sort desc,id desc')->select();
  59. $this->success('操作成功',$list);
  60. }
  61. /**
  62. * 教材列表
  63. *
  64. * api/books/getBooksList
  65. */
  66. public function getBooksList(){
  67. $data = input();
  68. $where = [];
  69. $BookModel = new BookModel();
  70. if(!isset($data['page']) || $data['page'] == '' || $data['page'] == null){
  71. $page = 1;
  72. }else{
  73. $page = $data['page'];
  74. }
  75. if(!isset($data['limit']) || $data['limit'] == '' || $data['limit'] == null){
  76. $limit = 20;
  77. }else{
  78. $limit = $data['limit'];
  79. }
  80. //教材级别
  81. if(isset($data['level_id']) && $data['level_id'] && $data['level_id']!= '' && $data['level_id'] != null){
  82. $where['level_id'] = $data['level_id'];
  83. }
  84. //教学层次
  85. if(isset($data['arrangement_id']) && $data['arrangement_id'] && $data['arrangement_id']!= '' && $data['arrangement_id'] != null){
  86. $where['arrangement_id'] = $data['arrangement_id'];
  87. }
  88. //专业类型
  89. if(isset($data['speciality_id']) && $data['speciality_id'] && $data['speciality_id']!= '' && $data['speciality_id'] != null){
  90. $where['speciality_id'] = $data['speciality_id'];
  91. }
  92. //教材类型 0纸质书 1电子书
  93. if(isset($data['book_type']) && $data['book_type']!= '' && $data['book_type'] != null){
  94. $where['book_type'] = $data['book_type'];
  95. }
  96. //是否新书推荐 0是 1否
  97. if(isset($data['is_new_recommend']) && $data['is_new_recommend']!= '' && $data['is_new_recommend'] != null){
  98. $where['is_new_recommend'] = $data['is_new_recommend'];
  99. }
  100. //是否获奖教材 0是 1否
  101. if(isset($data['is_awards']) && $data['is_awards']!= '' && $data['is_awards'] != null){
  102. $where['is_awards'] = $data['is_awards'];
  103. }
  104. //关键字
  105. if ( isset($data['keywords']) && $data['keywords'] != '' && $data['keywords'] != null){
  106. $where['title'] = ['like','%'.$data['keywords'].'%'];
  107. $where['author'] = ['like','%'.$data['keywords'].'%'];
  108. }
  109. $where['is_deleted'] = 1;
  110. $list = $BookModel->where($where)->order('id desc')->field('id,title,image,book_type,is_new_recommend,author,is_awards,price,entity_price,createtime,updatetime,level_id,arrangement_id,speciality_id,series_id,is_series')->paginate([
  111. 'list_rows'=> $limit,
  112. 'page' => $page,
  113. ]);
  114. $lists = $list->toArray();
  115. foreach ($lists['data'] as $key => &$item){
  116. $lists['data'][$key]['is_free'] = 1;
  117. if($item['price'] <= 0){
  118. $lists['data'][$key]['is_free'] = 0;
  119. }
  120. }
  121. $this->success('操作成功',$lists);
  122. }
  123. /**
  124. * 教材详情
  125. *
  126. * api/books/getBookInfo
  127. */
  128. public function getBookInfo(){
  129. $data = input();
  130. $BookModel = new BookModel();
  131. $BooksLevel = new BooksLevel();
  132. $BooksArrangement = new BooksArrangement();
  133. $BooksSpeciality = new BooksSpeciality();
  134. if(!isset($data['id']) || !$data['id']){
  135. $this->error('参数错误');
  136. }
  137. $id = $data['id'];
  138. $list = $BookModel->where('id',$id)->where('is_deleted',1)->with(['courseware_file','resource_file','package_file','specimen_file','ebook_file','level','arrangement','speciality'])->find();
  139. $list['is_certificate'] = 1;
  140. $list['is_pay'] = 1;
  141. $list['is_free'] = 1;
  142. $list['cer'] = null;
  143. if($list['price'] <= 0){
  144. $list['is_free'] = 0;
  145. }
  146. //判断是否可查看所有课程
  147. if($this->auth->isLogin()){
  148. $Certificate = new Certificate();
  149. $UserGoods = new UserGoods();
  150. $uid = $this->auth->id;
  151. $cer = $Certificate->where('user_id',$uid)
  152. ->where('goods_id',$id)
  153. ->where('status',1)
  154. ->where('is_expire',1)
  155. ->where('free_end_time','>',date("Y-m-d H:i:s"))
  156. ->where('is_deleted',1)->find();
  157. if($cer){
  158. $list['is_certificate'] = 0;
  159. $list['cer'] = $cer;
  160. }
  161. $good = $UserGoods->where('user_id',$uid)->where('goods_type',0)->where('goods_id',$id)->find();
  162. if($good){
  163. $list['is_pay'] = 0;
  164. }
  165. }
  166. $list['banner'] = explode(',',$list['banner']);
  167. if(!$list){
  168. $this->error('教材不存在或已删除');
  169. }
  170. $this->success('操作成功',$list);
  171. }
  172. /**
  173. * 获取系列相关教材
  174. *
  175. * api/books/getSeriesBooks
  176. */
  177. public function getSeriesBooks(){
  178. $data = input();
  179. $BookModel = new BookModel();
  180. if(!isset($data['series_id']) || !$data['series_id']){
  181. $this->error('参数错误');
  182. }
  183. $series_id = $data['series_id'];
  184. $list = $BookModel->where('series_id',$series_id)
  185. ->where('is_deleted',1)
  186. ->where('is_series',0)
  187. ->field('id,title,image,book_type,is_new_recommend,author,is_awards,price,entity_price,createtime,updatetime,level_id,arrangement_id,speciality_id,series_id,is_series')
  188. ->select();
  189. $lists = $list;
  190. $listss = [];
  191. if($this->auth->isLogin()) {
  192. $uid = $this->auth->id;
  193. foreach ($lists as $k => $v) {
  194. $UserGoods = new UserGoods();
  195. $Certificate = new Certificate();
  196. $good = $UserGoods->where('user_id', $uid)->where('goods_type', 0)->where('goods_id', $v['id'])->find();
  197. //体验卡
  198. $cer = $Certificate->where('user_id',$uid)
  199. ->where('goods_id',$v['id'])
  200. ->where('status',1)
  201. ->where('is_expire',1)
  202. ->where('free_end_time','>',date("Y-m-d H:i:s"))
  203. ->where('is_deleted',1)->find();
  204. if($cer){
  205. $list[$k]['is_certificate'] = 0;
  206. $list[$k]['free_end_time'] = $cer['free_end_time'];
  207. }else{
  208. $list[$k]['is_certificate'] = 1;
  209. //免费/付费
  210. $list[$k]['is_free'] = 1;
  211. if($v['price'] <= 0){
  212. $list[$k]['is_free'] = 0;
  213. }
  214. }
  215. if (!$good) {
  216. $listss[] = $v;
  217. // unset($lists[$k]);
  218. }
  219. }
  220. }else{
  221. $listss = $lists;
  222. }
  223. $this->success('操作成功',$listss);
  224. }
  225. /**
  226. * 投稿
  227. *
  228. * api/books/addContribute
  229. */
  230. public function addContribute(){
  231. $data = input();
  232. $uid = $this->auth->id;
  233. $data['user_id'] = $uid;
  234. $Contribute = new Contribute();
  235. $save = $Contribute->save($data);
  236. if($save){
  237. $this->success('操作成功');
  238. }else{
  239. $this->success('操作失败');
  240. }
  241. }
  242. /**
  243. * 样书申请
  244. *
  245. * api/books/addContribute
  246. */
  247. public function addSampleApply(){
  248. $data = input();
  249. $uid = $this->auth->id;
  250. $data['user_id'] = $uid;
  251. $SampleApply = new SampleApply();
  252. $save = $SampleApply->save($data);
  253. if($save){
  254. $this->success('操作成功');
  255. }else{
  256. $this->success('操作失败');
  257. }
  258. }
  259. }