Recommend.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. namespace logicmodel\award;
  3. use datamodel\AwardRecommend;
  4. use datamodel\Conf;
  5. use datamodel\Goods;
  6. use datamodel\UsersBox;
  7. use datamodel\UsersGoods;
  8. use logicmodel\AccountLogic;
  9. class Recommend extends Award
  10. {
  11. private $award_id;
  12. public function __construct()
  13. {
  14. parent::__construct();
  15. $this->award_id = 1;
  16. }
  17. /**
  18. *推荐奖励
  19. * @param $uid
  20. * @param $from_uid
  21. * @return bool
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. */
  27. public function award($uid,$from_uid){
  28. $awardInfo = $this->awardIsOpen($this->award_id);
  29. if($awardInfo === false) return false;
  30. $recommendData = new AwardRecommend();
  31. $recommends = $recommendData->select();
  32. foreach ($recommends as $recommend){
  33. $register_award = $recommend['register_award'];
  34. if($register_award >0){
  35. (new AccountLogic())->addAccount($uid, 2, $register_award, '实名认证奖励', '认证奖励');
  36. }
  37. if($recommend['stock'] <= 0) {
  38. continue;
  39. }
  40. $count = $this->usersData->where(['is_auth'=>1,'pid'=>$uid,'is_del'=>0])->where('create_time','>=',Conf::getValue('award_goods_clear_time','0000-00-00'))->count();
  41. if($count != $recommend['total_direct']) {
  42. continue;
  43. }
  44. $type = $recommend['type'];
  45. if($type == 1){
  46. $recommend_award = $recommend['recommend_award'];//推荐奖励
  47. if($recommend_award > 0){
  48. $recommendData->where(['id'=>1])->setDec('stock',1);
  49. $this->record($uid,2,$recommend_award,$from_uid,$this->award_id,$awardInfo['name'],'推荐奖励',$awardInfo['field'],0,0,1);
  50. }
  51. }elseif ($type == 2){
  52. //生成一个藏品
  53. if($recommend['goods_id'] > 0){
  54. $goods = Goods::where(['id'=>$recommend['goods_id']])->find();
  55. if($goods){
  56. $recommendData->where(['id'=>1])->setDec('stock',1);
  57. $usersGoods = ['uid'=>$uid,'goods_id'=>$goods['id'],'price'=>$goods['price'],'create_time'=>date('Y-m-d H:i:s')];
  58. $result = (new UsersGoods())->insertGetId($usersGoods);
  59. if($result){
  60. UsersGoods::get($result)->addHash($goods->hash()->zero()->find());
  61. $this->record($uid,2,0,$from_uid,$this->award_id,$awardInfo['name'],'推荐奖励',$awardInfo['field'],$recommend['goods_id'],0,2);
  62. }
  63. }
  64. }
  65. }elseif ($type == 3){
  66. if($recommend['box_id'] > 0){
  67. $box = Goods::where(['id'=>$recommend['box_id']])->find();
  68. if($box){
  69. $recommendData->where(['id'=>1])->setDec('stock',1);
  70. $usersBox = ['uid'=>$uid,'box_id'=>$recommend['box_id'],'price'=>$box['price'],'create_time'=>date('Y-m-d H:i:s')];
  71. $result = (new UsersBox())->insertGetId($usersBox);
  72. if($result){
  73. $this->record($uid,2,0,$from_uid,$this->award_id,$awardInfo['name'],'推荐奖励',$awardInfo['field'],0,$recommend['box_id'],3);
  74. }
  75. }
  76. }
  77. }
  78. }
  79. return false;
  80. }
  81. }