Books.php 9.2 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. }
  108. $where['is_deleted'] = 1;
  109. $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([
  110. 'list_rows'=> $limit,
  111. 'page' => $page,
  112. ]);
  113. $lists = $list->toArray();
  114. foreach ($lists['data'] as $key => &$item){
  115. $lists['data'][$key]['is_free'] = 1;
  116. if($item['price'] <= 0){
  117. $lists['data'][$key]['is_free'] = 0;
  118. }
  119. }
  120. $this->success('操作成功',$lists);
  121. }
  122. /**
  123. * 教材详情
  124. *
  125. * api/books/getBookInfo
  126. */
  127. public function getBookInfo(){
  128. $data = input();
  129. $BookModel = new BookModel();
  130. $BooksLevel = new BooksLevel();
  131. $BooksArrangement = new BooksArrangement();
  132. $BooksSpeciality = new BooksSpeciality();
  133. if(!isset($data['id']) || !$data['id']){
  134. $this->error('参数错误');
  135. }
  136. $id = $data['id'];
  137. $list = $BookModel->where('id',$id)->where('is_deleted',1)->with(['courseware_file','resource_file','package_file','specimen_file','ebook_file','level','arrangement','speciality'])->find();
  138. $list['is_certificate'] = 1;
  139. $list['is_pay'] = 1;
  140. $list['is_free'] = 1;
  141. $list['cer'] = null;
  142. if($list['price'] <= 0){
  143. $list['is_free'] = 0;
  144. }
  145. //判断是否可查看所有课程
  146. if($this->auth->isLogin()){
  147. $Certificate = new Certificate();
  148. $UserGoods = new UserGoods();
  149. $uid = $this->auth->id;
  150. $cer = $Certificate->where('user_id',$uid)
  151. ->where('goods_id',$id)
  152. ->where('status',1)
  153. ->where('is_expire',1)
  154. ->where('free_end_time','>',date("Y-m-d H:i:s"))
  155. ->where('is_deleted',1)->find();
  156. if($cer){
  157. $list['is_certificate'] = 0;
  158. $list['cer'] = $cer;
  159. }
  160. $good = $UserGoods->where('user_id',$uid)->where('goods_type',0)->where('goods_id',$id)->find();
  161. if($good){
  162. $list['is_pay'] = 0;
  163. }
  164. }
  165. $list['banner'] = explode(',',$list['banner']);
  166. if(!$list){
  167. $this->error('教材不存在或已删除');
  168. }
  169. $this->success('操作成功',$list);
  170. }
  171. /**
  172. * 获取系列相关教材
  173. *
  174. * api/books/getSeriesBooks
  175. */
  176. public function getSeriesBooks(){
  177. $data = input();
  178. $BookModel = new BookModel();
  179. if(!isset($data['series_id']) || !$data['series_id']){
  180. $this->error('参数错误');
  181. }
  182. $series_id = $data['series_id'];
  183. $list = $BookModel->where('series_id',$series_id)
  184. ->where('is_deleted',1)
  185. ->where('is_series',0)
  186. ->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')
  187. ->select();
  188. $lists = $list;
  189. $listss = [];
  190. if($this->auth->isLogin()) {
  191. $uid = $this->auth->id;
  192. foreach ($lists as $k => $v) {
  193. $UserGoods = new UserGoods();
  194. $Certificate = new Certificate();
  195. $good = $UserGoods->where('user_id', $uid)->where('goods_type', 0)->where('goods_id', $v['id'])->find();
  196. if (!$good) {
  197. $listss[] = $v;
  198. // unset($lists[$k]);
  199. }
  200. //体验卡
  201. $cer = $Certificate->where('user_id',$uid)
  202. ->where('goods_id',$v['id'])
  203. ->where('status',1)
  204. ->where('is_expire',1)
  205. ->where('free_end_time','>',date("Y-m-d H:i:s"))
  206. ->where('is_deleted',1)->find();
  207. if($cer){
  208. $list['is_certificate'] = 0;
  209. $list['free_end_time'] = $cer['free_end_time'];
  210. }else{
  211. $list['is_certificate'] = 1;
  212. //免费/付费
  213. $lists['data'][$k]['is_free'] = 1;
  214. if($v['price'] <= 0){
  215. $lists['data'][$k]['is_free'] = 0;
  216. }
  217. }
  218. }
  219. }else{
  220. $listss = $lists;
  221. }
  222. $this->success('操作成功',$listss);
  223. }
  224. /**
  225. * 投稿
  226. *
  227. * api/books/addContribute
  228. */
  229. public function addContribute(){
  230. $data = input();
  231. $uid = $this->auth->id;
  232. $data['user_id'] = $uid;
  233. $Contribute = new Contribute();
  234. $save = $Contribute->save($data);
  235. if($save){
  236. $this->success('操作成功');
  237. }else{
  238. $this->success('操作失败');
  239. }
  240. }
  241. /**
  242. * 样书申请
  243. *
  244. * api/books/addContribute
  245. */
  246. public function addSampleApply(){
  247. $data = input();
  248. $uid = $this->auth->id;
  249. $data['user_id'] = $uid;
  250. $SampleApply = new SampleApply();
  251. $save = $SampleApply->save($data);
  252. if($save){
  253. $this->success('操作成功');
  254. }else{
  255. $this->success('操作失败');
  256. }
  257. }
  258. }