Attire.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. /**
  6. * 装扮商城接口
  7. */
  8. class Attire extends Api
  9. {
  10. protected $noNeedLogin = ['getAttireList'];
  11. protected $noNeedRight = '*';
  12. public function _initialize()
  13. {
  14. parent::_initialize();
  15. $this->attireModel = new \app\common\model\Attire();
  16. $this->attirebackModel = new \app\common\model\AttireBack();
  17. }
  18. /**
  19. * 获取装扮列表
  20. */
  21. public function getAttireList() {
  22. $type = $this->request->request("type"); // 装扮类型:1=座驾,2=头饰,3=聊天气泡,4=消息尾灯
  23. $page = $this->request->request('page',1); // 分页
  24. $pageNum = $this->request->request('pageNum',10); // 分页
  25. // 分页搜索构建
  26. $pageStart = ($page-1)*$pageNum;
  27. // 获取基本信息
  28. $where = [];
  29. $where["type"] = $type;
  30. $attireList = $this->attireModel->where($where)->limit($pageStart,$pageNum)->select();
  31. if($attireList) {
  32. foreach($attireList as $k => $v) {
  33. }
  34. }
  35. $this->success("获取成功!",$attireList);
  36. }
  37. /**
  38. * 购买并加入我的背包
  39. */
  40. public function attireAddToMyBack() {
  41. $attire_id = $this->request->request("attire_id"); //装扮ID
  42. if (!$attire_id) {
  43. $this->error(__('Invalid parameters'));
  44. }
  45. // 判断用户钻石余额是否充足
  46. $userModel = new \app\common\model\User();
  47. $userInfo = $userModel->where(["id"=>$this->auth->id])->find();
  48. if(!$userInfo) {
  49. $this->error("用户信息获取失败!");
  50. }
  51. // 获取购买装扮需要的价格
  52. $attireInfo = $this->attireModel->where(["id"=>$attire_id])->find();
  53. if(!$attireInfo) {
  54. $this->error("装扮信息获取失败!");
  55. }
  56. if($userInfo["jewel"] < $attireInfo["price"]) {
  57. $this->error("您的余额不足,请先充值!");
  58. }
  59. // 进行购买逻辑
  60. Db::startTrans();
  61. try{
  62. $userjewellogModel = new \app\common\model\UserJewelLog();
  63. // 扣除用户钻石余额
  64. $where = [];
  65. $where["id"] = $this->auth->id;
  66. $res1 = $userModel->where($where)->setDec("jewel",$attireInfo["price"]);
  67. // 添加当前用户钻石流水记录
  68. $res2 = $userjewellogModel->addUserJewelLog($this->auth->id, $attireInfo["price"], "-", $userInfo["jewel"], "购买装扮扣除" . $attireInfo["price"] . "钻石!", 6);
  69. // 添加装扮购买记录
  70. $data = [];
  71. $data["user_id"] = $this->auth->id;
  72. $data["attire_id"] = $attire_id;
  73. $data["price"] = $attireInfo["price"];
  74. $data["attire_name"] = $attireInfo["title"];
  75. $data["createtime"] = time();
  76. $attirebylogModel = new \app\common\model\AttireBuyLog();
  77. $res3 = $attirebylogModel->insertGetId($data);
  78. // 加入我的背包
  79. // $where = [];
  80. // $where["user_id"] = $this->auth->id;
  81. // $where["attire_id"] = $attire_id;
  82. // $attirebackInfo = $this->attirebackModel->where($where)->find();
  83. $data = [];
  84. $data["user_id"] = $this->auth->id;
  85. $data["attire_id"] = $attire_id;
  86. $data["attire_name"] = $attireInfo["title"];
  87. $data["price"] = $attireInfo["price"];
  88. $data["file_image"] = $attireInfo["file_image"];
  89. $data["gif_image"] = $attireInfo["gif_image"];
  90. $data["limit_day"] = $attireInfo["limit_day"];
  91. $data["type"] = $attireInfo["type"];
  92. $data["createtime"] = time();
  93. // if($attirebackInfo) { // 背包中已有商品
  94. // if($attirebackInfo["is_use"] == 1) { // 商品正在使用中
  95. // if($attirebackInfo["duetime"] >= time()) { // 使用中未到期
  96. // $duetime = $attireInfo["limit_day"]*86400;
  97. // $res4 = $this->attirebackModel->setInc("duetime",$duetime);
  98. // } else { // 使用中已到期
  99. // $res4 = $this->attirebackModel->insert($data);
  100. // }
  101. // } else { // 商品未使用
  102. // $res4 = $this->attirebackModel->insert($data);
  103. // }
  104. // } else { // 背包中没有此商品
  105. // $res4 = $this->attirebackModel->insert($data);
  106. // }
  107. $res4 = $this->attirebackModel->insert($data);
  108. if($res1 && $res2 && $res3 && $res4) {
  109. Db::commit();
  110. $this->success("购买成功!");
  111. } else {
  112. $this->error("购买失败,请稍后重试!");
  113. }
  114. }catch (ValidateException $e) {
  115. Db::rollback();
  116. $this->error($e->getMessage());
  117. } catch (PDOException $e) {
  118. Db::rollback();
  119. $this->error($e->getMessage());
  120. } catch (Exception $e) {
  121. Db::rollback();
  122. $this->error($e->getMessage());
  123. }
  124. }
  125. /**
  126. * 获取我的背包装饰列表
  127. */
  128. public function getBackAttireList() {
  129. $page = $this->request->request('page',1); // 分页
  130. $pageNum = $this->request->request('pageNum',10); // 分页
  131. $type = $this->request->request("type"); // 装扮类型:1=座驾,2=头饰,3=聊天气泡,4=消息尾灯
  132. // 分页搜索构建
  133. $pageStart = ($page-1)*$pageNum;
  134. global $where;
  135. $where = [];$whereOr=[];
  136. $where["user_id"] = $this->auth->id;
  137. $type && $where["type"] = $type;
  138. $whereOr["is_use"] = "0";
  139. $whereOr["duetime"] = ["gt",time()];
  140. $list = $this->attirebackModel
  141. ->field("id,type,file_image,gif_image,attire_name as title,limit_day,duetime,is_use,is_using")
  142. ->where(function ($query) {
  143. global $where;
  144. $query->where($where);
  145. })
  146. ->where(function ($query) {
  147. $query->whereOr(["is_use"=>0,"duetime"=>["gt",time()]]);
  148. })
  149. ->limit($pageStart,$pageNum)
  150. ->select();
  151. if(!$list) {
  152. $this->success("背包空空如也!");
  153. }
  154. foreach($list as $k => $v) {
  155. // 有效期/剩余天数
  156. if($v["is_use"] == 1 && $v["duetime"]>time()) { // 正在使用,未过期
  157. $dtime = "剩余".ceil(($v["duetime"]-time())/86400)."天";
  158. }
  159. if($v["is_use"] == 0) {
  160. $dtime = "有效期".$v["limit_day"]."天";
  161. }
  162. $list[$k]["dtime"] = $dtime;
  163. }
  164. $this->success("获取成功!",$list);
  165. }
  166. /**
  167. * 使用并装上装饰
  168. */
  169. public function toUseAttire() {
  170. $id = $this->request->request("id"); //背包中商品ID
  171. if (!$id) {
  172. $this->error(__('Invalid parameters'));
  173. }
  174. // 获取装饰信息
  175. $where = [];
  176. $where["id"] = $id;
  177. $attirebackInfo = $this->attirebackModel->where($where)->find();
  178. $data = [];
  179. $data["is_use"] = 1;
  180. $data["is_using"] = 1;
  181. $data["duetime"] = time()+$attirebackInfo["limit_day"]*86400;
  182. $res = $this->attirebackModel->update($data,$where);
  183. if($res) {
  184. $this->success("设置成功!");
  185. } else {
  186. $this->success("网络错误,请稍后重试!");
  187. }
  188. }
  189. /**
  190. * 装上
  191. */
  192. public function toUsingAttire() {
  193. $id = $this->request->request("id"); //背包中商品ID
  194. $use_type = $this->request->request("use_type",1); //使用方式:1=装上,2=卸下
  195. if (!$id || !in_array($use_type,[1,2])) {
  196. $this->error(__('Invalid parameters'));
  197. }
  198. // 获取装饰信息
  199. $where = [];
  200. $where["id"] = $id;
  201. $attirebackInfo = $this->attirebackModel->where($where)->find();
  202. if($use_type == 2) {
  203. $attirebackInfo->is_using = 0;
  204. $attirebackInfo->save();
  205. $this->success("设置成功!");
  206. }
  207. if($attirebackInfo["is_use"] != 1) {
  208. $data = [];
  209. $data["is_use"] = 1;
  210. $data["is_using"] = 1;
  211. $data["duetime"] = time()+$attirebackInfo["limit_day"]*86400;
  212. $res = $this->attirebackModel->update($data,$where);
  213. if(!$res) $this->error("使用失败!");
  214. }
  215. Db::startTrans();
  216. try{
  217. // 先取消掉所有的
  218. $res1 = $this->attirebackModel->update(["is_using"=>0],["user_id"=>$this->auth->id,"type"=>$attirebackInfo["type"]]);
  219. // 再设置当前
  220. $res2 = $this->attirebackModel->update(["is_using"=>1],["id"=>$id]);
  221. if($res1 && $res2) {
  222. Db::commit();
  223. $this->success("设置成功!");
  224. } else {
  225. $this->success("网络错误,请稍后重试!");
  226. }
  227. }catch (ValidateException $e) {
  228. Db::rollback();
  229. $this->error($e->getMessage());
  230. } catch (PDOException $e) {
  231. Db::rollback();
  232. $this->error($e->getMessage());
  233. } catch (Exception $e) {
  234. Db::rollback();
  235. $this->error($e->getMessage());
  236. }
  237. }
  238. }