Recommend.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. namespace logicmodel\award;
  3. use datamodel\AwardRecommend;
  4. use datamodel\AwardRecord;
  5. use datamodel\Conf;
  6. use datamodel\Goods;
  7. use datamodel\GoodsHash;
  8. use datamodel\Users;
  9. use datamodel\UsersBox;
  10. use datamodel\UsersGoods;
  11. use logicmodel\AccountLogic;
  12. use logicmodel\ChainLogic;
  13. use think\Log;
  14. class Recommend extends Award
  15. {
  16. private $award_id;
  17. public function __construct()
  18. {
  19. parent::__construct();
  20. $this->award_id = 1;
  21. }
  22. /**
  23. *推荐奖励
  24. * @param $uid
  25. * @param $from_uid
  26. * @return bool
  27. * @throws \think\Exception
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\exception\DbException
  31. */
  32. public function award($uid,$from_uid){
  33. $awardInfo = $this->awardIsOpen($this->award_id);
  34. if($awardInfo === false) return false;
  35. $recommendData = new AwardRecommend();
  36. $recommends = $recommendData->where('total_direct','>',0)->select();
  37. foreach ($recommends as $recommend){
  38. $register_award = $recommend['register_award'];
  39. if($register_award >0){
  40. (new AccountLogic())->addAccount($uid, 2, $register_award, '实名认证奖励', '认证奖励');
  41. }
  42. if($recommend['stock'] <= 0) {
  43. continue;
  44. }
  45. $count = $this->usersData
  46. ->where(['is_auth'=>1,'pid'=>$uid,'is_del'=>0])
  47. ->where('id','>',Conf::getValue('award_goods_clear_time','206139'))
  48. ->count();
  49. if($count < $recommend['total_direct']) {
  50. continue;
  51. }
  52. $type = $recommend['type'];
  53. if($type == 1){
  54. $recommend_award = $recommend['recommend_award'];//推荐奖励
  55. if($recommend_award > 0){
  56. $hasSend=AwardRecord::where('uid',$uid)->where('from_uid',$from_uid)->value('id');
  57. if($hasSend){
  58. continue;
  59. }
  60. $recommendData->where(['id'=>$recommend['id']])->setDec('stock',1);
  61. $this->record($uid,2,$recommend_award,$from_uid,$this->award_id,$awardInfo['name'],'推荐奖励',$awardInfo['field'],0,0,1);
  62. }
  63. }elseif ($type == 2){
  64. //生成一个藏品
  65. if($recommend['goods_id'] > 0){
  66. $hasSend=AwardRecord::where('uid',$uid)->where('goods_id',$recommend['goods_id'])->value('id');
  67. if($hasSend){
  68. continue;
  69. }
  70. $goods = Goods::where(['id'=>$recommend['goods_id']])->find();
  71. if($goods){
  72. $recommendData->where(['id'=>$recommend['id']])->setDec('stock',1);
  73. #todo:HASH
  74. $hash=GoodsHash::zero()->queryGoods($goods['id'])->lock(true)->find();
  75. $usersGoods = [
  76. 'uid'=>$uid,
  77. 'goods_id'=>$goods['id'],
  78. 'price'=>$goods['price'],
  79. 'create_time'=>date('Y-m-d H:i:s'),
  80. 'token_id'=>$hash['token_id']??null,
  81. ];
  82. $hash && $hash->setOrder(-2);
  83. ChainLogic::instance()->buy($hash,Users::get($uid));
  84. $result = (new UsersGoods())->insertGetId($usersGoods);
  85. if($result){
  86. $this->record($uid,2,0,$from_uid,$this->award_id,$awardInfo['name'],'推荐奖励',$awardInfo['field'],$recommend['goods_id'],0,2);
  87. }
  88. }
  89. }
  90. }elseif ($type == 3){
  91. if($recommend['box_id'] > 0){
  92. $hasSend=AwardRecord::where('uid',$uid)->where('box_id',$recommend['box_id'])->value('id');
  93. if($hasSend){
  94. continue;
  95. }
  96. $box = Goods::where(['id'=>$recommend['box_id']])->find();
  97. if($box){
  98. $recommendData->where(['id'=>$recommend['id']])->setDec('stock',1);
  99. $usersBox = ['uid'=>$uid,'box_id'=>$recommend['box_id'],'price'=>$box['price'],'create_time'=>date('Y-m-d H:i:s')];
  100. $result = (new UsersBox())->insertGetId($usersBox);
  101. if($result){
  102. $this->record($uid,2,0,$from_uid,$this->award_id,$awardInfo['name'],'推荐奖励',$awardInfo['field'],0,$recommend['box_id'],3);
  103. }
  104. }
  105. }
  106. }
  107. }
  108. return false;
  109. }
  110. }