123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840 |
- <?php
- namespace app\models\user;
- use app\admin\model\store\StoreProductCate;
- use app\models\store\StoreCart;
- use app\models\store\StoreOrder;
- use app\models\store\StoreOrderCartInfo;
- use app\models\store\StoreProduct;
- use app\models\system\Message;
- use crmeb\services\SystemConfigService;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\Exception;
- use think\facade\Session;
- use crmeb\traits\ModelTrait;
- use crmeb\basic\BaseModel;
- use crmeb\traits\JwtAuthModelTrait;
- /**
- * TODO 用户Model
- * Class User
- * @package app\models\user
- */
- class User extends BaseModel
- {
- use JwtAuthModelTrait;
- use ModelTrait;
- protected $pk = 'uid';
- protected $name = 'user';
- protected $insert = ['add_time', 'add_ip', 'last_time', 'last_ip'];
- protected $hidden = [
- 'add_ip', 'add_time', 'clean_time', 'last_ip', 'last_time', 'pwd', 'status', 'mark', 'pwd'
- ];
- protected function setAddTimeAttr($value)
- {
- return time();
- }
- protected function setAddIpAttr($value)
- {
- return app('request')->ip();
- }
- protected function setLastTimeAttr($value)
- {
- return time();
- }
- protected function setLastIpAttr($value)
- {
- return app('request')->ip();
- }
- /**
- * @param $wechatUser
- * @param int $spread_uid
- * @return bool
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public static function setWechatUser($wechatUser, $spread_uid = 0, $site_id = 0)
- {
- $res = self::create([
- 'account' => 'wx' . $wechatUser['uid'] . time(),
- 'pwd' => md5(123456),
- 'nickname' => $wechatUser['nickname'] ?: '',
- 'avatar' => $wechatUser['headimgurl'] ?: '',
- 'add_time' => time(),
- 'add_ip' => app('request')->ip(),
- 'last_time' => time(),
- 'last_ip' => app('request')->ip(),
- 'uid' => $wechatUser['uid'],
- 'user_type' => 'wechat',
- 'trade_pwd' => md5(md5(123456)),
- 'site_id' => $site_id,
- 'is_promoter' => 1,
- ]);
- return $res && UserSpread::setSpread($wechatUser['uid'], $spread_uid);
- }
- /**
- * TODO 获取会员是否被清除过的时间
- * @param $uid
- * @return int|mixed
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function getCleanTime($uid)
- {
- $user = self::where('uid', $uid)->field(['add_time', 'clean_time'])->find();
- if (!$user) return 0;
- return $user['clean_time'] ? $user['clean_time'] : $user['add_time'];
- }
- /**
- * 更新用户信息
- * @param array $wechatUser 用户信息
- * @param int $uid 用户uid
- * @return bool|void
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function updateWechatUser($wechatUser, $uid)
- {
- $userInfo = self::where('uid', $uid)->find();
- if (!$userInfo) return;
- //增加成为分销权限
- if (!$userInfo->is_promoter) {
- $price = StoreOrder::where(['paid' => 1, 'refund_status' => 0, 'uid' => $uid])->sum('pay_price');
- $status = is_brokerage_statu($price);
- } else {
- $status = false;
- }
- if ($userInfo->spread_uid) {
- return self::edit([
- 'nickname' => $wechatUser['nickname'] ?: '',
- 'avatar' => $wechatUser['headimgurl'] ?: '',
- 'is_promoter' => $status ? 1 : $userInfo->is_promoter,
- 'login_type' => isset($wechatUser['login_type']) ? $wechatUser['login_type'] : $userInfo->login_type,
- ], $uid, 'uid');
- } else {
- $data = [
- 'nickname' => $wechatUser['nickname'] ?: '',
- 'avatar' => $wechatUser['headimgurl'] ?: '',
- 'is_promoter' => $status ? 1 : $userInfo->is_promoter,
- 'login_type' => isset($wechatUser['login_type']) ? $wechatUser['login_type'] : $userInfo->login_type,
- // 'spread_uid' => 0,
- // 'spread_time' => 0,
- 'last_time' => time(),
- 'last_ip' => request()->ip(),
- ];
- //TODO 获取后台分销类型
- // $storeBrokerageStatus = sys_config('store_brokerage_statu');
- // $storeBrokerageStatus = $storeBrokerageStatus ? $storeBrokerageStatus : 1;
- // if (isset($wechatUser['code']) && $wechatUser['code'] && $wechatUser['code'] != $uid && $uid != self::where('uid', $wechatUser['code'])->value('spread_uid')) {
- // if ($storeBrokerageStatus == 1) {
- // $spreadCount = self::where('uid', $wechatUser['code'])->count();
- // if ($spreadCount) {
- // $spreadInfo = self::where('uid', $wechatUser['code'])->find();
- // if ($spreadInfo->is_promoter) {
- // //TODO 只有扫码才可以获得推广权限
- //// if(isset($wechatUser['isPromoter'])) $data['is_promoter'] = $wechatUser['isPromoter'] ? 1 : 0;
- // }
- // }
- // }
- // $data['spread_uid'] = $wechatUser['code'];
- // $data['spread_time'] = time();
- // }
- return self::edit($data, $uid, 'uid') && UserSpread::setSpread($uid, $wechatUser['code'] ?? 0);
- }
- }
- /**
- * 设置推广关系
- * @param $spread
- * @param $uid
- * @return bool
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function setSpread($spread, $uid)
- {
- return UserSpread::setSpread($uid, $spread);
- //当前用户信息
- // $userInfo = self::where('uid', $uid)->find();
- // if (!$userInfo) return true;
- // //当前用户有上级直接返回
- // if ($userInfo->spread_uid) return true;
- // //没有推广编号直接返回
- // if (!$spread) return true;
- // if ($spread == $uid) return true;
- // if ($uid == self::where('uid', $spread)->value('spread_uid')) return true;
- // //TODO 获取后台分销类型
- // $storeBrokerageStatus = sys_config('store_brokerage_statu');
- // $storeBrokerageStatus = $storeBrokerageStatus ? $storeBrokerageStatus : 1;
- // if ($storeBrokerageStatus == 1) {
- // $spreadCount = self::where('uid', $spread)->count();
- // if ($spreadCount) {
- // $spreadInfo = self::where('uid', $spread)->find();
- // if ($spreadInfo->is_promoter) {
- // //TODO 只有扫码才可以获得推广权限
- //// if(isset($wechatUser['isPromoter'])) $data['is_promoter'] = $wechatUser['isPromoter'] ? 1 : 0;
- // }
- // }
- // }
- // $data['spread_uid'] = $spread;
- // $data['spread_time'] = time();
- // return self::edit($data, $uid, 'uid');
- }
- /**
- * 小程序用户添加
- * @param $routineUser
- * @param int $spread_uid
- * @return object
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public static function setRoutineUser($routineUser, $spread_uid = 0)
- {
- self::beginTrans();
- $res1 = true;
- if ($spread_uid) $res1 = self::where('uid', $spread_uid)->inc('spread_count', 1)->update();
- // $storeBrokerageStatu = sys_config('store_brokerage_statu') ? : 1;//获取后台分销类型
- $res2 = self::create([
- 'account' => 'rt' . $routineUser['uid'] . time(),
- 'pwd' => md5(123456),
- 'nickname' => $routineUser['nickname'] ?: '',
- 'avatar' => $routineUser['headimgurl'] ?: '',
- // 'spread_uid' => $spread_uid,
- // 'is_promoter'=>$spread_uid || $storeBrokerageStatu != 1 ? 1: 0,
- // 'spread_time' => $spread_uid ? time() : 0,
- 'uid' => $routineUser['uid'],
- 'add_time' => $routineUser['add_time'],
- 'add_ip' => request()->ip(),
- 'last_time' => time(),
- 'last_ip' => request()->ip(),
- 'user_type' => $routineUser['user_type']
- ]);
- $res = $res1 && $res2 && UserSpread::setSpread($routineUser['uid'], $spread_uid);
- self::checkTrans($res);
- return $res2;
- }
- /**
- * 获得当前登陆用户UID
- * @return int $uid
- */
- public static function getActiveUid()
- {
- $uid = null;
- $uid = Session::get('LoginUid');
- if ($uid) return $uid;
- else return 0;
- }
- /**
- * TODO 查询当前用户信息
- * @param $uid $uid 用户编号
- * @param string $field $field 查询的字段
- * @return array
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function getUserInfo($uid, $field = '')
- {
- if (strlen(trim($field))) $userInfo = self::where('uid', $uid)->field($field)->find();
- else $userInfo = self::where('uid', $uid)->find();
- if (!$userInfo) return [];
- return $userInfo->toArray();
- }
- /**
- * 判断当前用户是否推广员
- * @param int $uid
- * @return bool
- */
- public static function isUserSpread($uid = 0)
- {
- if (!$uid) return false;
- $status = (int)sys_config('store_brokerage_statu');
- $isPromoter = true;
- if ($status == 1) $isPromoter = self::where('uid', $uid)->value('is_promoter');
- if ($isPromoter) return true;
- else return false;
- }
- /**
- * TODO 一级返佣
- * @param $orderInfo
- * @return bool
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function backOrderBrokerage($orderInfo, bool $open = true)
- {
- //TODO 营销产品不返佣金
- if (isset($orderInfo['combination_id']) && $orderInfo['combination_id']) return true;
- if (isset($orderInfo['seckill_id']) && $orderInfo['seckill_id']) return true;
- if (isset($orderInfo['bargain_id']) && $orderInfo['bargain_id']) return true;
- if (isset($orderInfo['exchange_id']) && $orderInfo['exchange_id']) return true;
- $userInfo = User::getUserInfo($orderInfo['uid']);
- //TODO 当前用户不存在 没有上级 或者 当用用户上级时自己 直接返回
- if (!$userInfo || !$userInfo['spread_uid'] || $userInfo['spread_uid'] == $orderInfo['uid']) return true;
- if (!User::be(['uid' => $userInfo['spread_uid'], 'is_promoter' => 1])) return self::backOrderBrokerageTwo($orderInfo, $open);
- $cartId = is_string($orderInfo['cart_id']) ? json_decode($orderInfo['cart_id'], true) : $orderInfo['cart_id'];
- list($realBrokeragePrice, $virtualBrokeragePrice) = StoreProduct::getProductBrokerage($orderInfo['uid'], $cartId);
- //TODO 返佣金额小于等于0 直接返回不返佣金
- if ($realBrokeragePrice <= 0 && $virtualBrokeragePrice <= 0) return true;
- //TODO 获取上级推广员信息
- // $open && self::beginTrans();
- $res = true;
- if ($virtualBrokeragePrice > 0) {
- $spreadUserInfo = User::getUserInfo($userInfo['spread_uid']);
- //TODO 上级推广员返佣之后的金额
- $balance = bcadd($spreadUserInfo['brokerage_price'], $virtualBrokeragePrice, 2);
- $mark = $userInfo['nickname'] . '成功消费[虚拟产品]' . floatval($orderInfo['pay_price']) . '元,奖励推广佣金' . floatval($virtualBrokeragePrice);
- //TODO 添加推广记录
- $res1 = UserBill::income('获得推广佣金', $userInfo['spread_uid'], 'now_money', 'brokerage', $virtualBrokeragePrice, $orderInfo['id'], $balance, $mark);
- //TODO 添加用户余额
- $res2 = self::bcInc($userInfo['spread_uid'], 'brokerage_price', $virtualBrokeragePrice, 'uid');
- Message::addMessage($userInfo['spread_uid'], $mark, 200);
- //TODO 一级返佣成功 跳转二级返佣
- $res = $res1 && $res2;
- }
- if ($realBrokeragePrice > 0) {
- $spreadUserInfo = User::getUserInfo($userInfo['spread_uid']);
- //TODO 上级推广员返佣之后的金额
- $mark = $userInfo['nickname'] . '成功消费[实体产品]' . floatval($orderInfo['pay_price']) . '元,奖励推广佣金' . floatval($realBrokeragePrice);
- //TODO 添加推广记录
- $res = UserBill::income('获得推广佣金', $userInfo['spread_uid'], 'now_money', 'brokerage', $realBrokeragePrice, $orderInfo['id'], $spreadUserInfo['brokerage_price'], $mark, 0);
- }
- $res = $res && self::backOrderBrokerageTwo($orderInfo);
- // $open && self::checkTrans($res);
- return $res;
- }
- /**
- * TODO 一级返佣
- * @param $orderInfo
- * @return bool
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function backOrderBrokerageSP($orderInfo, bool $open = true)
- {
- //TODO 营销产品不返佣金
- if (isset($orderInfo['combination_id']) && $orderInfo['combination_id']) return true;
- if (isset($orderInfo['seckill_id']) && $orderInfo['seckill_id']) return true;
- if (isset($orderInfo['bargain_id']) && $orderInfo['bargain_id']) return true;
- if (isset($orderInfo['exchange_id']) && $orderInfo['exchange_id']) return true;
- $userInfo = User::getUserInfo($orderInfo['uid']);
- //TODO 当前用户不存在 没有上级 或者 当用用户上级时自己 直接返回
- if (!$userInfo || !$userInfo['spread_uid'] || $userInfo['spread_uid'] == $orderInfo['uid']) return true;
- $spread_user = User::where('uid', $userInfo['spread_uid'])->find();
- if (!$spread_user) return true;
- $level = UserLevel::getUserLevelInfo(UserLevel::getUserLevel($spread_user['uid']));
- if (UserLevel::getUserLevelInfo(UserLevel::getUserLevel($userInfo['uid']), 'level_id') != $level['level_id']) return true;
- $res = true;
- $cartId = is_string($orderInfo['cart_id']) ? json_decode($orderInfo['cart_id'], true) : $orderInfo['cart_id'];
- $cartInfo = StoreOrderCartInfo::whereIn('cart_id', $cartId)->column('cart_info');
- $sum_sp = ['real' => 0, 'virtual' => 0];
- foreach ($cartInfo as $value) {
- $product = json_decode($value, true);
- if (isset($product['productInfo'])) {
- $productInfo = $product['productInfo'];
- $cates = StoreProductCate::where('product_id', $product['product_id'])->column('cate_id');
- if (in_array(49, $cates)) {
- $sum_sp[(isset($productInfo['store_type']) && $productInfo['store_type'] == 1 ? 'real' : 'virtual')] += ($product['cart_num'] ?? 0);
- }
- }
- }
- if ($orderInfo['over'] > 0) $sum_sp = ['real' => $orderInfo['over'], 'virtual' => 0];
- $brokeragePrice = bcmul($sum_sp['real'], $level['same_level_award_ratio'], 2);
- if ($brokeragePrice > 0) {
- $mark = '用户' . $userInfo['nickname'] . '(' . $orderInfo['uid'] . ')' . '购买实体升级商品,获得平级奖励' . $brokeragePrice;
- $res = $res && UserBill::income('获得商品平级奖', $spread_user['uid'], 'now_money', 'brokerage', $brokeragePrice, $orderInfo['id'], $spread_user['brokerage_price'], $mark, 0);
- }
- $brokeragePrice = bcmul($sum_sp['virtual'], $level['same_level_award_ratio'], 2);
- if ($brokeragePrice > 0) {
- $mark = '用户' . $userInfo['nickname'] . '(' . $orderInfo['uid'] . ')' . '购买虚拟升级商品,获得平级奖励' . $brokeragePrice;
- $res = $res && UserBill::income('获得商品平级奖', $spread_user['uid'], 'now_money', 'brokerage', $brokeragePrice, $orderInfo['id'], bcadd($spread_user['brokerage_price'], $brokeragePrice, 2), $mark);
- Message::addMessage($orderInfo['uid'], $mark, 200);
- $res = $res && User::where('uid', $spread_user['uid'])->inc('brokerage_price', $brokeragePrice)->update();
- }
- return $res;
- }
- /**
- * TODO 二级推广
- * @param $orderInfo
- * @return bool
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function backOrderBrokerageTwo($orderInfo, bool $open = true)
- {
- //TODO 获取购买商品的用户
- $userInfo = User::getUserInfo($orderInfo['uid']);
- //TODO 获取上推广人
- $userInfoTwo = User::getUserInfo($userInfo['spread_uid']);
- //TODO 上推广人不存在 或者 上推广人没有上级 或者 当用用户上上级时自己 直接返回
- if (!$userInfoTwo || !$userInfoTwo['spread_uid'] || $userInfoTwo['spread_uid'] == $orderInfo['uid']) return true;
- //TODO 获取后台分销类型 1 指定分销 2 人人分销
- if (!User::be(['uid' => $userInfoTwo['spread_uid'], 'is_promoter' => 1])) return true;
- $cartId = is_string($orderInfo['cart_id']) ? json_decode($orderInfo['cart_id'], true) : $orderInfo['cart_id'];
- list($realBrokeragePrice, $virtualBrokeragePrice) = StoreProduct::getProductBrokerage($orderInfo['uid'], $cartId, false);
- //TODO 返佣金额小于等于0 直接返回不返佣金
- if ($realBrokeragePrice <= 0 && $virtualBrokeragePrice <= 0) return true;
- // $open && self::beginTrans();
- $res = true;
- if ($virtualBrokeragePrice > 0) {
- $spreadUserInfoTwo = User::getUserInfo($userInfoTwo['spread_uid']);
- //TODO 上级推广员返佣之后的金额
- $balance = bcadd($spreadUserInfoTwo['brokerage_price'], $virtualBrokeragePrice, 2);
- $mark = '二级推广人' . $userInfo['nickname'] . '成功消费[虚拟产品]' . floatval($orderInfo['pay_price']) . '元,奖励推广佣金' . floatval($virtualBrokeragePrice);
- //TODO 添加推广记录
- $res1 = UserBill::income('获得推广佣金', $userInfoTwo['spread_uid'], 'now_money', 'brokerage', $virtualBrokeragePrice, $orderInfo['id'], $balance, $mark);
- //TODO 添加用户余额
- $res2 = self::bcInc($userInfoTwo['spread_uid'], 'brokerage_price', $virtualBrokeragePrice, 'uid');
- Message::addMessage($userInfoTwo['spread_uid'], $mark, 200);
- //TODO 一级返佣成功 跳转二级返佣
- $res = $res1 && $res2;
- }
- if ($realBrokeragePrice > 0) {
- $spreadUserInfoTwo = User::getUserInfo($userInfoTwo['spread_uid']);
- //TODO 上级推广员返佣之后的金额
- $mark = '二级推广人' . $userInfo['nickname'] . '成功消费[实体产品]' . floatval($orderInfo['pay_price']) . '元,奖励推广佣金' . floatval($realBrokeragePrice);
- //TODO 添加推广记录
- $res = UserBill::income('获得推广佣金', $userInfoTwo['spread_uid'], 'now_money', 'brokerage', $realBrokeragePrice, $orderInfo['id'], $spreadUserInfoTwo['brokerage_price'], $mark, 0);
- }
- // $res = $res && self::backOrderBrokerageTwo($orderInfo);
- // $open && self::checkTrans($res);
- return $res;
- }
- /**
- * 发放实际商品佣金
- * @param $orderInfo
- * @return bool
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public static function sendBackOrderBrokerage($orderInfo)
- {
- $list = UserBill::where(['link_id' => $orderInfo['id'], 'type' => 'brokerage', 'category' => 'now_money', 'pm' => 1, 'status' => 0])->select();
- if ($list) {
- self::beginTrans();
- try {
- foreach ($list as $v) {
- self::bcInc($v['uid'], 'brokerage_price', $v['number'], 'uid');
- $balance = self::getUserInfo($v['uid'])['brokerage_price'];
- UserBill::where('id', $v['id'])->update(['add_time' => time(), 'status' => 1, 'balance' => $balance]);
- Message::addMessage($v['uid'], $v['mark'], 200);
- }
- self::commitTrans();
- return true;
- } catch (Exception $e) {
- self::rollbackTrans();
- return false;
- }
- }
- return true;
- }
- /**
- * 获取推荐人 暂无使用
- * @param $uid
- * @param $page
- * @param $limit
- * @return mixed
- */
- public static function getSpreadList($uid, $page, $limit)
- {
- $list = self::where('spread_uid', $uid)->field('uid,nickname,avatar,add_time')->page($page, $limit)->order('add_time DESC')->select();
- foreach ($list as $k => $user) {
- $list[$k]['add_time'] = date('Y/m/d', $user['add_time']);
- $list[$k]['price'] = StoreOrder::getUserPrice($user['uid']);
- }
- $count = self::where('spread_uid', $uid)->field('uid,nickname,avatar,add_time')->count();
- $data['count'] = $count;
- $data['list'] = $list;
- return $data;
- }
- /**
- * 获取某个用户的下级uid
- * @param $uid
- * @return array
- */
- public static function getOneSpreadUid($uid)
- {
- return self::where('spread_uid', $uid)->column('uid');
- }
- /**
- * 修改个人信息
- * @param $avatar 头像
- * @param $nickname 昵称
- * @param $uid 用户uid
- * @return bool
- */
- public static function editUser($avatar, $nickname, $uid)
- {
- return self::edit(['avatar' => $avatar, 'nickname' => $nickname], $uid, 'uid');
- }
- /**
- * TODO 获取推广人数 一级
- * @param int $uid
- * @return bool|int|string
- */
- public static function getSpreadCount($uid = 0)
- {
- if (!$uid) return false;
- return self::where('spread_uid', $uid)->count();
- }
- /**
- * 修改当前用户的推广人数
- * @param $uid
- */
- public static function setUserSpreadCount($uid)
- {
- if (!$uid) return true;
- if (self::getSpreadCount($uid) > 0) {
- self::where('uid', $uid)->update(['spread_count' => 0]);
- } else {
- self::where('uid', $uid)->update(['spread_count' => 0]);
- return true;
- }
- return self::where('uid', $uid)->update(['spread_count' => self::getSpreadCount($uid)]);
- }
- /**
- * TODO 获取推广人数 二级
- * @param int $uid
- * @return bool|int|string
- */
- public static function getSpreadLevelCount($uid = 0)
- {
- if (!$uid) return false;
- $uidSubordinate = self::where('spread_uid', $uid)->column('uid');
- if (!count($uidSubordinate)) return 0;
- return self::where('spread_uid', 'IN', implode(',', $uidSubordinate))->count();
- }
- /**
- * 获取用户下级推广人
- * @param int $uid 当前用户
- * @param int $grade 等级 0 一级 1 二级
- * @param string $orderBy 排序
- * @param string $keyword
- * @param int $page
- * @param int $limit
- * @return array|bool
- */
- public static function getUserSpreadGrade($uid = 0, $grade = 0, $orderBy = '', $keyword = '', $page = 0, $limit = 20)
- {
- if (!$uid) return [];
- $gradeGroup = [0, 1];
- if (!in_array($grade, $gradeGroup)) return self::setErrorInfo('等级错误');
- $userStair = self::where('spread_uid', $uid)->column('uid');
- if (!count($userStair)) return [];
- if ($grade == 0) return self::getUserSpreadCountList(implode(',', $userStair), $orderBy, $keyword, $page, $limit);
- $userSecondary = self::where('spread_uid', 'in', implode(',', $userStair))->column('uid');
- return self::getUserSpreadCountList(implode(',', $userSecondary), $orderBy, $keyword, $page, $limit);
- }
- /**
- * 获取团队信息
- * @param $uid
- * @param string $orderBy
- * @param string $keyword
- * @param int $page
- * @param int $limit
- * @return array
- */
- public static function getUserSpreadCountList($uid, $orderBy = '', $keyword = '', $page = 0, $limit = 20)
- {
- $model = new self;
- if ($orderBy === '') $orderBy = 'u.add_time desc';
- $model = $model->alias(' u');
- $sql = StoreOrder::where('o.paid', 1)->group('o.uid')->field(['SUM(o.pay_price) as numberCount', 'o.uid', 'o.order_id'])
- ->where('o.is_del', 0)->where('o.is_system_del', 0)->alias('o')->fetchSql(true)->select();
- $model = $model->join("(" . $sql . ") p", 'u.uid = p.uid', 'LEFT');
- $model = $model->where('u.uid', 'IN', $uid);
- $model = $model->field("u.*,from_unixtime(u.add_time,'%Y/%m/%d') as time,u.spread_count as childCount,u.pay_count as orderCount,p.numberCount");
- if (strlen(trim($keyword))) $model = $model->where('u.nickname|u.phone', 'like', "%$keyword%");
- $model = $model->group('u.uid');
- $model = $model->order($orderBy);
- $model = $model->page($page, $limit);
- $list = $model->select();
- if ($list) {
- $list = $list->toArray();
- foreach ($list as &$v) {
- // $orders = StoreOrder::where('paid', 1)
- // ->where('refund_status', 0)
- // ->where('is_del', 0)
- // ->where('uid', $v['uid'])
- // ->select();
- // $count = 0;
- // foreach ($orders as $vv) {
- // $product_ids = StoreCart::where('id', 'in', $vv['cart_id'])->select();
- // foreach ($product_ids as $vvv) {
- // $cates = StoreProductCate::where('product_id', $vvv['product_id'])->column('cate_id');
- // if (in_array(49, $cates)) {
- // $count += $vvv['cart_num'];
- // }
- // }
- // }
- $v['level_shop_num'] = Achievement::where('uid', $v['uid'])->where('from_uid', $v['uid'])->sum('achievement');
- }
- return $list;
- } else
- return [];
- }
- /**
- * 设置用户的上级关系
- * @param $uid 用户uid
- * @param $spreadUid 上级用户uid
- * @return User|bool
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws DbException
- */
- public static function setSpreadUid($uid, $spreadUid)
- {
- return UserSpread::setSpread($uid, $spreadUid);
- // 自己不能绑定自己为上级
- // if ($uid == $spreadUid) return false;
- // //TODO 获取后台分销类型
- // $storeBrokerageStatus = sys_config('store_brokerage_statu');
- // $storeBrokerageStatus = $storeBrokerageStatus ? $storeBrokerageStatus : 1;
- // if ($storeBrokerageStatus == 1) {
- // $spreadCount = self::where('uid', $spreadUid)->count();
- // if ($spreadCount) {
- // $spreadInfo = self::where('uid', $spreadUid)->find();
- // if ($spreadInfo->is_promoter) {
- // //TODO 只有扫码才可以获得推广权限
- // if (isset($wechatUser['isPromoter'])) $data['is_promoter'] = 1;
- // }
- // }
- // }
- // return self::where('uid', $uid)->update(['spread_uid' => $spreadUid, 'spread_time' => time()]);
- }
- /**
- * 判断上下级关系是否存在
- * @param $uid
- * @param $spreadUid
- * @return bool|int
- */
- public static function validSpread($uid, $spreadUid)
- {
- if (!$uid || !$spreadUid) return false;
- return self::where('uid', $uid)->where('spread_uid', $spreadUid)->count();
- }
- /**
- * H5用户注册
- * @param $account
- * @param $password
- * @param $spread
- * @return bool
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public static function register($account, $password, $trade_password, $spread, $site_id)
- {
- if (self::be(['account' => $account, 'site_id' => $site_id])) return self::setErrorInfo('用户已存在');
- $phone = mobile_check($account) ? $account : '';
- $email = mobile_check($account) ? '' : $account;
- $data['account'] = $account;
- $data['pwd'] = md5($password);
- $data['trade_pwd'] = md5(md5($trade_password));
- $data['phone'] = $phone;
- $data['email'] = $email;
- // if ($spread) {
- // $data['spread_uid'] = $spread;
- // $data['spread_time'] = time();
- // }
- $data['real_name'] = '';
- $data['birthday'] = 0;
- $data['card_id'] = '';
- $data['mark'] = '';
- $data['addres'] = '';
- $data['user_type'] = 'h5';
- $data['add_time'] = time();
- $data['add_ip'] = app('request')->ip();
- $data['last_time'] = time();
- $data['last_ip'] = app('request')->ip();
- $data['nickname'] = substr(md5($account . time()), 0, 12);
- $data['avatar'] = $data['headimgurl'] = sys_config('h5_avatar');
- $data['city'] = '';
- $data['language'] = '';
- $data['province'] = '';
- $data['country'] = '';
- $data['is_promoter'] = 1;
- $data['site_id'] = $site_id;
- self::beginTrans();
- $res2 = WechatUser::create($data);
- $data['uid'] = $res2->uid;
- $res1 = self::create($data);
- $res1 = $res1 && self::sendRegisterGift($res2->uid);
- $res = $res1 && $res2 && UserSpread::setSpread($data['uid'], $spread);
- self::checkTrans($res);
- return $res;
- }
- public static function sendRegisterGift($uid)
- {
- $gift = sys_config('register_gift', 0);
- if ($gift <= 0) return true;
- $res = UserMoney::incomeMoney($uid, 'LALA', $gift, 'register_gift', '注册赠送', '注册赠送LALA', 0, 1, false);
- return $res ?: self::setErrorInfo('发放注册奖失败');
- }
- /**
- * 密码修改
- * @param $account
- * @param $password
- * @return User|bool
- */
- public
- static function reset($account, $password, $site_id, $type = 1)
- {
- if (!self::be(['account' => $account])) return self::setErrorInfo('用户不存在');
- $count = self::where('account', $account)->where('site_id', $site_id)->where($type == 1 ? 'pwd' : 'trade_pwd', $type == 1 ? md5($password) : md5(md5($password)))->count();
- if ($count) return true;
- return self::where('account', $account)->where('site_id', $site_id)->update([$type == 1 ? 'pwd' : 'trade_pwd' => $type == 1 ? md5($password) : md5(md5($password))]);
- }
- /**
- * 获取手机号是否注册
- * @param $phone
- * @return bool
- */
- public
- static function checkPhone($phone, $site_id)
- {
- return self::be(['account' => $phone, 'site_id' => $site_id]);
- }
- /**
- * 获取推广人
- * @param $data 查询条件
- * @return array
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public
- static function getRankList($data)
- {
- switch ($data['type']) {
- case 'week':
- $startTime = strtotime('this week');
- $endTime = time();
- break;
- case 'month':
- $startTime = strtotime('last month');
- $endTime = time();
- break;
- }
- $list = self::alias('t0')
- ->field('t0 . uid,t0 . spread_uid,count(t1 . spread_uid) as count,t0 . add_time,t0 . nickname,t0 . avatar')
- ->join('user t1', 't0 . uid = t1 . spread_uid', 'LEFT')
- ->where('t1 . spread_uid', ' <> ', 0)
- ->order('count desc')
- ->order('t0 . uid desc')
- ->where('t1 . add_time', 'BETWEEN', [$startTime, $endTime])
- ->page($data['page'], $data['limit'])
- ->group('t0 . uid')
- ->select();
- return count($list) ? $list->toArray() : [];
- }
- /**
- * 获取佣金排行
- * @param $data
- * @return array
- */
- public
- static function brokerageRank($data)
- {
- $model = self::where('status', 1);
- switch ($data['type']) {
- case 'week':
- $model = $model->whereIn('uid', function ($query) {
- $query->name('user_bill')->where('category', 'now_money')->where('type', 'brokerage')
- ->whereWeek('add_time')->field('uid');
- });
- break;
- case 'month':
- $model = $model->whereIn('uid', function ($query) {
- $query->name('user_bill')->where('category', 'now_money')->where('type', 'brokerage')
- ->whereMonth('add_time')->field('uid');
- });
- break;
- }
- $users = $model->field('uid,nickname,avatar,brokerage_price')->order('brokerage_price desc')
- ->page((int)$data['page'], (int)$data['limit'])->select();
- return count($users) ? $users->toArray() : [];
- }
- /**
- * 获取当前用户的佣金排行位置
- * @param $uid
- * @return int
- */
- public
- static function currentUserRank($type, $brokerage_price)
- {
- $model = self::where('status', 1);
- switch ($type) {
- case 'week':
- $model = $model->whereIn('uid', function ($query) {
- $query->name('user_bill')->where('category', 'now_money')->where('type', 'brokerage')
- ->whereWeek('add_time')->field('uid');
- });
- break;
- case 'month':
- $model = $model->whereIn('uid', function ($query) {
- $query->name('user_bill')->where('category', 'now_money')->where('type', 'brokerage')
- ->whereMonth('add_time')->field('uid');
- });
- break;
- }
- return $model->where('brokerage_price', ' > ', $brokerage_price)->count('uid');
- }
- }
|