123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857 |
- <?php
- namespace logicmodel;
- use app\common\model\Config;
- use comservice\GetRedis;
- use comservice\Response;
- use datamodel\Author;
- use datamodel\Goods;
- use datamodel\GoodsCategory;
- use datamodel\GoodsConvert;
- use datamodel\GoodsHash;
- use datamodel\GoodsOrders;
- use datamodel\GoodsTransfer;
- use datamodel\OrdersGoods;
- use datamodel\Users;
- use datamodel\UsersGoods;
- use logicmodel\award\Recommend;
- use think\Db;
- use think\Exception;
- class GoodsLogic
- {
- private $usersGoodsData;
- private $redis;
- public function __construct()
- {
- $this->usersGoodsData = new UsersGoods();
- $this->redis = GetRedis::getRedis();
- }
- /**
- * 搜索
- * @param $search
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function search($search){
- $goods = (new Goods())->alias('g')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->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])
- ->field(['g.id','g.name','g.image'])
- ->order(['g.order asc'])
- ->select();
- $author = (new Author())->where(['is_show'=>1,'is_del'=>0,'name'=>['like','%'.$search.'%']])->select();
- $goods = !empty($goods)?collection($goods):[];
- $author = !empty($author)?collection($author):[];
- return Response::success('success',['goods'=>$goods,'author'=>$author]);
- }
- /**
- * 作品分类
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function goodsCategoryList(){
- $data = (new GoodsCategory())->where(['is_show'=>1,'is_del'=>0,'is_convert'=>0])->order(['order asc'])->select();
- if($data){
- $data = collection($data)->toArray();
- return Response::success('success',$data);
- }
- return Response::success('success',[]);
- }
- /**
- * 作品分类
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function goodsCategory(){
- $data = (new GoodsCategory())->where(['is_show'=>1,'is_del'=>0,'is_convert'=>0])->order(['order asc'])->limit(3)->select();
- if($data){
- $data = collection($data)->toArray();
- $goodsData = new Goods();
- $field = ['g.id','g.name','g.image','g.price','g.stock','g.surplus','g.start_time','a.name author_name','a.image author_image'];
- $order = ['g.order asc'];
- foreach ($data as $key=>&$value){
- $goods_category_id = $value['id'];
- $goods = $goodsData->alias('g')
- ->join('author a','a.id = g.author_id')
- ->where(['g.is_show'=>1,'g.is_del'=>0,'g.goods_category_id'=>$goods_category_id])
- ->order($order)
- ->field($field)
- ->limit(2)
- ->select();
- if(!empty($goods)){
- $goods = collection($goods)->toArray();
- $time = date('Y-m-d H:i:s');
- foreach ($goods as $k=>$v){
- if( $time >= $v['start_time']){
- if($v['surplus'] > 0){
- $goods[$k]['status'] = 1; //售卖中
- $goods[$k]['status_text'] = '抢购中';
- }else{
- $goods[$k]['status'] = 2; //已售罄
- $goods[$k]['status_text'] = '已售罄';
- }
- }else{
- $diff_time = strtotime($v['start_time']) - strtotime($time); //时间差
- if($diff_time >= 86400) {
- //未开售
- $goods[$k]['status'] = 3; //显示开售时间
- $goods[$k]['status_text'] = '敬请期待 '.date('m.d H:i',strtotime($v['start_time'])).' 开售';
- }else{
- //未开售
- $goods[$k]['status'] = 4; //显示倒计时
- $goods[$k]['status_text'] = '倒计时';
- $goods[$k]['diff_time'] = $diff_time;
- }
- }
- }
- $goods = addWebSiteUrl($goods,['image','author_image']);
- }else{
- $goods =[];
- }
- $data[$key]['goods'] = $goods;
- }
- return Response::success('success',$data);
- }
- return Response::success('success',[]);
- }
- /**
- * 新品商品列表
- * @param $goods_id
- * @param $author_id
- * @param $time_order
- * @param $price_order
- * @param $is_home
- * @param $goods_category_id
- * @param $page
- * @param $pagesize
- * @return array
- * @throws Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function goodsList($goods_id,$author_id,$time_order,$price_order,$goods_category_id,$page,$pagesize){
- $where['g.is_del'] = 0;
- $where['g.is_show'] = 1;
- $where['gc.is_convert'] = 0;
- $where['gc.is_del'] = 0;
- $where['gc.is_show'] = 1;
- if(!empty($goods_category_id))$where['g.goods_category_id'] = $goods_category_id;
- if(!empty($goods_id)) $where['g.id'] = $goods_id;
- if(!empty($author_id)) $where['a.id'] = $author_id;
- if($time_order > 0){
- if($time_order == 1){
- $order = ['g.start_time asc','g.order asc'];
- }else{
- $order = ['g.start_time desc','g.order asc'];
- }
- }elseif ($price_order > 0){
- if($price_order == 1){
- $order = ['g.price asc','g.order asc'];
- }else{
- $order = ['g.price desc','g.order asc'];
- }
- }else{
- $order = ['g.order asc'];
- }
- $goodsData = new Goods();
- $count = $goodsData->alias('g')
- ->join('author a','a.id = g.author_id')
- ->join('network n','n.id = g.network_id')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->where($where)
- ->count();
- if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
- $data = $goodsData
- ->alias('g')
- ->join('author a','a.id = g.author_id')
- ->join('network n','n.id = g.network_id')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->where($where)
- ->order($order)
- ->field(['g.*','a.name author_name','a.image author_image','n.name network_name'])
- ->page($page,$pagesize)
- ->select();
- if(!empty($data)){
- $data = collection($data)->toArray();
- $time = date('Y-m-d H:i:s');
- foreach ($data as $k=>$v){
- if( $time >= $v['start_time']){
- if($v['surplus'] > 0){
- $data[$k]['status'] = 1; //售卖中
- $data[$k]['status_text'] = '抢购中';
- }else{
- $data[$k]['status'] = 2; //已售罄
- $data[$k]['status_text'] = '已售罄';
- }
- }else{
- $diff_time = strtotime($v['start_time']) - strtotime($time); //时间差
- if($diff_time >= 86400) {
- //未开售
- $data[$k]['status'] = 3; //显示开售时间
- $data[$k]['status_text'] = '敬请期待 '.date('m.d H:i',strtotime($v['start_time'])).' 开售';
- }else{
- //未开售
- $data[$k]['status'] = 4; //显示倒计时
- $data[$k]['status_text'] = '倒计时';
- $data[$k]['diff_time'] = $diff_time;
- }
- }
- }
- $data = addWebSiteUrl($data,['image','author_image']);
- }
- return Response::success('success',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
- }
- /**
- * 积分NFT兑换
- * @param $page
- * @param $pagesize
- * @return array
- * @throws Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function integralGoodsList($page,$pagesize){
- return Response::success('暂无数据',['count'=>0,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
- $where['g.is_del'] = 0;
- $where['g.is_show'] = 1;
- $where['gc.is_convert'] = 1;
- $where['gc.is_del'] = 0;
- $where['gc.is_show'] = 1;
- $order = ['g.order asc'];
- $goodsData = new Goods();
- $count = $goodsData->alias('g')
- ->join('author a','a.id = g.author_id')
- ->join('network n','n.id = g.network_id')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->where($where)
- ->count();
- if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
- $data = $goodsData
- ->alias('g')
- ->join('author a','a.id = g.author_id')
- ->join('network n','n.id = g.network_id')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->where($where)
- ->order($order)
- ->field(['g.*','a.name author_name','a.image author_image','n.name network_name'])
- ->page($page,$pagesize)
- ->select();
- if(!empty($data)){
- $data = collection($data)->toArray();
- $data = addWebSiteUrl($data,['image','author_image']);
- }
- return Response::success('success',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
- }
- /**
- * 商品详情
- * @param $id
- * @return array
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function goodsDetail($id){
- $where['g.is_del'] = 0;
- $where['g.is_show'] = 1;
- $where['g.id'] = $id;
- $field = ['g.*','gc.name goods_category_name','a.name author_name','a.image author_image','n.name network_name','gc.is_convert'];
- $field[] = 'c.name as buy_goods_name';//空头所需藏品
- $field[] = 'b.num as buy_need_num';//空头所需藏品数量
- $goodsData = new Goods();
- $data = $goodsData
- ->alias('g')
- ->join('author a','a.id = g.author_id')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->join('network n','n.id = g.network_id')
- ->join('goods_buy b','g.id=b.goods_id','left')
- ->join('goods c','c.id=b.source_goods_id','left')
- ->where($where)
- ->field($field)
- ->find();
- if($data) {
- $data = $data->toArray();
- $time = date('Y-m-d H:i:s');
- if( $time >= $data['start_time']){
- if($data['surplus'] > 0){
- $data['status'] = 1; //售卖中
- $data['status_text'] = '抢购中';
- }else{
- $data['status'] = 2; //已售罄
- $data['status_text'] = '已售罄';
- }
- }else{
- $diff_time = strtotime($data['start_time']) - strtotime($time); //时间差
- if($diff_time >= 86400) {
- //未开售
- $data['status'] = 3; //显示开售时间
- $data['status_text'] = '敬请期待 '.date('m.d H:i',strtotime($data['start_time'])).' 开售';
- }else{
- //未开售
- $data['status'] = 4; //显示倒计时
- $data['status_text'] = '倒计时';
- $data['diff_time'] = $diff_time;
- }
- }
- $data = addWebSiteUrl($data,['author_image','image','images']);
- $data['content'] = content($data['content']);
- return Response::success('success',$data);
- }
- return Response::fail('商品信息错误');
- }
- /**
- * 交易记录
- * @param $goods_id
- * @param $page
- * @param $pagesize
- * @return array
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function ordersRecord($goods_id,$page,$pagesize){
- $where['o.goods_id'] = $goods_id;
- $where['o.status'] = 1;
- $goodsOrdersData= new GoodsOrders();
- $count = $goodsOrdersData->alias('o')
- ->join('users u','u.id = o.sale_uid')
- ->where($where)->count();
- if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
- $data = $goodsOrdersData->alias('o')
- ->join('users u','u.id = o.sale_uid')
- ->where($where)->order(['o.id desc'])
- ->field(['u.head_image','u.nick_name','o.price','o.create_time'])
- ->page($page,$pagesize)
- ->select();
- return Response::success('暂无数据',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
- }
- /**商品列表
- * @param $goods_id
- * @param $page
- * @param $pagesize
- * @param $users_goods_id
- * @return array
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function tradeRecord($goods_id,$users_goods_id,$page,$pagesize){
- $where['ug.goods_id'] = $goods_id;
- $where['ug.status'] = ['in',[2]];
- if(!empty($users_goods_id)) $where['ug.id'] = ['<>',$users_goods_id];
- $usersGoodsData = new UsersGoods();
- $count = $usersGoodsData->alias('ug')
- ->join('users u','u.id = ug.uid')
- ->join('goods g','g.id = ug.goods_id')
- ->where($where)
- ->count();
- if($count <= 0) return Response::success('暂无数据',['count'=>$count,'data'=>[],'page'=>$page,'pagesize'=>$pagesize]);
- $field = ['ug.*','g.name goods_name','u.nick_name','u.head_image','g.stock'];
- $data = $usersGoodsData->alias('ug')
- ->join('users u','u.id = ug.uid')
- ->join('goods g','g.id = ug.goods_id')
- ->field($field)
- ->where($where)
- ->order(['ug.order asc','ug.sales_time asc'])
- ->page($page,$pagesize)
- ->select();
- return Response::success('暂无数据',['count'=>$count,'data'=>$data,'page'=>$page,'pagesize'=>$pagesize]);
- }
- /**
- * NFT购买
- * @param $userInfo
- * @param $id
- * @param $pay_type
- * @return array
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
- * @throws \GuzzleHttp\Exception\GuzzleException
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function apply($userInfo,$id,$pay_type){
- if($userInfo['is_auth'] == 0) return Response::bindAuth();
- if(!Config::getValue('wallet_open')){
- return Response::fail('暂未开放支付');
- }
- if( $this->redis->getItem('goods_order_'.$userInfo['id'])){
- return Response::fail('频繁操作');
- }
- $this->redis->setItem('goods_order_'.$userInfo['id'],1);
- $this->redis->settime('goods_order_'.$userInfo['id'],10);
- //虚拟用户购买
- $goodsData = new Goods();
- $goodsInfo = $goodsData->alias('g')
- ->join('goods_category gc','gc.id= g.goods_category_id')
- ->where(['g.id'=>$id,'g.is_show'=>1,'g.is_del'=>0])
- ->field(['g.*','gc.is_convert'])
- ->find();
- if(empty($goodsInfo)) return Response::fail('作品信息错误');
- if($goodsInfo['surplus'] <= 0 ) return Response::fail('已售罄');
- $is_convert = $goodsInfo['is_convert'];
- if($is_convert == 0){
- /*$time = date('Y-m-d H:i:s');
- if($time < $goodsInfo['start_time']) {
- return Response::fail('未到开售时间');
- }*/
- $type=$goodsInfo->buyType($userInfo['id']);
- if($type===false){
- return Response::fail('未到开售时间');
- }elseif (is_numeric($type)) {
- return $this->newGoods($userInfo, $goodsInfo, $pay_type,$type);
- }else{
- return Response::fail('您当前无法购买此藏品');
- }
- }else{
- return $this->integralGoods($userInfo['id'],$goodsInfo);
- }
- }
- /**
- * 新品下单
- * @param $userInfo
- * @param $goodsInfo
- * @param $pay_type
- * @return array
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
- * @throws \GuzzleHttp\Exception\GuzzleException
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function newGoods($userInfo,$goodsInfo,$pay_type,$buyType){
- $ordersGoodsData = new OrdersGoods();
- $pay_type=1;
- $uid = $userInfo['id'];
- $count = $ordersGoodsData->where(['uid'=>$uid,'status'=>0,'create_time'=>['>=',date('Y-m-d')]])->count();
- if($count >= 3) return Response::fail('今日未付款次数太多,限制抢购');
- $price = $goodsInfo['price'];
- $goods_id = $goodsInfo['id'];
- $order_num = uniqueNum();
- $time = date('Y-m-d H:i:s');
- Db::startTrans();
- #todo:HASH
- $hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
- $needSubMoney=$buyType===0||$buyType===1;
- if($pay_type == 1){
- //余额抵扣
- if($needSubMoney) {
- $result = (new AccountLogic())->subAccount($uid, 1, $price, '购买新品', '购买新品' . $goodsInfo['name'] . '账户扣除');
- if (!$result) {
- Db::rollback();
- return Response::fail('账户余额不足');
- }
- }
- //生成购买订单
- $order['uid'] = $uid;
- $order['goods_id'] = $goods_id;
- $order['order_num'] = $order_num;
- $order['goods_category_id'] = 1;
- $order['number'] = 1;
- $order['price'] = $price;
- $order['total_price'] = $price;
- $order['pay_type'] = $needSubMoney?$pay_type:0;
- $order['pay_time'] = $time;
- $order['create_time'] = $time;
- $order['status'] = 1;
- $order['buy_type'] = $buyType;
- $order['trans_hash']=ChainLogic::instance()->buy($hash,Users::get($uid));
- $result = $ordersGoodsData->insertGetId($order);
- if(!$result){
- Db::rollback();
- return Response::fail('购买失败');
- }
- $hash && $hash->setOrder($result);
- $goods['uid'] = $uid;
- $goods['goods_id'] = $goods_id;
- $goods['price'] = $price;
- $goods['create_time'] = date('Y-m-d H:i:s');
- $goods['is_buy_before']=$buyType;
- $goods['token_id']=$hash['token_id']??null;
- $result = $this->usersGoodsData->saveEntityAndGetId($goods);
- if($result >0){
- Db::commit();
- $goodsData = new Goods();
- $goodsData->where(['id'=>$goods_id])->setInc('sales');
- $goodsData->where(['id'=>$goods_id])->setDec('surplus');
- return Response::success('购买成功',['is_pay'=>1]);
- }
- Db::rollback();
- return Response::fail('购买失败');
- }elseif($pay_type == 2){
- //微信支付
- if($userInfo['is_wx_auth'] == 0 || empty($userInfo['wx_open_id'])) return Response::wxAuth();
- //生成支付信息
- $notify_url = config('site.wx_orders_goods_notify');
- $pay = (new WxLogic())->pay($order_num,'购买藏品'.$goodsInfo['name'],$price,$userInfo['wx_open_id'],$notify_url);
- if($pay === false) return Response::fail('订单生成失败');
- //生成购买订单
- $order['uid'] = $uid;
- $order['goods_id'] = $goods_id;
- $order['order_num'] = $order_num;
- $order['goods_category_id'] = 1;
- $order['number'] = 1;
- $order['price'] = $price;
- $order['total_price'] = $price;
- $order['pay_type'] = $pay_type;
- $order['create_time'] = $time;
- $result = (new OrdersGoods())->insertGetId($order);
- $hash->setOrder($result);
- if($result){
- Db::commit();
- return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
- }
- Db::rollback();
- return Response::fail('购买失败');
- }elseif ($pay_type == 3){
- //微信APP支付
- $notify_url = config('site.wx_app_orders_goods_notify');
- $pay = (new WxLogic())->appPay($order_num,'购买藏品'.$goodsInfo['name'],$price,$notify_url);
- if($pay === false) return Response::fail('订单生成失败');
- //生成购买订单
- $order['uid'] = $uid;
- $order['goods_id'] = $goods_id;
- $order['order_num'] = $order_num;
- $order['goods_category_id'] = 1;
- $order['number'] = 1;
- $order['price'] = $price;
- $order['total_price'] = $price;
- $order['pay_type'] = $pay_type;
- $order['create_time'] = $time;
- $result = (new OrdersGoods())->insertGetId($order);
- $hash->setOrder($result);
- if($result){
- Db::commit();
- return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
- }
- Db::rollback();
- return Response::fail('购买失败');
- }elseif ($pay_type == 4){
- //支付宝APP支付
- $notify_url = config('site.ali_app_orders_goods_notify');
- $pay = (new AliLogic())->appPay($order_num,'购买藏品'.$goodsInfo['name'],$price,$notify_url);
- if($pay === false) return Response::fail('订单生成失败');
- //生成购买订单
- $order['uid'] = $uid;
- $order['goods_id'] = $goods_id;
- $order['order_num'] = $order_num;
- $order['goods_category_id'] = 1;
- $order['number'] = 1;
- $order['price'] = $price;
- $order['total_price'] = $price;
- $order['pay_type'] = $pay_type;
- $order['create_time'] = $time;
- $result = $ordersGoodsData->insertGetId($order);
- $hash->setOrder($result);
- if($result){
- Db::commit();
- return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
- }
- Db::rollback();
- return Response::fail('购买失败');
- }elseif ($pay_type == 5){
- //支付宝h5支付
- $notify_url = config('site.ali_app_orders_goods_notify');
- $pay = (new AliLogic())->wapPay($order_num,'购买藏品'.$goodsInfo['name'],$price,$notify_url);
- if($pay === false) return Response::fail('订单生成失败');
- //生成购买订单
- $order['uid'] = $uid;
- $order['goods_id'] = $goods_id;
- $order['order_num'] = $order_num;
- $order['goods_category_id'] = 1;
- $order['number'] = 1;
- $order['price'] = $price;
- $order['total_price'] = $price;
- $order['pay_type'] = $pay_type;
- $order['create_time'] = $time;
- $result = $ordersGoodsData->insertGetId($order);
- $hash->setOrder($result);
- if($result){
- Db::commit();
- return Response::success('购买成功',['is_pay'=>0,'pay'=>$pay]);
- }
- Db::rollback();
- return Response::fail('购买失败');
- }else{
- return Response::fail('支付方式错误');
- }
- }
- /**
- * 积分兑换
- * @param $uid
- * @param $goodsInfo
- * @return array
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function integralGoods($uid,$goodsInfo){
- $price = $goodsInfo['price'];
- $goods_id = $goodsInfo['id'];
- $order_num = uniqueNum();
- $time = date('Y-m-d H:i:s');
- $goodsConvertData = new GoodsConvert();
- $count = $goodsConvertData->where(['uid'=>$uid])->count();
- if($count >= 3) return Response::fail('超出兑换次数');
- Db::startTrans();
- $result = (new AccountLogic())->subAccount($uid,2,$price,'NFT兑换','兑换NFT'.$goodsInfo['name'].'账户扣除');
- if(!$result){
- Db::rollback();
- return Response::fail('积分不足');
- }
- #todo:HASH
- $hash=GoodsHash::zero()->queryGoods($goods_id)->lock(true)->find();
- //生成购买订单
- $order['uid'] = $uid;
- $order['goods_id'] = $goods_id;
- $order['order_num'] = $order_num;
- $order['goods_category_id'] = 3;
- $order['number'] = 1;
- $order['price'] = $price;
- $order['total_price'] = $price;
- $order['pay_type'] = 5;
- $order['pay_time'] = $time;
- $order['create_time'] = $time;
- $order['status'] = 1;
- $order['trans_hash'] = ChainLogic::instance()->buy($hash,Users::get($uid));
- $result = (new OrdersGoods())->insertGetId($order);
- if(!$result){
- Db::rollback();
- return Response::fail('兑换失败');
- }
- $hash && $hash->setOrder($result);
- $goods['uid'] = $uid;
- $goods['goods_id'] = $goods_id;
- $goods['price'] = $price;
- $goods['create_time'] = date('Y-m-d H:i:s');
- $goods['token_id']=$hash['token_id']??null;
- $result = $this->usersGoodsData->saveEntityAndGetId($goods);
- if($result >0){
- Db::commit();
- $goodsConvertData->insertGetId(['uid'=>$uid,'goods_id'=>$goods_id,'create_time'=>date('Y-m-d H:i:s')]);
- $goodsData = new Goods();
- $goodsData->where(['id'=>$goods_id])->setInc('sales');
- $goodsData->where(['id'=>$goods_id])->setDec('surplus');
- return Response::success('兑换成功',['is_pay'=>1]);
- }
- Db::rollback();
- return Response::fail('兑换失败');
- }
- /**
- * 会员NFT作品列表
- * @param $uid
- * @param $status
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function usersGoodsList($uid,$status){
- $where['ug.is_del'] = 0;
- $where['ug.uid'] = $uid;
- if($status > 1){
- $where['ug.status'] = ['in',[2,3,4]];
- } else{
- $where['ug.status'] = ['in',[1,5]];
- }
- $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'];
- //$field[]='count(ug.id) as goods_num';
- $data = $this->usersGoodsData->alias('ug')
- ->join('goods g','g.id = ug.goods_id')
- ->join('author a','a.id = g.author_id')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->join('network n','n.id = g.network_id')
- ->where($where)
- //->group('goods_id')
- ->field($field)
- ->order(['ug.id desc'])
- ->select();
- if(!empty($data)) {
- $data = collection($data)->toArray();
- $data = addWebSiteUrl($data,['image','author_image']);
- return Response::success('success',$data);
- }
- return Response::success('暂无数据',[]);
- }
- /**
- * 会员作品详情
- * @param $uid
- * @param $id
- * @return array
- * @throws Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function usersGoodsDetail($uid,$id){
- $where['ug.id'] = $id;
- $where['ug.uid'] = $uid;
- $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'];
- $data = $this->usersGoodsData->alias('ug')
- ->join('goods g','g.id = ug.goods_id')
- ->join('author a','a.id = g.author_id')
- ->join('goods_category gc','gc.id = g.goods_category_id')
- ->join('network n','n.id = g.network_id')
- ->where($where)
- ->field($field)
- ->find();
- if($data){
- $data = $data->toArray();
- $data = addWebSiteUrl($data,['image','author_image']);
- return Response::success('success',$data);
- }
- return Response::fail('盲盒信息错误');
- }
- /**
- * 出售藏品
- * @param $uid
- * @param $id
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function sale($uid,$id,$price){
- if($price < 0.01) return Response::fail('价格输入错误');
- $is_trade = Config::getValue('is_trade',0);
- if($is_trade == 0) return Response::fail('市场未开启');
- $info = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id,'status'=>1])->find();
- if(empty($info)) return Response::fail('盲盒信息错误');
- Users::get($uid)->checkPayPwd();
- $result = $this->usersGoodsData->where(['id'=>$id])->update(['status'=>2,'price'=>$price,'sales_time'=>date('Y-m-d H:i:s')]);
- if($result) return Response::success('出售成功');
- return Response::fail('出售失败');
- }
- /**
- * 转赠
- * @param $uid
- * @param $id
- * @param $phone
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function transfer($uid,$id,$phone){
- $allowTransfer=Config::getValue('system_allow_transfer',0);
- if(!$allowTransfer){
- return Response::fail('系统优化中,暂时无法转赠');
- }
- $targetInfo = (new Users())->where(['is_del'=>0,'phone'=>$phone])->find();
- if(empty($targetInfo)) return Response::fail('转赠信息错误');
- Users::get($uid)->checkPayPwd();
- $info = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id,'status'=>['in',[1,2]]])->find();
- if(empty($info)) return Response::fail('作品信息错误');
- if(!$info['is_cool']){
- api_error('冷却中...');
- }
- if($targetInfo['id']==$uid){
- return Response::fail('不能转赠给自己');
- }
- //生成转增记录
- $time = date('Y-m-d H:i:s');
- $transfer['users_goods_id'] = $id;
- $transfer['uid'] = $uid;
- $transfer['target_uid'] = $targetInfo['id'];
- $transfer['goods_id'] = $info['goods_id'];
- $transfer['price'] = $info['price'];
- $transfer['create_time'] = $time;
- Db::startTrans();
- $result = (new GoodsTransfer())->insertGetId($transfer);
- if(!$result){
- Db::rollback();
- return Response::fail('转赠失败');
- }
- $result = $this->usersGoodsData->where(['id'=>$id])->update(['status'=>5,'is_del'=>1]);
- if(!$result){
- Db::rollback();
- return Response::fail('转赠失败');
- }
- //生成新纪录
- $goods['uid'] = $targetInfo['id'];
- $goods['goods_id'] = $info['goods_id'];
- $goods['price'] = $info['price'];
- $goods['goods_num'] = $info['goods_num'];
- $goods['create_time'] = $time;
- $result = $this->usersGoodsData->insertGetId($goods);
- if($result){
- Db::commit();
- return Response::success('转赠成功');
- }
- Db::rollback();
- return Response::fail('转赠失败');
- }
- /**
- * 修改藏品价格
- * @param $uid
- * @param $id
- * @param $price
- * @return array
- */
- public function updatePrice($uid,$id,$price){
- if($price < 0.01) return Response::fail('价格输入错误');
- $result = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id,'status'=>['in',[1,2]]])->update(['price'=>$price]);
- if($result) return Response::success('修改成功');
- return Response::fail('修改失败');
- }
- /**
- * 切换商品状态
- * @param $uid
- * @param $id
- * @param $is_show
- * @return array
- */
- public function updateShow($uid,$id,$is_show){
- $result = $this->usersGoodsData->where(['uid'=>$uid,'id'=>$id])->update(['is_show'=>$is_show]);
- if($result) return Response::success($is_show == 1?'上架成功':'下架成功');
- return Response::fail($is_show == 1?'上架失败':'下架失败');
- }
- }
|