123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- namespace crmeb\subscribes;
- use app\models\user\User;
- use app\models\user\WechatUser;
- use think\facade\Cookie;
- use app\admin\model\system\SystemAttachment;
- use app\models\user\UserLevel;
- /**
- * 用户事件
- * Class UserSubscribe
- * @package crmeb\subscribes
- */
- class UserSubscribe
- {
- public function handle()
- {
- }
- /**
- * 管理员后台给用户添加金额
- * @param $event
- */
- public function onAdminAddMoney($event)
- {
- list($user, $money) = $event;
- //$user 用户信息
- //$money 添加的金额
- }
- /**
- * 微信授权成功后
- * @param $event
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function onWechatOauthAfter($event)
- {
- list($openid, $wechatInfo, $spreadId, $login_type, $site_id) = $event;
- if (!User::be(['uid' => $spreadId])) $spreadId = 0;
- $wechatInfo['nickname'] = filter_emoji($wechatInfo['nickname']);
- Cookie::set('is_login', 1);
- if (isset($wechatInfo['unionid']) && $wechatInfo['unionid'] != '' && ($uid = WechatUser::where('unionid', $wechatInfo['unionid'])->value('uid'))) {
- WechatUser::edit($wechatInfo, $uid, 'uid');
- if (!User::be(['uid' => $uid])) {
- $wechatInfo = WechatUser::where('uid', $uid)->find();
- User::setWechatUser($wechatInfo, $spreadId, $site_id);
- } else {
- if ($login_type) $wechatInfo['login_type'] = $login_type;
- User::updateWechatUser($wechatInfo, $uid);
- }
- } else if ($uid = WechatUser::where(['openid' => $wechatInfo['openid']])->value('uid')) {
- WechatUser::edit($wechatInfo, $uid, 'uid');
- if ($login_type) $wechatInfo['login_type'] = $login_type;
- User::updateWechatUser($wechatInfo, $uid);
- } else {
- if (isset($wechatInfo['subscribe_scene'])) unset($wechatInfo['subscribe_scene']);
- if (isset($wechatInfo['qr_scene'])) unset($wechatInfo['qr_scene']);
- if (isset($wechatInfo['qr_scene_str'])) unset($wechatInfo['qr_scene_str']);
- // $isLogin = request()->isLogin();
- // $bind = false;
- // if($isLogin){
- // $loginUid = request()->user();
- // $isUser = $loginUid ? request()->tokenData()->type === 'user' : false;
- // $bind = $loginUid && $isUser && !$loginUid->openid && !User::be(['openid' => $wechatInfo['openid']]);
- // //微信用户绑定 h5用户
- // if ($bind) {
- // $wechatInfo['uid'] = $loginUid->uid;
- // };
- // }
- $wechatInfo['site_id'] = $site_id;
- $wechatInfo = WechatUser::create($wechatInfo);
- // if ($isLogin && $bind)
- // User::where('uid', $wechatInfo['uid'])
- // ->limit(1)->update(['openid' => $wechatInfo['openid']]);
- // else
- User::setWechatUser($wechatInfo, $spreadId, $site_id);
- }
- $uid = WechatUser::openidToUid($openid, 'openid');
- // 设置推广关系
- User::setSpread($spreadId, $uid);
- User::where('uid', $uid)
- ->limit(1)->update(['last_time' => time(), 'last_ip' => app('request')->ip()]);
- }
- /**
- * 用户访问记录
- * @param $event
- */
- public function onInitLogin($event)
- {
- list($userInfo) = $event;
- $request = app('request');
- User::edit(['last_time' => time(), 'last_ip' => $request->ip()], $userInfo->uid, 'uid');
- }
- /**
- * 检查是否能成为会员
- * @param $event
- */
- public function onUserLevelAfter($event)
- {
- list($userUid) = $event;
- UserLevel::setLevelComplete($userUid);
- }
- }
|