GoodsLogic.php 34 KB

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