GoodsLogic.php 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870
  1. <?php
  2. namespace logicmodel;
  3. use app\common\model\Config;
  4. use comservice\GetRedis;
  5. use comservice\Response;
  6. use datamodel\Author;
  7. use datamodel\Goods;
  8. use datamodel\GoodsCategory;
  9. use datamodel\GoodsConvert;
  10. use datamodel\GoodsHash;
  11. use datamodel\GoodsOrders;
  12. use datamodel\GoodsTransfer;
  13. use datamodel\OrdersGoods;
  14. use datamodel\Users;
  15. use datamodel\UsersGoods;
  16. use logicmodel\award\Recommend;
  17. use think\Db;
  18. use think\Exception;
  19. class GoodsLogic
  20. {
  21. private $usersGoodsData;
  22. private $redis;
  23. public function __construct()
  24. {
  25. $this->usersGoodsData = new UsersGoods();
  26. $this->redis = GetRedis::getRedis();
  27. }
  28. /**
  29. * 搜索
  30. * @param $search
  31. * @return array
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @throws \think\exception\DbException
  35. */
  36. public function search($search){
  37. $goods = (new Goods())->alias('g')
  38. ->join('goods_category gc','gc.id = g.goods_category_id')
  39. ->where(['g.is_show'=>1,'g.is_del'=>0,'g.name'=>['like','%'.$search.'%'],'gc.is_convert'=>0,'gc.is_show'=>1,'gc.is_del'=>0])
  40. ->field(['g.id','g.name','g.image'])
  41. ->order(['g.order asc'])
  42. ->select();
  43. $author = (new Author())->where(['is_show'=>1,'is_del'=>0,'name'=>['like','%'.$search.'%']])->select();
  44. $goods = !empty($goods)?collection($goods):[];
  45. $author = !empty($author)?collection($author):[];
  46. return Response::success('success',['goods'=>$goods,'author'=>$author]);
  47. }
  48. /**
  49. * 作品分类
  50. * @return array
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\ModelNotFoundException
  53. * @throws \think\exception\DbException
  54. */
  55. public function goodsCategoryList(){
  56. $data = (new GoodsCategory())->where(['is_show'=>1,'is_del'=>0,'is_convert'=>0])->order(['order asc'])->select();
  57. if($data){
  58. $data = collection($data)->toArray();
  59. return Response::success('success',$data);
  60. }
  61. return Response::success('success',[]);
  62. }
  63. /**
  64. * 作品分类
  65. * @return array
  66. * @throws \think\db\exception\DataNotFoundException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. * @throws \think\exception\DbException
  69. */
  70. public function goodsCategory(){
  71. $data = (new GoodsCategory())->where(['is_show'=>1,'is_del'=>0,'is_convert'=>0])->order(['order asc'])->limit(3)->select();
  72. if($data){
  73. $data = collection($data)->toArray();
  74. $goodsData = new Goods();
  75. $field = ['g.*','a.name author_name','a.image author_image','n.name network_name'];
  76. $order = ['g.order asc'];
  77. foreach ($data as $key=>&$value){
  78. $goods_category_id = $value['id'];
  79. $goods = $goodsData->alias('g')
  80. ->join('author a','a.id = g.author_id')
  81. ->join('network n','n.id = g.network_id')
  82. ->join('goods_category gc','gc.id = g.goods_category_id')
  83. ->where(['g.is_show'=>1,'g.is_del'=>0,'g.goods_category_id'=>$goods_category_id])
  84. ->order($order)
  85. ->field($field)
  86. ->limit(2)
  87. ->select();
  88. if(!empty($goods)){
  89. $goods = collection($goods)->toArray();
  90. $time = date('Y-m-d H:i:s');
  91. foreach ($goods as $k=>$v){
  92. if( $time >= $v['start_time']){
  93. if($v['surplus'] > 0){
  94. $goods[$k]['status'] = 1; //售卖中
  95. $goods[$k]['status_text'] = '抢购中';
  96. }else{
  97. $goods[$k]['status'] = 2; //已售罄
  98. $goods[$k]['status_text'] = '已售罄';
  99. }
  100. }else{
  101. $diff_time = strtotime($v['start_time']) - strtotime($time); //时间差
  102. if($diff_time >= 86400) {
  103. //未开售
  104. $goods[$k]['status'] = 3; //显示开售时间
  105. $goods[$k]['status_text'] = '敬请期待 '.date('m.d H:i',strtotime($v['start_time'])).' 开售';
  106. }else{
  107. //未开售
  108. $goods[$k]['status'] = 4; //显示倒计时
  109. $goods[$k]['status_text'] = '倒计时';
  110. $goods[$k]['diff_time'] = $diff_time;
  111. }
  112. }
  113. }
  114. $goods = addWebSiteUrl($goods,['image','author_image']);
  115. }else{
  116. $goods =[];
  117. }
  118. $data[$key]['goods'] = $goods;
  119. }
  120. return Response::success('success',$data);
  121. }
  122. return Response::success('success',[]);
  123. }
  124. /**
  125. * 新品商品列表
  126. * @param $goods_id
  127. * @param $author_id
  128. * @param $time_order
  129. * @param $price_order
  130. * @param $is_home
  131. * @param $goods_category_id
  132. * @param $page
  133. * @param $pagesize
  134. * @return array
  135. * @throws Exception
  136. * @throws \think\db\exception\DataNotFoundException
  137. * @throws \think\db\exception\ModelNotFoundException
  138. * @throws \think\exception\DbException
  139. */
  140. public function goodsList($goods_id,$author_id,$time_order,$price_order,$goods_category_id,$page,$pagesize){
  141. $where['g.is_del'] = 0;
  142. $where['g.is_show'] = 1;
  143. $where['gc.is_convert'] = 0;
  144. $where['gc.is_del'] = 0;
  145. $where['gc.is_show'] = 1;
  146. if(!empty($goods_category_id))$where['g.goods_category_id'] = $goods_category_id;
  147. if(!empty($goods_id)) $where['g.id'] = $goods_id;
  148. if(!empty($author_id)) $where['a.id'] = $author_id;
  149. if($time_order > 0){
  150. if($time_order == 1){
  151. $order = ['g.start_time asc','g.order asc'];
  152. }else{
  153. $order = ['g.start_time desc','g.order asc'];
  154. }
  155. }elseif ($price_order > 0){
  156. if($price_order == 1){
  157. $order = ['g.price asc','g.order asc'];
  158. }else{
  159. $order = ['g.price desc','g.order asc'];
  160. }
  161. }else{
  162. $order = ['g.order asc'];
  163. }
  164. $goodsData = new Goods();
  165. $count = $goodsData->alias('g')
  166. ->join('author a','a.id = g.author_id')
  167. ->join('network n','n.id = g.network_id')
  168. ->join('goods_category gc','gc.id = g.goods_category_id')
  169. ->where($where)
  170. ->count();
  171. if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
  172. $data = $goodsData
  173. ->alias('g')
  174. ->join('author a','a.id = g.author_id')
  175. ->join('network n','n.id = g.network_id')
  176. ->join('goods_category gc','gc.id = g.goods_category_id')
  177. ->where($where)
  178. ->order($order)
  179. ->field(['g.*','a.name author_name','a.image author_image','n.name network_name'])
  180. ->page($page,$pagesize)
  181. ->select();
  182. if(!empty($data)){
  183. $data = collection($data)->toArray();
  184. $time = date('Y-m-d H:i:s');
  185. foreach ($data as $k=>$v){
  186. if( $time >= $v['start_time']){
  187. if($v['surplus'] > 0){
  188. $data[$k]['status'] = 1; //售卖中
  189. $data[$k]['status_text'] = '抢购中';
  190. }else{
  191. $data[$k]['status'] = 2; //已售罄
  192. $data[$k]['status_text'] = '已售罄';
  193. }
  194. }else{
  195. $diff_time = strtotime($v['start_time']) - strtotime($time); //时间差
  196. if($diff_time >= 86400) {
  197. //未开售
  198. $data[$k]['status'] = 3; //显示开售时间
  199. $data[$k]['status_text'] = '敬请期待 '.date('m.d H:i',strtotime($v['start_time'])).' 开售';
  200. }else{
  201. //未开售
  202. $data[$k]['status'] = 4; //显示倒计时
  203. $data[$k]['status_text'] = '倒计时';
  204. $data[$k]['diff_time'] = $diff_time;
  205. }
  206. }
  207. }
  208. $data = addWebSiteUrl($data,['image','author_image']);
  209. }
  210. return Response::success('success',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
  211. }
  212. /**
  213. * 积分NFT兑换
  214. * @param $page
  215. * @param $pagesize
  216. * @return array
  217. * @throws Exception
  218. * @throws \think\db\exception\DataNotFoundException
  219. * @throws \think\db\exception\ModelNotFoundException
  220. * @throws \think\exception\DbException
  221. */
  222. public function integralGoodsList($page,$pagesize){
  223. $where['g.is_del'] = 0;
  224. $where['g.is_show'] = 1;
  225. $where['gc.is_convert'] = 1;
  226. $where['gc.is_del'] = 0;
  227. $where['gc.is_show'] = 1;
  228. $order = ['g.order asc'];
  229. $goodsData = new Goods();
  230. $count = $goodsData->alias('g')
  231. ->join('author a','a.id = g.author_id')
  232. ->join('network n','n.id = g.network_id')
  233. ->join('goods_category gc','gc.id = g.goods_category_id')
  234. ->where($where)
  235. ->count();
  236. if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
  237. $data = $goodsData
  238. ->alias('g')
  239. ->join('author a','a.id = g.author_id')
  240. ->join('network n','n.id = g.network_id')
  241. ->join('goods_category gc','gc.id = g.goods_category_id')
  242. ->where($where)
  243. ->order($order)
  244. ->field(['g.*','a.name author_name','a.image author_image','n.name network_name'])
  245. ->page($page,$pagesize)
  246. ->select();
  247. if(!empty($data)){
  248. $data = collection($data)->toArray();
  249. $data = addWebSiteUrl($data,['image','author_image']);
  250. }
  251. return Response::success('success',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
  252. }
  253. /**
  254. * 商品详情
  255. * @param $id
  256. * @return array
  257. * @throws \think\Exception
  258. * @throws \think\db\exception\DataNotFoundException
  259. * @throws \think\db\exception\ModelNotFoundException
  260. * @throws \think\exception\DbException
  261. */
  262. public function goodsDetail($id){
  263. $where['g.is_del'] = 0;
  264. $where['g.is_show'] = 1;
  265. $where['g.id'] = $id;
  266. $field = ['g.*','gc.name goods_category_name','a.name author_name','a.image author_image','n.name network_name','gc.is_convert'];
  267. $field[] = 'c.name as buy_goods_name';//空头所需藏品
  268. $field[] = 'b.num as buy_need_num';//空头所需藏品数量
  269. $goodsData = new Goods();
  270. $data = $goodsData
  271. ->alias('g')
  272. ->join('author a','a.id = g.author_id')
  273. ->join('goods_category gc','gc.id = g.goods_category_id')
  274. ->join('network n','n.id = g.network_id')
  275. ->join('goods_buy b','g.id=b.goods_id','left')
  276. ->join('goods c','c.id=b.source_goods_id','left')
  277. ->where($where)
  278. ->field($field)
  279. ->find();
  280. if($data) {
  281. $data = $data->toArray();
  282. $time = date('Y-m-d H:i:s');
  283. if( $time >= $data['start_time']){
  284. if($data['surplus'] > 0){
  285. $data['status'] = 1; //售卖中
  286. $data['status_text'] = '抢购中';
  287. }else{
  288. $data['status'] = 2; //已售罄
  289. $data['status_text'] = '已售罄';
  290. }
  291. }else{
  292. $diff_time = strtotime($data['start_time']) - strtotime($time); //时间差
  293. if($diff_time >= 86400) {
  294. //未开售
  295. $data['status'] = 3; //显示开售时间
  296. $data['status_text'] = '敬请期待 '.date('m.d H:i',strtotime($data['start_time'])).' 开售';
  297. }else{
  298. //未开售
  299. $data['status'] = 4; //显示倒计时
  300. $data['status_text'] = '倒计时';
  301. $data['diff_time'] = $diff_time;
  302. }
  303. }
  304. $data = addWebSiteUrl($data,['author_image','image','images']);
  305. $data['content'] = content($data['content']);
  306. return Response::success('success',$data);
  307. }
  308. return Response::fail('商品信息错误');
  309. }
  310. /**
  311. * 交易记录
  312. * @param $goods_id
  313. * @param $page
  314. * @param $pagesize
  315. * @return array
  316. * @throws \think\Exception
  317. * @throws \think\db\exception\DataNotFoundException
  318. * @throws \think\db\exception\ModelNotFoundException
  319. * @throws \think\exception\DbException
  320. */
  321. public function ordersRecord($goods_id,$page,$pagesize){
  322. $where['o.goods_id'] = $goods_id;
  323. $where['o.status'] = 1;
  324. $goodsOrdersData= new GoodsOrders();
  325. $count = $goodsOrdersData->alias('o')
  326. ->join('users u','u.id = o.sale_uid')
  327. ->where($where)->count();
  328. if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
  329. $data = $goodsOrdersData->alias('o')
  330. ->join('users u','u.id = o.sale_uid')
  331. ->where($where)->order(['o.id desc'])
  332. ->field(['u.head_image','u.nick_name','o.price','o.create_time'])
  333. ->page($page,$pagesize)
  334. ->select();
  335. return Response::success('暂无数据',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
  336. }
  337. /**商品列表
  338. * @param $goods_id
  339. * @param $page
  340. * @param $pagesize
  341. * @param $users_goods_id
  342. * @return array
  343. * @throws \think\Exception
  344. * @throws \think\db\exception\DataNotFoundException
  345. * @throws \think\db\exception\ModelNotFoundException
  346. * @throws \think\exception\DbException
  347. */
  348. public function tradeRecord($goods_id,$users_goods_id,$page,$pagesize){
  349. $where['ug.goods_id'] = $goods_id;
  350. $where['ug.status'] = ['in',[2]];
  351. if(!empty($users_goods_id)) $where['ug.id'] = ['<>',$users_goods_id];
  352. $usersGoodsData = new UsersGoods();
  353. $count = $usersGoodsData->alias('ug')
  354. ->join('users u','u.id = ug.uid')
  355. ->join('goods g','g.id = ug.goods_id')
  356. ->where($where)
  357. ->count();
  358. if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
  359. $field = ['ug.*','g.name goods_name','u.nick_name','u.head_image','g.stock'];
  360. $data = $usersGoodsData->alias('ug')
  361. ->join('users u','u.id = ug.uid')
  362. ->join('goods g','g.id = ug.goods_id')
  363. ->field($field)
  364. ->where($where)
  365. ->order(['ug.order asc','ug.sales_time asc'])
  366. ->page($page,$pagesize)
  367. ->select();
  368. return Response::success('暂无数据',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
  369. }
  370. /**
  371. * NFT购买
  372. * @param $userInfo
  373. * @param $id
  374. * @param $pay_type
  375. * @return array
  376. * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
  377. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  378. * @throws \GuzzleHttp\Exception\GuzzleException
  379. * @throws \think\Exception
  380. * @throws \think\db\exception\DataNotFoundException
  381. * @throws \think\db\exception\ModelNotFoundException
  382. * @throws \think\exception\DbException
  383. * @throws \think\exception\PDOException
  384. */
  385. public function apply($userInfo,$id,$pay_type){
  386. if($userInfo['is_auth'] == 0) return Response::bindAuth();
  387. if(!Config::getValue('wallet_open')){
  388. return Response::fail('暂未开放支付');
  389. }
  390. if( $this->redis->getItem('goods_order_'.$userInfo['id'])){
  391. return Response::fail('频繁操作');
  392. }
  393. $this->redis->setItem('goods_order_'.$userInfo['id'],1);
  394. $this->redis->settime('goods_order_'.$userInfo['id'],10);
  395. //虚拟用户购买
  396. $goodsData = new Goods();
  397. $goodsInfo = $goodsData->alias('g')
  398. ->join('goods_category gc','gc.id= g.goods_category_id')
  399. ->where(['g.id'=>$id,'g.is_show'=>1,'g.is_del'=>0])
  400. ->field(['g.*','gc.is_convert'])
  401. ->find();
  402. if(empty($goodsInfo)) return Response::fail('作品信息错误');
  403. if($goodsInfo['surplus'] <= 0 ) return Response::fail('已售罄');
  404. $is_convert = $goodsInfo['is_convert'];
  405. if($is_convert == 0){
  406. /*$time = date('Y-m-d H:i:s');
  407. if($time < $goodsInfo['start_time']) {
  408. return Response::fail('未到开售时间');
  409. }*/
  410. $type=$goodsInfo->buyType($userInfo['id']);
  411. if($type===false){
  412. return Response::fail('未到开售时间');
  413. }elseif (is_numeric($type)) {
  414. return $this->newGoods($userInfo, $goodsInfo, $pay_type,$type);
  415. }else{
  416. return Response::fail('您当前无法购买此藏品');
  417. }
  418. }else{
  419. return $this->integralGoods($userInfo['id'],$goodsInfo);
  420. }
  421. }
  422. /**
  423. * 新品下单
  424. * @param $userInfo
  425. * @param $goodsInfo
  426. * @param $pay_type
  427. * @return array
  428. * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
  429. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  430. * @throws \GuzzleHttp\Exception\GuzzleException
  431. * @throws \think\Exception
  432. * @throws \think\db\exception\DataNotFoundException
  433. * @throws \think\db\exception\ModelNotFoundException
  434. * @throws \think\exception\DbException
  435. * @throws \think\exception\PDOException
  436. */
  437. public function newGoods($userInfo,$goodsInfo,$pay_type,$buyType){
  438. $ordersGoodsData = new OrdersGoods();
  439. $pay_type=1;
  440. $uid = $userInfo['id'];
  441. $count = $ordersGoodsData->where(['uid'=>$uid,'status'=>0,'create_time'=>['>=',date('Y-m-d')]])->count();
  442. if($count >= 3) return Response::fail('今日未付款次数太多,限制抢购');
  443. $price = $goodsInfo['price'];
  444. $goods_id = $goodsInfo['id'];
  445. $order_num = uniqueNum();
  446. $time = date('Y-m-d H:i:s');
  447. Db::startTrans();
  448. $hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
  449. if(!$hash){
  450. Db::rollback();
  451. return Response::fail('无可用hash');
  452. }
  453. $needSubMoney=$buyType===0||$buyType===1;
  454. if($pay_type == 1){
  455. //余额抵扣
  456. if($needSubMoney) {
  457. $result = (new AccountLogic())->subAccount($uid, 1, $price, '购买新品', '购买新品' . $goodsInfo['name'] . '账户扣除');
  458. if (!$result) {
  459. Db::rollback();
  460. return Response::fail('账户余额不足');
  461. }
  462. }
  463. //生成购买订单
  464. $order['uid'] = $uid;
  465. $order['goods_id'] = $goods_id;
  466. $order['order_num'] = $order_num;
  467. $order['goods_category_id'] = 1;
  468. $order['number'] = 1;
  469. $order['price'] = $price;
  470. $order['total_price'] = $price;
  471. $order['pay_type'] = $needSubMoney?$pay_type:0;
  472. $order['pay_time'] = $time;
  473. $order['create_time'] = $time;
  474. $order['status'] = 1;
  475. $order['buy_type'] = $buyType;
  476. $order['hash']=$hash['hash'];
  477. $order['trans_hash']=ChainLogic::instance()->buy($hash,Users::get($uid));
  478. $result = $ordersGoodsData->insertGetId($order);
  479. if(!$result){
  480. Db::rollback();
  481. return Response::fail('购买失败');
  482. }
  483. $hash->setOrder($result);
  484. $goods['uid'] = $uid;
  485. $goods['goods_id'] = $goods_id;
  486. $goods['price'] = $price;
  487. $goods['create_time'] = date('Y-m-d H:i:s');
  488. $goods['is_buy_before']=$buyType;
  489. $result = $this->usersGoodsData->saveEntityAndGetId($goods);
  490. if($result >0){
  491. UsersGoods::get($result)->addHash($hash);
  492. Db::commit();
  493. $goodsData = new Goods();
  494. $goodsData->where(['id'=>$goods_id])->setInc('sales');
  495. $goodsData->where(['id'=>$goods_id])->setDec('surplus');
  496. return Response::success('购买成功',['is_pay'=>1]);
  497. }
  498. Db::rollback();
  499. return Response::fail('购买失败');
  500. }elseif($pay_type == 2){
  501. //微信支付
  502. if($userInfo['is_wx_auth'] == 0 || empty($userInfo['wx_open_id'])) return Response::wxAuth();
  503. //生成支付信息
  504. $notify_url = config('site.wx_orders_goods_notify');
  505. $pay = (new WxLogic())->pay($order_num,'购买藏品'.$goodsInfo['name'],$price,$userInfo['wx_open_id'],$notify_url);
  506. if($pay === false) return Response::fail('订单生成失败');
  507. //生成购买订单
  508. $order['uid'] = $uid;
  509. $order['goods_id'] = $goods_id;
  510. $order['order_num'] = $order_num;
  511. $order['goods_category_id'] = 1;
  512. $order['number'] = 1;
  513. $order['price'] = $price;
  514. $order['total_price'] = $price;
  515. $order['pay_type'] = $pay_type;
  516. $order['create_time'] = $time;
  517. $result = (new OrdersGoods())->insertGetId($order);
  518. $hash->setOrder($result);
  519. if($result){
  520. Db::commit();
  521. return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
  522. }
  523. Db::rollback();
  524. return Response::fail('购买失败');
  525. }elseif ($pay_type == 3){
  526. //微信APP支付
  527. $notify_url = config('site.wx_app_orders_goods_notify');
  528. $pay = (new WxLogic())->appPay($order_num,'购买藏品'.$goodsInfo['name'],$price,$notify_url);
  529. if($pay === false) return Response::fail('订单生成失败');
  530. //生成购买订单
  531. $order['uid'] = $uid;
  532. $order['goods_id'] = $goods_id;
  533. $order['order_num'] = $order_num;
  534. $order['goods_category_id'] = 1;
  535. $order['number'] = 1;
  536. $order['price'] = $price;
  537. $order['total_price'] = $price;
  538. $order['pay_type'] = $pay_type;
  539. $order['create_time'] = $time;
  540. $result = (new OrdersGoods())->insertGetId($order);
  541. $hash->setOrder($result);
  542. if($result){
  543. Db::commit();
  544. return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
  545. }
  546. Db::rollback();
  547. return Response::fail('购买失败');
  548. }elseif ($pay_type == 4){
  549. //支付宝APP支付
  550. $notify_url = config('site.ali_app_orders_goods_notify');
  551. $pay = (new AliLogic())->appPay($order_num,'购买藏品'.$goodsInfo['name'],$price,$notify_url);
  552. if($pay === false) return Response::fail('订单生成失败');
  553. //生成购买订单
  554. $order['uid'] = $uid;
  555. $order['goods_id'] = $goods_id;
  556. $order['order_num'] = $order_num;
  557. $order['goods_category_id'] = 1;
  558. $order['number'] = 1;
  559. $order['price'] = $price;
  560. $order['total_price'] = $price;
  561. $order['pay_type'] = $pay_type;
  562. $order['create_time'] = $time;
  563. $result = $ordersGoodsData->insertGetId($order);
  564. $hash->setOrder($result);
  565. if($result){
  566. Db::commit();
  567. return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
  568. }
  569. Db::rollback();
  570. return Response::fail('购买失败');
  571. }elseif ($pay_type == 5){
  572. //支付宝h5支付
  573. $notify_url = config('site.ali_app_orders_goods_notify');
  574. $pay = (new AliLogic())->wapPay($order_num,'购买藏品'.$goodsInfo['name'],$price,$notify_url);
  575. if($pay === false) return Response::fail('订单生成失败');
  576. //生成购买订单
  577. $order['uid'] = $uid;
  578. $order['goods_id'] = $goods_id;
  579. $order['order_num'] = $order_num;
  580. $order['goods_category_id'] = 1;
  581. $order['number'] = 1;
  582. $order['price'] = $price;
  583. $order['total_price'] = $price;
  584. $order['pay_type'] = $pay_type;
  585. $order['create_time'] = $time;
  586. $result = $ordersGoodsData->insertGetId($order);
  587. $hash->setOrder($result);
  588. if($result){
  589. Db::commit();
  590. return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
  591. }
  592. Db::rollback();
  593. return Response::fail('购买失败');
  594. }else{
  595. return Response::fail('支付方式错误');
  596. }
  597. }
  598. /**
  599. * 积分兑换
  600. * @param $uid
  601. * @param $goodsInfo
  602. * @return array
  603. * @throws \think\Exception
  604. * @throws \think\db\exception\DataNotFoundException
  605. * @throws \think\db\exception\ModelNotFoundException
  606. * @throws \think\exception\DbException
  607. * @throws \think\exception\PDOException
  608. */
  609. public function integralGoods($uid,$goodsInfo){
  610. $price = $goodsInfo['price'];
  611. $goods_id = $goodsInfo['id'];
  612. $order_num = uniqueNum();
  613. $time = date('Y-m-d H:i:s');
  614. $goodsConvertData = new GoodsConvert();
  615. $count = $goodsConvertData->where(['uid'=>$uid])->count();
  616. if($count >= 3) return Response::fail('超出兑换次数');
  617. Db::startTrans();
  618. $result = (new AccountLogic())->subAccount($uid,2,$price,'NFT兑换','兑换NFT'.$goodsInfo['name'].'账户扣除');
  619. if(!$result){
  620. Db::rollback();
  621. return Response::fail('积分不足');
  622. }
  623. $hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
  624. if(!$hash){
  625. Db::rollback();
  626. return Response::fail('无可用hash');
  627. }
  628. //生成购买订单
  629. $order['uid'] = $uid;
  630. $order['goods_id'] = $goods_id;
  631. $order['order_num'] = $order_num;
  632. $order['goods_category_id'] = 3;
  633. $order['number'] = 1;
  634. $order['price'] = $price;
  635. $order['total_price'] = $price;
  636. $order['pay_type'] = 5;
  637. $order['pay_time'] = $time;
  638. $order['create_time'] = $time;
  639. $order['status'] = 1;
  640. $result = (new OrdersGoods())->insertGetId($order);
  641. if(!$result){
  642. Db::rollback();
  643. return Response::fail('兑换失败');
  644. }
  645. $hash->setOrder($result);
  646. try {
  647. $orderGoods=OrdersGoods::get($result);
  648. $orderGoods->addHash($hash);
  649. }catch (\Exception $e){
  650. Db::rollback();
  651. return Response::fail('购买失败1');
  652. }
  653. $goods['uid'] = $uid;
  654. $goods['goods_id'] = $goods_id;
  655. $goods['price'] = $price;
  656. $goods['create_time'] = date('Y-m-d H:i:s');
  657. $result = $this->usersGoodsData->saveEntityAndGetId($goods);
  658. if($result >0){
  659. Db::commit();
  660. $goodsConvertData->insertGetId(['uid'=>$uid,'goods_id'=>$goods_id,'create_time'=>date('Y-m-d H:i:s')]);
  661. $goodsData = new Goods();
  662. $goodsData->where(['id'=>$goods_id])->setInc('sales');
  663. $goodsData->where(['id'=>$goods_id])->setDec('surplus');
  664. return Response::success('兑换成功',['is_pay'=>1]);
  665. }
  666. Db::rollback();
  667. return Response::fail('兑换失败');
  668. }
  669. /**
  670. * 会员NFT作品列表
  671. * @param $uid
  672. * @param $status
  673. * @return array
  674. * @throws \think\db\exception\DataNotFoundException
  675. * @throws \think\db\exception\ModelNotFoundException
  676. * @throws \think\exception\DbException
  677. */
  678. public function usersGoodsList($uid,$status){
  679. $where['ug.is_del'] = 0;
  680. $where['ug.uid'] = $uid;
  681. if($status > 1){
  682. $where['ug.status'] = ['in',[2,3,4]];
  683. } else{
  684. $where['ug.status'] = ['in',[1,5]];
  685. }
  686. $field = ['ug.id','ug.price','ug.is_show','ug.status','g.name','g.image','g.desc','a.name author_name','a.image author_image','n.name network_name'];
  687. $field[]='count(ug.id) as goods_num';
  688. $data = $this->usersGoodsData->alias('ug')
  689. ->join('goods g','g.id = ug.goods_id')
  690. ->join('author a','a.id = g.author_id')
  691. ->join('goods_category gc','gc.id = g.goods_category_id')
  692. ->join('network n','n.id = g.network_id')
  693. ->where($where)
  694. ->group('goods_id')
  695. ->field($field)
  696. ->order(['ug.id desc'])
  697. ->select();
  698. if(!empty($data)) {
  699. $data = collection($data)->toArray();
  700. $data = addWebSiteUrl($data,['image','author_image']);
  701. return Response::success('success',$data);
  702. }
  703. return Response::success('暂无数据',[]);
  704. }
  705. /**
  706. * 会员作品详情
  707. * @param $uid
  708. * @param $id
  709. * @return array
  710. * @throws Exception
  711. * @throws \think\db\exception\DataNotFoundException
  712. * @throws \think\db\exception\ModelNotFoundException
  713. * @throws \think\exception\DbException
  714. */
  715. public function usersGoodsDetail($uid,$id){
  716. $where['ug.id'] = $id;
  717. $where['ug.uid'] = $uid;
  718. $field = ['g.*','ug.price','ug.is_show','ug.status','ug.id','g.id goods_id','a.name author_name','a.image author_image','n.name network_name'];
  719. $data = $this->usersGoodsData->alias('ug')
  720. ->join('goods g','g.id = ug.goods_id')
  721. ->join('author a','a.id = g.author_id')
  722. ->join('goods_category gc','gc.id = g.goods_category_id')
  723. ->join('network n','n.id = g.network_id')
  724. ->where($where)
  725. ->field($field)
  726. ->find();
  727. if($data){
  728. $data = $data->toArray();
  729. $data = addWebSiteUrl($data,['image','author_image']);
  730. return Response::success('success',$data);
  731. }
  732. return Response::fail('盲盒信息错误');
  733. }
  734. /**
  735. * 出售藏品
  736. * @param $uid
  737. * @param $id
  738. * @return array
  739. * @throws \think\db\exception\DataNotFoundException
  740. * @throws \think\db\exception\ModelNotFoundException
  741. * @throws \think\exception\DbException
  742. */
  743. public function sale($uid,$id,$price){
  744. if($price < 0.01) return Response::fail('价格输入错误');
  745. $is_trade = Config::getValue('is_trade',0);
  746. if($is_trade == 0) return Response::fail('市场未开启');
  747. $info = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id,'status'=>1])->find();
  748. if(empty($info)) return Response::fail('盲盒信息错误');
  749. Users::get($uid)->checkPayPwd();
  750. $result = $this->usersGoodsData->where(['id'=>$id])->update(['status'=>2,'price'=>$price,'sales_time'=>date('Y-m-d H:i:s')]);
  751. if($result) return Response::success('出售成功');
  752. return Response::fail('出售失败');
  753. }
  754. /**
  755. * 转赠
  756. * @param $uid
  757. * @param $id
  758. * @param $phone
  759. * @return array
  760. * @throws \think\db\exception\DataNotFoundException
  761. * @throws \think\db\exception\ModelNotFoundException
  762. * @throws \think\exception\DbException
  763. */
  764. public function transfer($uid,$id,$phone){
  765. $allowTransfer=Config::getValue('system_allow_transfer',0);
  766. if(!$allowTransfer){
  767. return Response::fail('系统优化中,暂时无法转赠');
  768. }
  769. $targetInfo = (new Users())->where(['is_del'=>0,'phone'=>$phone])->find();
  770. if(empty($targetInfo)) return Response::fail('转赠信息错误');
  771. Users::get($uid)->checkPayPwd();
  772. $info = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id,'status'=>['in',[1,2]]])->find();
  773. if(empty($info)) return Response::fail('作品信息错误');
  774. if(!$info['is_cool']){
  775. api_error('冷却中...');
  776. }
  777. if($targetInfo['id']==$uid){
  778. return Response::fail('不能转赠给自己');
  779. }
  780. //生成转增记录
  781. $time = date('Y-m-d H:i:s');
  782. $transfer['users_goods_id'] = $id;
  783. $transfer['uid'] = $uid;
  784. $transfer['target_uid'] = $targetInfo['id'];
  785. $transfer['goods_id'] = $info['goods_id'];
  786. $transfer['price'] = $info['price'];
  787. $transfer['create_time'] = $time;
  788. Db::startTrans();
  789. $result = (new GoodsTransfer())->insertGetId($transfer);
  790. if(!$result){
  791. Db::rollback();
  792. return Response::fail('转赠失败');
  793. }
  794. $result = $this->usersGoodsData->where(['id'=>$id])->update(['status'=>5,'is_del'=>1]);
  795. if(!$result){
  796. Db::rollback();
  797. return Response::fail('转赠失败');
  798. }
  799. //生成新纪录
  800. $goods['uid'] = $targetInfo['id'];
  801. $goods['goods_id'] = $info['goods_id'];
  802. $goods['price'] = $info['price'];
  803. $goods['goods_num'] = $info['goods_num'];
  804. $goods['create_time'] = $time;
  805. $result = $this->usersGoodsData->insertGetId($goods);
  806. if($result){
  807. Db::commit();
  808. return Response::success('转赠成功');
  809. }
  810. Db::rollback();
  811. return Response::fail('转赠失败');
  812. }
  813. /**
  814. * 修改藏品价格
  815. * @param $uid
  816. * @param $id
  817. * @param $price
  818. * @return array
  819. */
  820. public function updatePrice($uid,$id,$price){
  821. if($price < 0.01) return Response::fail('价格输入错误');
  822. $result = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id,'status'=>['in',[1,2]]])->update(['price'=>$price]);
  823. if($result) return Response::success('修改成功');
  824. return Response::fail('修改失败');
  825. }
  826. /**
  827. * 切换商品状态
  828. * @param $uid
  829. * @param $id
  830. * @param $is_show
  831. * @return array
  832. */
  833. public function updateShow($uid,$id,$is_show){
  834. $result = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id])->update(['is_show'=>$is_show]);
  835. if($result) return Response::success($is_show == 1?'上架成功':'下架成功');
  836. return Response::fail($is_show == 1?'上架失败':'下架失败');
  837. }
  838. }