Index.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <?php
  2. namespace app\api\controller;
  3. use think\Db;
  4. /**
  5. * @title 首页、详情
  6. * @controller Index
  7. * @package app\api\controller
  8. */
  9. class Index extends Base
  10. {
  11. public function initialize(){
  12. // parent::check_login();
  13. }
  14. /**
  15. * @title 获取轮播图
  16. * @desc 获取轮播图
  17. * @author Gavin
  18. * @url /api/Index/getBanner
  19. * @method POST
  20. * @header name:Authorization require:1 desc:Token
  21. *
  22. */
  23. public function getBanner()
  24. {
  25. $list = Db::table('store_banner')
  26. ->field('id,name,cover')
  27. ->where(['is_deleted'=>0])
  28. ->order('sort desc ,id desc')
  29. ->select();
  30. $this->success('ok',$list);
  31. }
  32. /**
  33. * @title 首页藏品列表
  34. * @desc 首页藏品列表
  35. * @author Gavin
  36. * @url /api/Index/indexCollectionList
  37. * @method POST
  38. * @header name:Authorization require:1 desc:Token
  39. *
  40. * @param name:state type:int require:1 desc:类型标志1开售中;2即将上新
  41. *
  42. * @return name:name type:string default:-- desc:藏品名称
  43. * @return name:cover type:string default:-- desc:藏品图
  44. * @return name:label type:string default:-- desc:标签
  45. * @return name:price type:DECIMAL default:-- desc:价格
  46. * @return name:inventory type:int default:-- desc:库存
  47. * @return name:now_inventory type:int default:-- desc:剩余库存
  48. * @return name:state type:float default:-- desc:藏品状态(1:进行中2:即将开售3:已售罄)
  49. * @return name:sell_time type:string default:-- desc:发行时间
  50. * @return name:is_remind type:string default:-- desc:是否设置提醒true:已设置false:未设置
  51. * @return name:auth_img type:string default:-- desc:作者头像
  52. * @return name:auth_name type:string default:-- desc:作者姓名
  53. * @return name:type type:string default:-- desc:藏品类型1普通藏品3盲盒
  54. */
  55. public function indexCollectionList(){
  56. checkCollectionState();
  57. // $type = input('type',1);
  58. $type = '1,3';
  59. // //开售、即将上新
  60. // $state = input('state',1);
  61. // if($state == 1){
  62. // $state = "1,3";
  63. // }elseif ($state == 2){
  64. // $state = 2;
  65. // }
  66. //// if($type != 1 ){//盲盒除外
  67. //// $state = '1,2,3';
  68. //// }
  69. if ($this->uid=='1' || $this->uid=='3'){
  70. $list = Db::name('store_collection')
  71. ->where('is_deleted',0)
  72. ->whereIn('type',$type)
  73. // ->whereIn('state',$state)
  74. ->field('id,cover,name,label,price,inventory,now_inventory,state,sell_time,auth_name,auth_img,type,first_cid,first_time')
  75. ->order('state asc,sell_time desc')
  76. ->select();
  77. }else{
  78. $list = Db::name('store_collection')
  79. ->where('is_deleted',0)
  80. ->where('status',1)
  81. ->whereIn('type',$type)
  82. // ->whereIn('state',$state)
  83. ->field('id,cover,name,label,price,inventory,now_inventory,state,sell_time,auth_name,auth_img,type,first_cid,first_time')
  84. ->order('state asc,sell_time desc')
  85. ->select();
  86. }
  87. $uid = $this->get_uid();
  88. foreach ($list as &$v){
  89. //获取会员是否持有优先购藏品 && 优先购
  90. if($v['first_time']>0 && $v['state'] == 2 && $uid)
  91. {
  92. $data = [
  93. 'uid' => $uid,
  94. 'first_time' => $v['first_time'],
  95. 'state' => $v['state'],
  96. 'sell_time' => $v['sell_time'],
  97. 'c_id' => $v['id'],
  98. ];
  99. $firstData = getUserBuyCollection($data);
  100. if(!empty($firstData))
  101. {
  102. $v['state'] = $firstData['state'];
  103. $v['sell_time'] = $firstData['sell_time'];
  104. }
  105. }
  106. $now_inventory = getCollectionInventory($v['id']);
  107. $v['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
  108. }
  109. // foreach ($list as &$v){
  110. // $v['is_remind'] = getRemind($this->uid,$v['id']) ? true : false;
  111. //
  112. // }
  113. $this->success('成功',$list);
  114. }
  115. /**
  116. * @title 发售日历
  117. * @desc 发售日历
  118. * @author Gavin
  119. * @url /api/Index/CollectionCalendar
  120. * @method POST
  121. * @header name:Authorization require:1 desc:Token
  122. *
  123. * @return name:name type:string default:-- desc:藏品名称
  124. * @return name:cover type:string default:-- desc:藏品图
  125. * @return name:label type:string default:-- desc:标签
  126. * @return name:price type:DECIMAL default:-- desc:价格
  127. * @return name:inventory type:int default:-- desc:库存
  128. * @return name:now_inventory type:int default:-- desc:剩余库存
  129. * @return name:state type:float default:-- desc:藏品状态(1:进行中2:即将开售3:已售罄)
  130. * @return name:sell_time type:string default:-- desc:发行时间
  131. * @return name:date type:string default:-- desc:日期
  132. * @return name:time type:string default:-- desc:时间
  133. * @return name:is_remind type:string default:-- desc:是否设置提醒true:已设置false:未设置
  134. */
  135. public function CollectionCalendar(){
  136. checkCollectionState();
  137. $datelist = Db::name('store_collection')
  138. ->where('is_deleted',0)
  139. ->where('status',1)
  140. ->where('state',2)
  141. ->whereIn('type','1,3')
  142. ->where('date','>=',date('Y-m-d',time()))
  143. ->group('date')
  144. ->order('date asc')
  145. ->column('date');
  146. if ($datelist){
  147. foreach ($datelist as $k=>&$v){
  148. $array[$k]['date'] = $v;
  149. $list = Db::name('store_collection')
  150. ->where('is_deleted',0)
  151. ->where('status',1)
  152. ->where('state',2)
  153. ->where('date',$v)
  154. ->field('id,cover,name,label,price,inventory,now_inventory,state,sell_time,date')
  155. ->order('state asc,sell_time asc')
  156. ->select();
  157. foreach ($list as &$a){
  158. $a['time'] = date('H:i',strtotime($a['sell_time']));
  159. $a['is_remind'] = getRemind($this->uid,$a['id']) ? true : false;
  160. $now_inventory = getCollectionInventory($a['id']);
  161. $a['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
  162. }
  163. $array[$k]['list'] = $list;
  164. }
  165. }else $array=[];
  166. $this->success('成功',$array);
  167. }
  168. /**
  169. * @title 藏品详情
  170. * @desc 藏品详情
  171. * @author Gavin
  172. * @url /api/Index/CollectionDetail
  173. * @method POST
  174. * @header name:Authorization require:1 desc:Token
  175. *
  176. * @param name:id type:string require:1 default:-- desc:藏品ID
  177. *
  178. * @return name:name type:string default:-- desc:藏品名称
  179. * @return name:cover type:string default:-- desc:藏品图
  180. * @return name:label type:string default:-- desc:标签
  181. * @return name:price type:DECIMAL default:-- desc:价格
  182. * @return name:inventory type:int default:-- desc:库存
  183. * @return name:now_inventory type:int default:-- desc:剩余库存
  184. * @return name:state type:float default:-- desc:藏品状态(1:进行中2:即将开售3:已售罄)
  185. * @return name:sell_time type:string default:-- desc:发行时间
  186. * @return name:describe type:string default:-- desc:商品描述
  187. * @return name:buy_count type:int default:1 desc:限购数量
  188. * @return name:instructions type:int default:1 desc:权益说明
  189. * @return name:buy_notice type:int default:1 desc:购买须知
  190. * @return name:warm_prompt type:int default:1 desc:温馨提示
  191. * @return name:auth_img type:int default:1 desc:作者头像
  192. * @return name:auth_name type:int default:1 desc:作者姓名
  193. * @return name:is_remind type:string default:-- desc:是否设置提醒true:已设置false:未设置
  194. * @return name:share_img type:string default:-- desc:分享二维码
  195. */
  196. public function CollectionDetail(){
  197. $collect_id = input('id');
  198. if (!$collect_id) $this->error('参数错误');
  199. checkCollectionState($collect_id);
  200. if ($this->uid=='1' || $this->uid=='3'){
  201. $info = Db::name('store_collection')
  202. ->where('is_deleted',0)
  203. ->whereIn('type','1,3')
  204. ->where('id',$collect_id)
  205. ->field('id,cover,name,label,price,inventory,now_inventory,state,sell_time,describe,buy_count,instructions,buy_notice,warm_prompt,auth_img,auth_name,share_img,intro,detail_img,format,first_cid,first_time')
  206. ->find();
  207. }else{
  208. $info = Db::name('store_collection')
  209. ->where('is_deleted',0)
  210. ->where('status',1)
  211. ->whereIn('type','1,3')
  212. ->where('id',$collect_id)
  213. ->field('id,cover,name,label,price,inventory,now_inventory,state,sell_time,describe,buy_count,instructions,buy_notice,warm_prompt,auth_img,auth_name,share_img,intro,detail_img,format,first_cid,first_time')
  214. ->find();
  215. }
  216. if (!$info) $this->error('藏品不存在');
  217. $info['describe'] = explode('|',$info['describe']);
  218. //获取会员是否持有优先购藏品 && 优先购
  219. $uid = $this->get_uid();
  220. if($info['first_time']>0 && $info['state'] == 2 && $uid)
  221. {
  222. $data = [
  223. 'uid' => $uid,
  224. 'first_time' => $info['first_time'],
  225. 'state' => $info['state'],
  226. 'sell_time' => $info['sell_time'],
  227. 'c_id' => $info['id'],
  228. ];
  229. $firstData = getUserBuyCollection($data);
  230. if(!empty($firstData))
  231. {
  232. $info['state'] = $firstData['state'];
  233. $info['sell_time'] = $firstData['sell_time'];
  234. }
  235. }
  236. $info['is_remind'] = getRemind($this->uid,$info['id']) ? true : false;
  237. $now_inventory = getCollectionInventory($info['id']);
  238. $info['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
  239. $this->success('成功',$info);
  240. }
  241. /**
  242. * @title 设置提醒
  243. * @desc 设置提醒
  244. * @author Gavin
  245. * @url /api/Index/setRemind
  246. * @method POST
  247. * @header name:Authorization require:1 desc:Token
  248. *
  249. * @param name:id type:string require:1 default:-- desc:藏品ID
  250. */
  251. public function setRemind(){
  252. $id = input('id');
  253. if (!$id) $this->error('参数错误');
  254. $remind = Db::name('store_collection_remind')
  255. ->where('mid',$this->uid)
  256. ->where('c_id',$id)
  257. ->count();
  258. if ($remind) $this->error('已设置过');
  259. $data = [
  260. 'c_id'=>$id,
  261. 'mid'=>$this->uid
  262. ];
  263. if (Db::name('store_collection_remind')->insert($data)) $this->success('设置成功');
  264. $this->error('设置失败');
  265. }
  266. }