| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163 |
- <?php
- namespace app\common\repositories\user;
- use app\common\dao\BaseDao;
- use app\common\dao\user\UserDao;
- use app\common\model\user\User;
- use app\common\model\user\UserGroup;
- use app\common\model\wechat\WechatUser;
- use app\common\repositories\BaseRepository;
- use app\common\repositories\store\coupon\StoreCouponRepository;
- use app\common\repositories\store\order\StoreOrderRepository;
- use app\common\repositories\system\attachment\AttachmentRepository;
- use app\common\repositories\wechat\RoutineQrcodeRepository;
- use ln\exceptions\AuthException;
- use ln\jobs\AutoUserPosterJob;
- use ln\jobs\SendNewPeopleCouponJob;
- use ln\jobs\UserBrokerageLevelJob;
- use ln\services\JwtTokenService;
- use ln\services\QrcodeService;
- use ln\services\UploadService;
- use ln\services\WechatService;
- use FormBuilder\Exception\FormBuilderException;
- use FormBuilder\Factory\Elm;
- use FormBuilder\Form;
- use Swoole\Coroutine;
- use Swoole\Coroutine\Channel;
- use think\exception\ValidateException;
- use think\facade\Queue;
- use think\model\Relation;
- use function GuzzleHttp\Psr7\str;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\facade\Cache;
- use think\facade\Config;
- use think\facade\Db;
- use think\facade\Route;
- use think\Model;
- /**
- * Class UserRepository
- * @package app\common\repositories\user
- * @author zfy
- * @day 2020-04-28
- * @mixin UserDao
- */
- class UserRepository extends BaseRepository
- {
- /**
- * UserRepository constructor.
- * @param UserDao $dao
- */
- public function __construct(UserDao $dao)
- {
- $this->dao = $dao;
- }
- public function promoter($uid)
- {
- return $this->dao->update($uid, ['is_promoter' => 1, 'promoter_time' => date('Y-m-d H:i:s')]);
- }
- /**
- * @param $id
- * @return Form
- * @throws DataNotFoundException
- * @throws DbException
- * @throws FormBuilderException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020-05-09
- */
- public function userForm($id)
- {
- $user = $this->dao->get($id);
- $user['uid'] = (string)$user['uid'];
- return Elm::createForm(Route::buildUrl('systemUserUpdate', compact('id'))->build(), [
- Elm::input('uid', '会员 ID', '')->disabled(true)->required(true),
- Elm::input('real_name', '真实姓名'),
- Elm::input('phone', '手机号'),
- Elm::date('birthday', '生日'),
- Elm::input('card_id', '身份证'),
- Elm::input('addres', '用户地址'),
- Elm::textarea('mark', '备注'),
- Elm::select('group_id', '会员分组')->options(function () {
- $data = app()->make(UserGroupRepository::class)->allOptions();
- $options = [['value' => 0, 'label' => '请选择']];
- foreach ($data as $value => $label) {
- $options[] = compact('value', 'label');
- }
- return $options;
- }),
- Elm::selectMultiple('label_id', '会员标签')->options(function () {
- $data = app()->make(UserLabelRepository::class)->allOptions();
- $options = [];
- foreach ($data as $value => $label) {
- $value = (string)$value;
- $options[] = compact('value', 'label');
- }
- return $options;
- }),
- Elm::radio('is_promoter', '推广员', 1)->options([
- ['value' => 0, 'label' => '关闭'],
- ['value' => 1, 'label' => '开启'],
- ])->required()
- ])->setTitle('编辑')->formData($user->toArray());
- }
- /**
- * @param array $where
- * @param $page
- * @param $limit
- * @return array
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020-05-07
- */
- public function getList(array $where, $page, $limit)
- {
- $query = $this->dao->search($where)->with(['spread' => function ($query) {
- $query->field('uid,nickname,spread_uid');
- }, 'group']);
- $make = app()->make(UserLabelRepository::class);
- $count = $query->count($this->dao->getPk());
- $list = $query->page($page, $limit)->select()->each(function ($item) use ($make) {
- return $item->label = count($item['label_id']) ? $make->labels($item['label_id']) : [];
- });
- return compact('count', 'list');
- }
- public function promoterCount()
- {
- $total = $this->dao->search(['is_promoter' => 1])
- ->field('sum(spread_count) as spread_count,sum(spread_pay_count) as spread_pay_count,sum(spread_pay_price) as spread_pay_price,count(uid) as total_user,sum(brokerage_price) as brokerage_price')->find();
- $total = $total ? $total->toArray() : ['spread_count' => 0, 'spread_pay_count' => 0, 'spread_pay_price' => 0, 'total_user' => 0, 'brokerage_price' => 0];
- $total['total_extract'] = app()->make(UserExtractRepository::class)->getTotalExtractPrice();
- return [
- [
- 'className' => 'el-icon-s-goods',
- 'count' => $total['total_user'] ?? 0,
- 'name' => '分销员人数(人)'
- ],
- [
- 'className' => 'el-icon-s-order',
- 'count' => $total['spread_count'] ?? 0,
- 'name' => '推广人数(人)'
- ],
- [
- 'className' => 'el-icon-s-cooperation',
- 'count' => (int)($total['spread_pay_count'] ?? 0),
- 'name' => '推广订单数'
- ],
- [
- 'className' => 'el-icon-s-cooperation',
- 'count' => (float)($total['spread_pay_price'] ?? 0),
- 'name' => '推广订单金额'
- ],
- [
- 'className' => 'el-icon-s-cooperation',
- 'count' => (float)($total['total_extract'] ?? 0),
- 'name' => '已提现金额(元)'
- ],
- [
- 'className' => 'el-icon-s-cooperation',
- 'count' => (float)($total['brokerage_price'] ?? 0),
- 'name' => '未提现金额(元)'
- ],
- ];
- }
- public function promoterList(array $where, $page, $limit)
- {
- $where['is_promoter'] = 1;
- $query = $this->dao->search($where)->with(['spread' => function ($query) {
- $query->field('uid,nickname,spread_uid');
- }, 'brokerage' => function ($query) {
- $query->field('brokerage_level,brokerage_name,brokerage_icon');
- }]);
- $count = $query->count($this->dao->getPk());
- $list = $query->page($page, $limit)->select()->toArray();
- if (count($list)) {
- $promoterInfo = app()->make(UserExtractRepository::class)->getPromoterInfo(array_column($list, 'uid'));
- if (count($promoterInfo)) {
- $promoterInfo = array_combine(array_column($promoterInfo, 'uid'), $promoterInfo);
- }
- foreach ($list as $k => $item) {
- $list[$k]['total_extract_price'] = $promoterInfo[$item['uid']]['total_price'] ?? 0;
- $list[$k]['total_extract_num'] = $promoterInfo[$item['uid']]['total_num'] ?? 0;
- $list[$k]['total_brokerage_price'] = (float)bcadd($item['brokerage_price'], $list[$k]['total_extract_num'], 2);
- }
- }
- return compact('list', 'count');
- }
- public function merList(string $keyword, $page, $limit)
- {
- $query = $this->dao->searchMerUser($keyword);
- $count = $query->count($this->dao->getPk());
- $list = $query->page($page, $limit)->setOption('field', [])->field('uid,nickname,avatar,user_type,sex')->select();
- return compact('count', 'list');
- }
- /**
- * @param $id
- * @return Form
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @throws FormBuilderException
- * @author zfy
- * @day 2020-05-07
- */
- public function changeGroupForm($id)
- {
- $isArray = is_array($id);
- if (!$isArray)
- $user = $this->dao->get($id);
- /** @var UserGroupRepository $make */
- $data = app()->make(UserGroupRepository::class)->allOptions();
- return Elm::createForm(Route::buildUrl($isArray ? 'systemUserBatchChangeGroup' : 'systemUserChangeGroup', $isArray ? [] : compact('id'))->build(), [
- Elm::hidden('ids', $isArray ? $id : [$id]),
- Elm::select('group_id', '用户分组', $isArray ? '' : $user->group_id)->options(function () use ($data) {
- $options = [['label' => '不设置', 'value' => '0']];
- foreach ($data as $value => $label) {
- $options[] = compact('value', 'label');
- }
- return $options;
- })
- ])->setTitle('修改用户分组');
- }
- /**
- * @param $id
- * @return Form
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @throws FormBuilderException
- * @author zfy
- * @day 2020-05-07
- */
- public function changeLabelForm($id)
- {
- $isArray = is_array($id);
- if (!$isArray)
- $user = $this->dao->get($id);
- /** @var UserLabelRepository $make */
- $data = app()->make(UserLabelRepository::class)->allOptions();
- return Elm::createForm(Route::buildUrl($isArray ? 'systemUserBatchChangeLabel' : 'systemUserChangeLabel', $isArray ? [] : compact('id'))->build(), [
- Elm::hidden('ids', $isArray ? $id : [$id]),
- Elm::selectMultiple('label_id', '用户标签', $isArray ? [] : $user->label_id)->options(function () use ($data) {
- $options = [];
- foreach ($data as $value => $label) {
- $value = (string)$value;
- $options[] = compact('value', 'label');
- }
- return $options;
- })
- ])->setTitle('修改用户标签');
- }
- /**
- * @param $id
- * @return Form
- * @throws FormBuilderException
- * @author zfy
- * @day 2020-05-07
- */
- public function changeNowMoneyForm($id)
- {
- return Elm::createForm(Route::buildUrl('systemUserChangeNowMoney', compact('id'))->build(), [
- Elm::radio('type', '修改余额', 1)->options([
- ['label' => '增加', 'value' => 1],
- ['label' => '减少', 'value' => 0],
- ])->required(),
- Elm::number('now_money', '金额')->required()->min(0)
- ])->setTitle('修改用户余额');
- }
- public function changeIntegralForm($id)
- {
- return Elm::createForm(Route::buildUrl('systemUserChangeIntegral', compact('id'))->build(), [
- Elm::radio('type', '修改积分', 1)->options([
- ['label' => '增加', 'value' => 1],
- ['label' => '减少', 'value' => 0],
- ])->required(),
- Elm::number('now_money', '积分')->required()->min(0)
- ])->setTitle('修改用户积分');
- }
- /**
- * @param $id
- * @param $adminId
- * @param $type
- * @param $nowMoney
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020-05-07
- */
- public function changeNowMoney($id, $adminId, $type, $nowMoney)
- {
- $user = $this->dao->get($id);
- Db::transaction(function () use ($id, $adminId, $user, $type, $nowMoney) {
- $balance = $type == 1 ? bcadd($user->now_money, $nowMoney, 2) : bcsub($user->now_money, $nowMoney, 2);
- $user->save(['now_money' => $balance]);
- /** @var UserBillRepository $make */
- $make = app()->make(UserBillRepository::class);
- if ($type == 1) {
- $make->incBill($id, 'now_money', 'sys_inc_money', [
- 'link_id' => $adminId,
- 'status' => 1,
- 'title' => '系统增加余额',
- 'number' => $nowMoney,
- 'mark' => '系统增加了' . floatval($nowMoney) . '余额',
- 'balance' => $balance
- ]);
- } else {
- $make->decBill($id, 'now_money', 'sys_dec_money', [
- 'link_id' => $adminId,
- 'status' => 1,
- 'title' => '系统减少余额',
- 'number' => $nowMoney,
- 'mark' => '系统减少了' . floatval($nowMoney) . '余额',
- 'balance' => $balance
- ]);
- }
- });
- }
- /**
- * @param $id
- * @param $adminId
- * @param $type
- * @param $integral
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020-05-07
- */
- public function changeIntegral($id, $adminId, $type, $integral)
- {
- $user = $this->dao->get($id);
- Db::transaction(function () use ($id, $adminId, $user, $type, $integral) {
- $integral = (int)$integral;
- $balance = $type == 1 ? bcadd($user->integral, $integral, 0) : bcsub($user->integral, $integral, 0);
- $user->save(['integral' => $balance]);
- /** @var UserBillRepository $make */
- $make = app()->make(UserBillRepository::class);
- if ($type == 1) {
- $make->incBill($id, 'integral', 'sys_inc', [
- 'link_id' => $adminId,
- 'status' => 1,
- 'title' => '系统增加积分',
- 'number' => $integral,
- 'mark' => '系统增加了' . $integral . '积分',
- 'balance' => $balance
- ]);
- } else {
- $make->decBill($id, 'integral', 'sys_dec', [
- 'link_id' => $adminId,
- 'status' => 1,
- 'title' => '系统减少积分',
- 'number' => $integral,
- 'mark' => '系统减少了' . $integral . '积分',
- 'balance' => $balance
- ]);
- }
- });
- }
- /**
- * @param $password
- * @return false|string|null
- * @author zfy
- * @day 2020/6/22
- */
- public function encodePassword($password)
- {
- return password_hash($password, PASSWORD_BCRYPT);
- }
- /**
- * @param WechatUser $wechatUser
- * @return BaseDao|array|Model|null
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020-04-28
- */
- public function syncWechatUser(WechatUser $wechatUser, $userType = 'wechat')
- {
- $user = $this->dao->wechatUserIdBytUser($wechatUser->wechat_user_id);
- $request = request();
- if ($user) {
- $user->save([
- 'nickname' => $wechatUser['nickname'] ?: '',
- 'avatar' => $wechatUser['headimgurl'] ?: '',
- 'sex' => $wechatUser['sex'] ?: 0,
- 'last_time' => date('Y-m-d H:i:s'),
- 'last_ip' => $request->ip(),
- ]);
- } else {
- $user = $this->create($userType, [
- 'account' => 'wx' . $wechatUser->wechat_user_id . time(),
- 'wechat_user_id' => $wechatUser->wechat_user_id,
- 'pwd' => $this->encodePassword($this->dao->defaultPwd()),
- 'nickname' => $wechatUser['nickname'] ?: '',
- 'avatar' => $wechatUser['headimgurl'] ?: '',
- 'sex' => $wechatUser['sex'] ?: 0,
- 'spread_uid' => 0,
- 'is_promoter' => 0,
- 'last_time' => date('Y-m-d H:i:s'),
- 'last_ip' => $request->ip()
- ]);
- }
- return $user;
- }
- /**
- * @param string $type
- * @param array $userInfo
- * @return BaseDao|Model
- * @author zfy
- * @day 2020-04-28
- */
- public function create(string $type, array $userInfo)
- {
- $userInfo['user_type'] = $type;
- $user = $this->dao->create($userInfo);
- try {
- Queue::push(SendNewPeopleCouponJob::class, $user->uid);
- } catch (\Exception $e) {
- }
- $user->isNew = true;
- return $user;
- }
- /**
- * @param User $user
- * @return array
- * @author zfy
- * @day 2020-04-29
- */
- public function createToken(User $user)
- {
- $service = new JwtTokenService();
- $exp = intval(Config::get('admin.user_token_valid_exp', 15));
- $token = $service->createToken($user->uid, 'user', strtotime("+ {$exp}day"));
- $this->cacheToken($token['token'], $token['out']);
- return $token;
- }
- /**
- * //TODO 登录成功后
- * @param User $user
- * @author zfy
- * @day 2020/6/22
- */
- public function loginAfter(User $user)
- {
- $user->last_time = date('Y-m-d H:i:s', time());
- $user->last_ip = request()->ip();
- $user->save();
- }
- /**
- * @param string $token
- * @param int $exp
- * @author zfy
- * @day 2020-04-29
- */
- public function cacheToken(string $token, int $exp)
- {
- Cache::store('file')->set('user_' . $token, time() + $exp, $exp);
- }
- /**
- * @param string $token
- * @author zfy
- * @day 2020-04-29
- */
- public function checkToken(string $token)
- {
- $cache = Cache::store('file');
- $has = $cache->has('user_' . $token);
- if (!$has)
- throw new AuthException('无效的token');
- $lastTime = $cache->get('user_' . $token);
- if (($lastTime + (intval($cache->get('admin.user_token_valid_exp', 15))) * 24 * 60 * 60) < time())
- throw new AuthException('token 已过期');
- }
- /**
- * @param string $token
- * @author zfy
- * @day 2020-04-29
- */
- public function updateToken(string $token)
- {
- Cache::store('file')->set('user_' . $token, time(), intval(Config::get('admin.user_token_valid_exp', 15)) * 24 * 60 * 60);
- }
- /**
- * @param string $token
- * @author zfy
- * @day 2020-04-29
- */
- public function clearToken(string $token)
- {
- Cache::delete('user_' . $token);
- }
- /**
- * @param string $key
- * @param string $code
- * @author zfy
- * @day 2020/6/1
- */
- public function checkCode(string $key, string $code)
- {
- $_code = Cache::get('am_captcha' . $key);
- if (!$_code) {
- throw new ValidateException('验证码过期');
- }
- if (strtolower($_code) != strtolower($code)) {
- throw new ValidateException('验证码错误');
- }
- //删除code
- Cache::delete('am_captcha' . $key);
- }
- /**
- * @param string $code
- * @return string
- * @author zfy
- * @day 2020/6/1
- */
- public function createLoginKey(string $code)
- {
- $key = uniqid(microtime(true), true);
- Cache::set('am_captcha' . $key, $code, Config::get('admin.captcha_exp', 5) * 60);
- return $key;
- }
- public function registr(string $phone, ?string $pwd, $user_type = 'h5')
- {
- $pwd = $pwd ? $this->encodePassword($pwd) : $this->encodePassword($this->dao->defaultPwd());
- $data = [
- 'account' => $phone,
- 'pwd' => $pwd,
- 'nickname' => substr($phone, 0, 3) . '****' . substr($phone, 7, 4),
- 'avatar' => '',
- 'phone' => $phone,
- 'last_ip' => app('request')->ip()
- ];
- return $this->create($user_type, $data);
- }
- public function routineSpreadImage(User $user)
- {
- //小程序
- $name = md5('surt' . $user['uid'] . $user['is_promoter'] . date('Ymd')) . '.jpg';
- $attachmentRepository = app()->make(AttachmentRepository::class);
- $imageInfo = $attachmentRepository->getWhere(['attachment_name' => $name]);
- $spreadBanner = systemGroupData('spread_banner');
- if (!count($spreadBanner)) return [];
- $siteName = systemConfig('site_name');
- $siteUrl = systemConfig('site_url');
- $uploadType = (int)systemConfig('upload_type') ?: 1;
- $urlCode = app()->make(QrcodeService::class)->getRoutineQrcodePath($name, 'pages/index/index', 'spid=' . $user['uid']);
- if (!$urlCode)
- throw new ValidateException('二维码生成失败');
- $filelink = [
- 'Bold' => 'public/font/Alibaba-PuHuiTi-Regular.otf',
- 'Normal' => 'public/font/Alibaba-PuHuiTi-Regular.otf',
- ];
- if (!file_exists($filelink['Bold'])) throw new ValidateException('缺少字体文件Bold');
- if (!file_exists($filelink['Normal'])) throw new ValidateException('缺少字体文件Normal');
- $resRoutine = true;
- foreach ($spreadBanner as $key => &$item) {
- $posterInfo = '海报生成失败:(';
- $config = array(
- 'image' => array(
- array(
- 'url' => $urlCode, //二维码资源
- 'stream' => 0,
- 'left' => 114,
- 'top' => 790,
- 'right' => 0,
- 'bottom' => 0,
- 'width' => 120,
- 'height' => 120,
- 'opacity' => 100
- )
- ),
- 'text' => array(
- array(
- 'text' => $user['nickname'],
- 'left' => 250,
- 'top' => 840,
- 'fontPath' => $filelink['Bold'], //字体文件
- 'fontSize' => 16, //字号
- 'fontColor' => '40,40,40', //字体颜色
- 'angle' => 0,
- ),
- array(
- 'text' => '邀请您加入' . $siteName,
- 'left' => 250,
- 'top' => 880,
- 'fontPath' => $filelink['Normal'], //字体文件
- 'fontSize' => 16, //字号
- 'fontColor' => '40,40,40', //字体颜色
- 'angle' => 0,
- )
- ),
- 'background' => $item['pic']
- );
- $resRoutine = $resRoutine && $posterInfo = setSharePoster($config, 'routine/spread/poster');
- if (!is_array($posterInfo)) throw new ValidateException($posterInfo);
- $posterInfo['dir'] = tidy_url($posterInfo['dir'], 0, $siteUrl);
- if ($resRoutine) {
- $attachmentRepository->create($uploadType, -1, $user->uid, [
- 'attachment_category_id' => 0,
- 'attachment_name' => $posterInfo['name'],
- 'attachment_src' => $posterInfo['dir']
- ]);
- $item['poster'] = $posterInfo['dir'];
- }
- }
- return $spreadBanner;
- }
- public function wxQrcode(User $user)
- {
- $name = md5('uwx_i' . $user['uid'] . date('Ymd')) . '.jpg';
- $key = 'home_' . $user['uid'];
- return app()->make(QrcodeService::class)->getWechatQrcodePath($name, rtrim(systemConfig('site_url'), '/') . '?spread=' . $user['uid'] . '&spid=' . $user['uid'], false, $key);
- }
- public function mpQrcode(User $user)
- {
- $name = md5('surt_i' . $user['uid'] . $user['is_promoter'] . date('Ymd')) . '.jpg';
- return app()->make(QrcodeService::class)->getRoutineQrcodePath($name, 'pages/index/index', 'spid=' . $user['uid']);
- }
- public function wxSpreadImage(User $user)
- {
- $name = md5('uwx' . $user['uid'] . $user['is_promoter'] . date('Ymd')) . '.jpg';
- $spreadBanner = systemGroupData('spread_banner');
- if (!count($spreadBanner)) return [];
- $siteName = systemConfig('site_name');
- $attachmentRepository = app()->make(AttachmentRepository::class);
- $imageInfo = $attachmentRepository->getWhere(['attachment_name' => $name]);
- $siteUrl = rtrim(systemConfig('site_url'), '/');
- $uploadType = (int)systemConfig('upload_type') ?: 1;
- $resWap = true;
- //检测远程文件是否存在
- if (isset($imageInfo['attachment_src']) && strstr($imageInfo['attachment_src'], 'http') !== false && curl_file_exist($imageInfo['attachment_src']) === false) {
- $imageInfo->delete();
- $imageInfo = null;
- }
- if (!$imageInfo) {
- $codeUrl = $siteUrl . '?spread=' . $user['uid'] . '&spid=' . $user['uid'];//二维码链接
- if (systemConfig('open_wechat_share')) {
- $qrcode = WechatService::create(false)->qrcodeService();
- $codeUrl = $qrcode->forever('_scan_url_home_' . $user['uid'])->url;
- }
- $imageInfo = app()->make(QrcodeService::class)->getQRCodePath($codeUrl, $name);
- if (is_string($imageInfo)) throw new ValidateException('二维码生成失败');
- $imageInfo['dir'] = tidy_url($imageInfo['dir'], null, $siteUrl);
- $attachmentRepository->create(systemConfig('upload_type') ?: 1, -1, $user->uid, [
- 'attachment_category_id' => 0,
- 'attachment_name' => $imageInfo['name'],
- 'attachment_src' => $imageInfo['dir']
- ]);
- $urlCode = $imageInfo['dir'];
- } else $urlCode = $imageInfo['attachment_src'];
- $filelink = [
- 'Bold' => 'public/font/Alibaba-PuHuiTi-Regular.otf',
- 'Normal' => 'public/font/Alibaba-PuHuiTi-Regular.otf',
- ];
- if (!file_exists($filelink['Bold'])) throw new ValidateException('缺少字体文件Bold');
- if (!file_exists($filelink['Normal'])) throw new ValidateException('缺少字体文件Normal');
- foreach ($spreadBanner as $key => &$item) {
- $posterInfo = '海报生成失败:(';
- $config = array(
- 'image' => array(
- array(
- 'url' => $urlCode, //二维码资源
- 'stream' => 0,
- 'left' => 114,
- 'top' => 790,
- 'right' => 0,
- 'bottom' => 0,
- 'width' => 120,
- 'height' => 120,
- 'opacity' => 100
- )
- ),
- 'text' => array(
- array(
- 'text' => $user['nickname'],
- 'left' => 250,
- 'top' => 840,
- 'fontPath' => $filelink['Bold'], //字体文件
- 'fontSize' => 16, //字号
- 'fontColor' => '40,40,40', //字体颜色
- 'angle' => 0,
- ),
- array(
- 'text' => '邀请您加入' . $siteName,
- 'left' => 250,
- 'top' => 880,
- 'fontPath' => $filelink['Normal'], //字体文件
- 'fontSize' => 16, //字号
- 'fontColor' => '40,40,40', //字体颜色
- 'angle' => 0,
- )
- ),
- 'background' => $item['pic']
- );
- $resWap = $resWap && $posterInfo = setSharePoster($config, 'wap/spread/poster');
- if (!is_array($posterInfo)) throw new ValidateException('海报生成失败');
- $posterInfo['dir'] = tidy_url($posterInfo['dir'], null, $siteUrl);
- $attachmentRepository->create($uploadType, -1, $user->uid, [
- 'attachment_category_id' => 0,
- 'attachment_name' => $posterInfo['name'],
- 'attachment_src' => $posterInfo['dir']
- ]);
- if ($resWap) {
- $item['wap_poster'] = $posterInfo['dir'];
- }
- }
- return $spreadBanner;
- }
- public function getUsername($uid)
- {
- return User::getDB()->where('uid', $uid)->value('nickname');
- }
- /**
- * @param $uid
- * @param $inc
- * @param string $type
- * @author zfy
- * @day 2020/6/22
- */
- public function incBrokerage($uid, $inc, $type = '+')
- {
- $weekKey = 'b_top_' . date('Y-m');
- $moneyKey = 'b_top_' . monday();
- //TODO 佣金周榜
- $brokerage = Cache::zscore($weekKey, $uid);
- $brokerage = $type == '+' ? bcadd($brokerage, $inc, 2) : bcsub($brokerage, $inc, 2);
- Cache::zadd($weekKey, $brokerage, $uid);
- //TODO 佣金月榜
- $brokerage = Cache::zscore($moneyKey, $uid);
- $brokerage = $type == '+' ? bcadd($brokerage, $inc, 2) : bcsub($brokerage, $inc, 2);
- Cache::zadd($moneyKey, $brokerage, $uid);
- }
- public function brokerageWeekTop($uid, $page, $limit)
- {
- $key = 'b_top_' . monday();
- return $this->topList($key, $page, $limit) + ['position' => $this->userPosition($key, $uid)];
- }
- public function brokerageMonthTop($uid, $page, $limit)
- {
- $key = 'b_top_' . date('Y-m');
- return $this->topList($key, $page, $limit) + ['position' => $this->userPosition($key, $uid)];
- }
- /**
- * //TODO 绑定上下级关系
- * @param User $user
- * @param int $spreadUid
- * @throws DbException
- * @author zfy
- * @day 2020/6/22
- */
- public function bindSpread(User $user, int $spreadUid)
- {
- if ($spreadUid && !$user->spread_uid && $user->uid != $spreadUid && ($spread = $this->dao->get($spreadUid)) && $spread->spread_uid != $user->uid) {
- $config = systemConfig(['extension_limit', 'extension_limit_day', 'integral_user_give']);
- Db::transaction(function () use ($spread, $spreadUid, $user, $config) {
- $user->spread_uid = $spreadUid;
- $user->spread_time = date('Y-m-d H:i:s');
- if ($config['extension_limit'] && $config['extension_limit_day']) {
- $user->spread_limit = date('Y-m-d H:i:s', strtotime('+ ' . $config['extension_limit_day'] . ' day'));
- }
- $spread->spread_count++;
- if ($config['integral_user_give'] > 0 && $user->isNew) {
- $integral = (int)$config['integral_user_give'];
- $spread->integral += $integral;
- app()->make(UserBillRepository::class)->incBill($spreadUid, 'integral', 'spread', [
- 'link_id' => $user->uid,
- 'status' => 1,
- 'title' => '邀请好友',
- 'number' => $integral,
- 'mark' => '邀请好友奖励' . $integral . '积分',
- 'balance' => $spread->integral
- ]);
- }
- $spread->save();
- $user->save();
- //TODO 推广人月榜
- Cache::zincrby('s_top_' . date('Y-m'), 1, $spreadUid);
- //TODO 推广人周榜
- Cache::zincrby('s_top_' . monday(), 1, $spreadUid);
- });
- Queue::push(UserBrokerageLevelJob::class, ['uid' => $spreadUid, 'type' => 'spread_user', 'inc' => 1]);
- }
- }
- public function userPosition($key, $uid)
- {
- $index = Cache::zrevrank($key, $uid);
- if ($index === false)
- return 0;
- else
- return $index + 1;
- }
- public function topList($key, $page, $limit)
- {
- $res = Cache::zrevrange($key, ($page - 1) * $limit, $limit, true);
- $ids = array_keys($res);
- $index = array_flip($ids);
- $count = Cache::zcard($key);
- $list = count($ids) ? $this->dao->users($ids, 'uid,avatar,nickname')->toArray() : [];
- foreach ($list as $k => $v) {
- $list[$k]['count'] = $res[$v['uid']] ?? 0;
- }
- $sort = array_column($list, 'count');
- array_multisort($sort, SORT_DESC, $list);
- return compact('count', 'list');
- }
- public function spreadWeekTop($page, $limit)
- {
- $key = 's_top_' . monday();
- return $this->topList($key, $page, $limit);
- }
- public function spreadMonthTop($page, $limit)
- {
- $key = 's_top_' . date('Y-m');
- return $this->topList($key, $page, $limit);
- }
- /**
- * @param $uid
- * @param $nickname
- * @param $sort
- * @param $page
- * @param $limit
- * @return array
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020/6/22
- */
- public function getOneLevelList($uid, $nickname, $sort, $page, $limit)
- {
- $query = $this->search(['spread_uid' => $uid, 'nickname' => $nickname, 'sort' => $sort]);
- $count = $query->count();
- $list = $query->setOption('field', [])->field('uid,avatar,nickname,pay_count,pay_price,spread_count,spread_time')->page($page, $limit)->select();
- return compact('list', 'count');
- }
- /**
- * @param $uid
- * @param $nickname
- * @param $sort
- * @param $page
- * @param $limit
- * @return array
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020/6/22
- */
- public function getTwoLevelList($uid, $nickname, $sort, $page, $limit)
- {
- $ids = $this->dao->getSubIds($uid);
- if (count($ids)) {
- $query = $this->search(['spread_uids' => $ids, 'nickname' => $nickname, 'sort' => $sort]);
- $count = $query->count();
- $list = $query->setOption('field', [])->field('uid,avatar,nickname,pay_count,pay_price,spread_count,spread_time')->page($page, $limit)->select();
- } else {
- $list = [];
- $count = 0;
- }
- return compact('list', 'count');
- }
- public function getLevelList($uid, array $where, $page, $limit)
- {
- if (!$where['level']) {
- $ids = $this->dao->getSubIds($uid);
- $ids[] = $uid;
- $where['spread_uids'] = $ids;
- } else if ($where['level'] == 2) {
- $ids = $this->dao->getSubIds($uid);
- if (!count($ids)) return ['list' => [], 'count' => 0];
- $where['spread_uids'] = $ids;
- } else {
- $where['spread_uid'] = $uid;
- }
- $query = $this->search($where);
- $count = $query->count();
- $list = $query->setOption('field', [])->field('uid,avatar,nickname,is_promoter,pay_count,pay_price,spread_count,create_time,spread_time,spread_limit')->page($page, $limit)->select();
- return compact('list', 'count');
- }
- /**
- * @param $uid
- * @param $page
- * @param $limit
- * @param array $where
- * @return array
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020/6/26
- */
- public function subOrder($uid, $page, $limit, array $where = [])
- {
- if (isset($where['level'])) {
- if (!$where['level']) {
- $ids = $this->dao->getSubIds($uid);
- $subIds = $ids ? $this->dao->getSubAllIds($ids) : [];
- } else if ($where['level'] == 2) {
- $ids = $this->dao->getSubIds($uid);
- $subIds = $ids ? $this->dao->getSubAllIds($ids) : [];
- $ids = [];
- } else if ($where['level'] == -1) {
- $ids = [];
- $subIds = [];
- } else {
- $ids = $this->dao->getSubIds($uid);
- $subIds = [];
- }
- } else {
- $ids = $this->dao->getSubIds($uid);
- $subIds = $ids ? $this->dao->getSubAllIds($ids) : [];
- }
- $all = array_unique(array_merge($ids, $subIds));
- $all[] = -1;
- $query = app()->make(StoreOrderRepository::class)->usersOrderQuery($where, $all, (!isset($where['level']) || !$where['level'] || $where['level'] == -1) ? $uid : 0);
- $count = $query->count();
- $list = $query->page($page, $limit)->field('uid,order_sn,pay_time,extension_one,extension_two,is_selfbuy')->with(['user' => function ($query) {
- $query->field('avatar,nickname,uid');
- }])->select()->toArray();
- foreach ($list as $k => $item) {
- if ($item['is_selfbuy']) {
- if ($item['uid'] == $uid) {
- $list[$k]['brokerage'] = $item['extension_one'];
- } else if (in_array($item['uid'], $ids)) {
- $list[$k]['brokerage'] = $item['extension_two'];
- } else {
- $list[$k]['brokerage'] = 0;
- }
- } else {
- $list[$k]['brokerage'] = in_array($item['uid'], $ids) ? $item['extension_one'] : $item['extension_two'];
- }
- unset($list[$k]['extension_one'], $list[$k]['extension_two']);
- }
- return compact('count', 'list');
- }
- /**
- * @param User $user
- * @return User
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020/7/2
- */
- public function mainUser(User $user): User
- {
- if (!$user->main_uid || $user->uid == $user->main_uid) return $user;
- $switchUser = $this->dao->get($user->main_uid);
- if (!$switchUser) return $user;
- if ($user->wechat_user_id && !$switchUser->wechat_user_id) {
- $switchUser->wechat_user_id = $user->wechat_user_id;
- $switchUser->save();
- }
- return $switchUser;
- }
- public function switchUser(User $user, $uid)
- {
- if ($user->uid == $uid || !$this->dao->existsWhere(['uid' => $uid, 'phone' => $user->phone]))
- throw new ValidateException('操作失败');
- $this->dao->update($user->uid, ['main_uid' => $uid]);
- $switchUser = $this->dao->get($uid);
- return $switchUser;
- }
- public function returnToken($user, $tokenInfo)
- {
- $user = $user->hidden(['label_id', 'group_id', 'main_uid', 'pwd', 'addres', 'card_id', 'last_time', 'last_ip', 'create_time', 'mark', 'status', 'spread_uid', 'spread_time', 'real_name', 'birthday', 'brokerage_price'])->toArray();
- return [
- 'token' => $tokenInfo['token'],
- 'exp' => $tokenInfo['out'],
- 'user' => $user
- ];
- }
- public function switchBrokerage(User $user, $brokerage)
- {
- $user->now_money = bcadd($user->now_money, $brokerage, 2);
- $user->brokerage_price = bcsub($user->brokerage_price, $brokerage, 2);
- Db::transaction(function () use ($brokerage, $user) {
- $user->save();
- app()->make(UserBillRepository::class)->incBill($user->uid, 'now_money', 'brokerage', [
- 'link_id' => 0,
- 'status' => 1,
- 'title' => '佣金转入余额',
- 'number' => $brokerage,
- 'mark' => '成功转入余额' . floatval($brokerage) . '元',
- 'balance' => $user->now_money
- ]);
- app()->make(UserBillRepository::class)->decBill($user->uid, 'brokerage', 'now_money', [
- 'link_id' => 0,
- 'status' => 1,
- 'title' => '佣金转入余额',
- 'number' => $brokerage,
- 'mark' => '成功转入余额' . floatval($brokerage) . '元',
- 'balance' => $user->brokerage_price
- ]);
- });
- }
- public function rmLabel($id)
- {
- return $this->search(['label_id' => $id])->update([
- 'label_id' => Db::raw('trim(BOTH \',\' FROM replace(CONCAT(\',\',label_id,\',\'),\',' . $id . ',\',\',\'))')
- ]);
- }
- public function changeSpreadForm($id)
- {
- $user = $this->dao->get($id);
- $form = Elm::createForm(Route::buildUrl('systemUserSpreadChange', compact('id'))->build(), [
- [
- 'type' => 'span',
- 'title' => '用户昵称',
- 'children' => [$user->nickname]
- ], [
- 'type' => 'span',
- 'title' => '上级推荐人 Id',
- 'children' => [$user->spread ? (string)$user->spread->uid : '无']
- ], [
- 'type' => 'span',
- 'title' => '上级推荐人昵称',
- 'children' => [$user->spread ? (string)$user->spread->nickname : '无']
- ], Elm::frameImage('spid', '上级推荐人', '/' . config('admin.admin_prefix') . '/setting/referrerList?field=spid')->prop('srcKey', 'src')->value($user->spread ? [
- 'src' => $user->spread->avatar,
- 'id' => $user->spread->uid,
- ] : [])->modal(['modal' => false])->width('896px')->height('480px'),
- ]);
- return $form->setTitle('修改推荐人');
- }
- public function changeSpread($uid, $spread_id, $admin = 0)
- {
- $spreadLogRepository = app()->make(UserSpreadLogRepository::class);
- $user = $this->dao->get($uid);
- if ($user->spread_uid == $spread_id)
- return;
- $config = systemConfig(['extension_limit', 'extension_limit_day']);
- Db::transaction(function () use ($config, $user, $spreadLogRepository, $spread_id, $admin) {
- $old = $user->spread_uid ?: 0;
- $spreadLogRepository->add($user->uid, $spread_id, $old, $admin);
- $user->spread_time = date('Y-m-d H:i:s');
- if ($config['extension_limit'] && $config['extension_limit_day']) {
- $user->spread_limit = date('Y-m-d H:i:s', strtotime('+ ' . $config['extension_limit_day'] . ' day'));
- }
- $user->spread_uid = $spread_id;
- if ($spread_id) {
- $this->dao->incSpreadCount($spread_id);
- }
- if ($old) {
- $this->dao->decSpreadCount($old);
- }
- $user->save();
- });
- }
- public function syncSpreadStatus()
- {
- if (systemConfig('extension_limit')) {
- $this->dao->syncSpreadStatus();
- }
- }
- /**
- * TODO 积分增加
- * @param int $uid
- * @param int $number
- * @param $title
- * @param $type
- * @param $data
- * @author Qinii
- * @day 6/9/21
- */
- public function incIntegral(int $uid,int $number,$title,$type,$data)
- {
- Db::transaction(function() use($uid,$number,$title,$type,$data){
- $user = $this->dao->get($uid);
- $user->integral = $user->integral + $number;
- $user->save();
- app()->make(UserBillRepository::class)
- ->incBill($uid, 'integral', $type,
- [
- 'link_id' => 0,
- 'status' => 1,
- 'title' => $title,
- 'number' => $data['number'],
- 'mark' => $data['mark'],
- 'balance' =>$data['balance'],
- ]);
- });
- }
- }
|