123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\services\wechat;
- use app\jobs\user\UserJob;
- use app\services\BaseServices;
- use app\dao\wechat\WechatUserDao;
- use app\services\user\LoginServices;
- use app\services\user\UserServices;
- use crmeb\exceptions\AdminException;
- use crmeb\exceptions\AuthException;
- use crmeb\services\wechat\OfficialAccount;
- use think\exception\ValidateException;
- /**
- *
- * Class WechatUserServices
- * @package app\services\wechat
- * @mixin WechatUserDao
- */
- class WechatUserServices extends BaseServices
- {
- /**
- * WechatUserServices constructor.
- * @param WechatUserDao $dao
- */
- public function __construct(WechatUserDao $dao)
- {
- $this->dao = $dao;
- }
- public function getColumnUser($user_ids, $column, $key, string $user_type = 'wechat')
- {
- return $this->dao->getColumn([['uid', 'IN', $user_ids], ['user_type', '=', $user_type]], $column, $key);
- }
- /**
- * 获取单个微信用户
- * @param array $where
- * @param string $field
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getWechatUserInfo(array $where, $field = '*')
- {
- return $this->dao->getOne($where, $field);
- }
- /**
- * 用uid获得 微信openid
- * @param $uid
- * @return mixed
- */
- public function uidToOpenid(int $uid, string $userType = 'wechat')
- {
- return $this->dao->value(['uid' => $uid, 'user_type' => $userType], 'openid');
- }
- /**
- * 用openid获得uid
- * @param $openid
- * @param string $openidType
- * @return mixed
- */
- public function openidTouid($openid, $openidType = 'openid')
- {
- $uid = $this->dao->value([[$openidType, '=', $openid], ['user_type', '<>', 'h5']], 'uid');
- if (!$uid)
- throw new AdminException('对应的uid不存在');
- return $uid;
- }
- /**
- * 用户取消关注
- * @param $openid
- * @return bool
- */
- public function unSubscribe($openid)
- {
- if (!$this->dao->update($openid, ['subscribe' => 0, 'subscribe_time' => time()], 'openid'))
- throw new AdminException('取消关注失败');
- return true;
- }
- /**
- * 更新微信用户信息
- * @param $message
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function saveUserV1($message)
- {
- $openid = $message->FromUserName;
- if ($this->getWechatUserInfo(['openid' => $openid])) {
- $this->updateWecahtUser($openid);
- } else {
- $this->setWecahtUser($openid);
- }
- return true;
- }
- /**
- * 用户存在就更新 不存在就添加
- * @param $openid
- * @param int $spread_uid
- * @param string $phone
- * @return \app\services\user\User|array|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function saveUser($openid, $spread_uid = 0, $phone = '')
- {
- $is_new = false;
- /** @var UserServices $userServices */
- $userServices = app()->make(UserServices::class);
- $wechatUser = $this->getWechatUserInfo(['openid' => $openid]);
- if ($wechatUser && $wechatUser['uid']) {
- $userInfo = $userServices->getUserInfo((int)$wechatUser['uid']);
- //无关注只是授权生成用户
- if (!$wechatUser['subscribe_time'] && $wechatUser['uid']) {
- $is_new = true;
- $spread_uid = $userInfo['spread_uid'] ?? 0;
- }
- $this->updateWecahtUser($openid);
- } else {
- $userInfo = $this->setNewUser($openid, $spread_uid, ['phone' => $phone]);
- $is_new = true;
- }
- if ($is_new) {
- UserJob::dispatchDo('subscribeSpreadLottery', [(int)$userInfo['uid'], $openid, (int)$spread_uid]);
- }
- return $userInfo;
- }
- /**
- * 更新用户信息
- * @param $openid
- * @param string $phone
- * @return bool
- */
- public function updateWecahtUser($openid)
- {
- try {
- $userInfo = OfficialAccount::getUserInfo($openid);
- } catch (\Throwable $e) {
- $userInfo = [];
- }
- if (isset($userInfo['nickname']) && $userInfo['nickname']) {
- $userInfo['nickname'] = filter_emoji($userInfo['nickname']);
- } else {
- if (isset($userInfo['nickname'])) unset($userInfo['nickname']);
- }
- if (isset($userInfo['tagid_list'])) {
- $userInfo['tagid_list'] = implode(',', $userInfo['tagid_list']);
- }
- if ($userInfo && !$this->dao->update($openid, $userInfo, 'openid'))
- throw new AdminException('更新失败');
- return true;
- }
- /**
- * 写入微信用户信息
- * @param $openid
- * @param int $uid
- * @return bool
- */
- public function setWecahtUser($openid, int $uid = 0)
- {
- try {
- $wechatInfo = OfficialAccount::getUserInfo($openid);
- } catch (\Throwable $e) {
- $wechatInfo = [];
- }
- if (!isset($wechatInfo['openid']))
- throw new ValidateException('请关注公众号!');
- if (isset($wechatInfo['nickname']) && $wechatInfo['nickname']) {
- $wechatInfo['nickname'] = filter_emoji($wechatInfo['nickname']);
- } else {
- mt_srand();
- $wechatInfo['nickname'] = 'wx' . rand(100000, 999999);
- }
- if (isset($wechatInfo['tagid_list'])) {
- $wechatInfo['tagid_list'] = implode(',', $wechatInfo['tagid_list']);
- }
- $wechatInfo['user_type'] = 'wechat';
- $wechatInfo['uid'] = $uid;
- $wechatInfo['add_time'] = time();
- if ($wechatInfo && !$this->dao->save($wechatInfo)) {
- throw new AdminException('用户储存失败!');
- }
- return true;
- }
- /**
- * 添加新用户
- * @param $openid
- * @param int $spread_uid
- * @param array $append 追加字段
- * @return \app\services\user\User|\think\Model
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function setNewUser($openid, $spread_uid = 0, array $append = [])
- {
- try {
- $wechatInfo = OfficialAccount::getUserInfo($openid);
- } catch (\Throwable $e) {
- $wechatInfo = [];
- }
- if (!isset($wechatInfo['openid']))
- throw new ValidateException('请关注公众号!');
- if (isset($wechatInfo['nickname']) && $wechatInfo['nickname']) {
- $wechatInfo['nickname'] = $wechatInfo['nickname'];
- $wechatInfo['is_complete'] = 1;
- } else {
- //昵称不存在的信息不完整
- $wechatInfo['is_complete'] = 0;
- mt_srand();
- $wechatInfo['nickname'] = 'wx' . rand(100000, 999999);
- }
- if (isset($wechatInfo['tagid_list'])) {
- $wechatInfo['tagid_list'] = implode(',', $wechatInfo['tagid_list']);
- }
- $uid = 0;
- $userType = 'wechat';
- $userInfo = [];
- /** @var UserServices $userServices */
- $userServices = app()->make(UserServices::class);
- if (isset($append['phone']) && $append['phone']) {
- $userInfo = $userServices->getOne(['phone' => $append['phone']]);
- $wechatInfo['phone'] = $append['phone'];
- }
- if (!$userInfo) {
- if (isset($wechatInfo['unionid']) && $wechatInfo['unionid']) {
- $uid = $this->dao->value(['unionid' => $wechatInfo['unionid']], 'uid');
- if ($uid) {
- $userInfo = $userServices->getOne(['uid' => $uid]);
- }
- } else {
- $userInfo = $this->getAuthUserInfo($openid, $userType);
- }
- }
- if ($userInfo) {
- $uid = (int)$userInfo['uid'];
- if (isset($userInfo['status']) && !$userInfo['status'])
- throw new ValidateException('您已被禁止登录,请联系管理员');
- }
- $wechatInfo['user_type'] = $userType;
- if ($userInfo) {
- //更新用户表和wechat_user表
- //判断该类性用户在wechatUser中是否存在
- $wechatUser = $this->dao->getOne(['uid' => $uid, 'user_type' => $userType]);
- if ($wechatUser) {
- $wechatUser = $this->dao->getOne(['openid' => $openid]);
- }
- /** @var LoginServices $loginService */
- $loginService = app()->make(LoginServices::class);
- $this->transaction(function () use ($openid, $loginService, $wechatInfo, $userInfo, $uid, $userType, $spread_uid, $wechatUser) {
- $wechatInfo['code'] = $spread_uid;
- $wechatInfo['uid'] = $uid;
- $loginService->updateUserInfo($wechatInfo, $userInfo);
- if ($wechatUser) {
- //更换微信登录情况
- // if (isset($append['phone']) && $append['phone'] && $wechatUser['openid'] != $openid) {
- // throw new ValidateException('该手机号已被注册');
- // }
- if (!$this->dao->update($wechatUser['id'], $wechatInfo, 'id')) {
- throw new ValidateException('更新数据失败');
- }
- } else {
- if (!$this->dao->save($wechatInfo)) {
- throw new ValidateException('写入信息失败');
- }
- }
- });
- } else {
- //user表没有用户,wechat_user表没有用户创建新用户
- //不存在则创建用户
- $userInfo = $this->transaction(function () use ($openid, $userServices, $wechatInfo, $spread_uid, $userType) {
- $userInfo = $userServices->setUserInfo($wechatInfo, (int)$spread_uid, $userType);
- if (!$userInfo) {
- throw new AuthException('生成User用户失败!');
- }
- $wechatInfo['uid'] = $userInfo->uid;
- $wechatInfo['add_time'] = $userInfo->add_time;
- $wechatUser = $this->dao->getOne(['openid' => $openid]);
- if ($wechatUser) {
- if (!$this->dao->update($wechatUser['id'], $wechatInfo, 'id')) {
- throw new ValidateException('更新数据失败');
- }
- } else {
- if (!$this->dao->save($wechatInfo)) {
- throw new AuthException('生成微信用户失败!');
- }
- }
- return $userInfo;
- });
- }
- return $userInfo;
- }
- /**
- * 授权后获取用户信息
- * @param $openid
- * @param $user_type
- */
- public function getAuthUserInfo($openid, $user_type)
- {
- $user = [];
- //兼容老用户
- $uids = $this->dao->getColumn(['unionid|openid' => $openid, 'is_del' => 0], 'uid,user_type', 'user_type');
- if ($uids) {
- $uid = $uids[$user_type]['uid'] ?? 0;
- if (!$uid) {
- $ids = array_column($uids, 'uid');
- $uid = $ids[0];
- }
- /** @var UserServices $userServices */
- $userServices = app()->make(UserServices::class);
- $user = $userServices->getUserInfo($uid);
- if (isset($user['status']) && !$user['status'])
- throw new AuthException('您已被禁止登录,请联系管理员', 410020);
- }
- return $user;
- }
- /**
- * 更新微信用户信息
- * @param $event
- * @return bool
- */
- public function wechatUpdata($data)
- {
- [$uid, $userData] = $data;
- /** @var UserServices $userServices */
- $userServices = app()->make(UserServices::class);
- if (!$userInfo = $userServices->getUserInfo($uid)) {
- return false;
- }
- /** @var LoginServices $loginService */
- $loginService = app()->make(LoginServices::class);
- $loginService->updateUserInfo($userData, $userInfo);
- //更新用户信息
- /** @var WechatUserServices $wechatUser */
- $wechatUser = app()->make(WechatUserServices::class);
- $wechatUserInfo = [];
- if (isset($userData['nickname']) && $userData['nickname']) $wechatUserInfo['nickname'] = filter_emoji($userData['nickname'] ?? '');//姓名
- if (isset($userData['headimgurl']) && $userData['headimgurl']) $wechatUserInfo['headimgurl'] = $userData['headimgurl'] ?? '';//头像
- if (isset($userData['sex']) && $userData['sex']) $wechatUserInfo['sex'] = $userData['gender'] ?? '';//性别
- if (isset($userData['language']) && $userData['language']) $wechatUserInfo['language'] = $userData['language'] ?? '';//语言
- if (isset($userData['city']) && $userData['city']) $wechatUserInfo['city'] = $userData['city'] ?? '';//城市
- if (isset($userData['province']) && $userData['province']) $wechatUserInfo['province'] = $userData['province'] ?? '';//省份
- if (isset($userData['country']) && $userData['country']) $wechatUserInfo['country'] = $userData['country'] ?? '';//国家
- if (!empty($wechatUserInfo['nickname']) || !empty($wechatUserInfo['headimgurl'])) {
- $wechatUserInfo['is_complete'] = 1;
- } else {
- $wechatUserInfo['is_complete'] = 0;
- }
- if ($wechatUserInfo) {
- if (isset($userData['openid']) && $userData['openid'] && false === $wechatUser->update(['uid' => $userInfo['uid'], 'openid' => $userData['openid']], $wechatUserInfo)) {
- throw new ValidateException('更新失败');
- }
- }
- return true;
- }
- /**
- * 微信授权成功后
- * @param $event
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function wechatOauthAfter(array $data)
- {
- [$openid, $wechatInfo, $spread_uid, $login_type, $userType] = $data;
- /** @var UserServices $userServices */
- $userServices = app()->make(UserServices::class);
- if ($spread_uid && !$userServices->userExist((int)$spread_uid)) {
- $spread_uid = 0;
- }
- //删除多余字段
- unset($wechatInfo['subscribe_scene'], $wechatInfo['qr_scene'], $wechatInfo['qr_scene_str']);
- if ($login_type) {
- $wechatInfo['login_type'] = $login_type;
- }
- if (!isset($wechatInfo['nickname']) || !$wechatInfo['nickname']) {
- if (isset($wechatInfo['phone']) && $wechatInfo['phone']) {
- $wechatInfo['nickname'] = substr_replace($wechatInfo['phone'], '****', 3, 4);
- } else {
- mt_srand();
- $wechatInfo['nickname'] = 'wx' . rand(100000, 999999);
- }
- } else {
- $wechatInfo['is_complete'] = 1;
- $wechatInfo['nickname'] = filter_emoji($wechatInfo['nickname']);
- }
- //统一用户处理:1:同一手机号用户 2:开放平台 3:openid
- $userInfo = [];
- if (isset($wechatInfo['phone']) && $wechatInfo['phone']) {
- $userInfo = $userServices->getOne(['phone' => $wechatInfo['phone']]);
- }
- if (!$userInfo) {
- if (isset($wechatInfo['unionid']) && $wechatInfo['unionid']) {
- $uid = $this->dao->value(['unionid' => $wechatInfo['unionid'], 'is_del' => 0], 'uid');
- if ($uid) {
- $userInfo = $userServices->getOne(['uid' => $uid]);
- }
- } else {
- $userInfo = $this->getAuthUserInfo($openid, $userType);
- }
- }
- $uid = (int)($userInfo['uid'] ?? 0);
- $wechatInfo['user_type'] = $userType;
- //user表存在和wechat_user表同时存在
- return $this->transaction(function () use ($openid, $uid, $userInfo, $wechatInfo, $userServices, $spread_uid, $userType) {
- $wechatInfo['spread_uid'] = $spread_uid;
- $wechatInfo['uid'] = $uid;
- if ($userInfo) {
- if (isset($userInfo['status']) && !$userInfo['status'])
- throw new ValidateException('您已被禁止登录,请联系管理员');
- //更新用户表
- /** @var LoginServices $loginService */
- $loginService = app()->make(LoginServices::class);
- $loginService->updateUserInfo($wechatInfo, $userInfo);
- } else {
- //新增用户表
- $userInfo = $userServices->setUserInfo($wechatInfo, (int)$spread_uid, $userType);
- if (!$userInfo) {
- throw new AuthException('生成User用户失败!');
- }
- //用户绑定客户事件
- if (!empty($wechatInfo['unionid'])) {
- event('user.client', [$userInfo['uid'], $wechatInfo['unionid']]);
- }
- //用户绑定成员事件
- if (!empty($userInfo['phone'])) {
- event('user.work', [$userInfo['uid'], $userInfo['phone']]);
- }
- }
- $uid = $userInfo['uid'];
- $wechatInfo['uid'] = $userInfo->uid;
- $wechatInfo['add_time'] = $userInfo->add_time;
- //判断该类性用户在wechatUser中是否存在
- $wechatUser = $this->dao->getOne(['uid' => $uid, 'user_type' => $userType, 'is_del' => 0]);
- if (!$wechatUser) {
- $wechatUser = $this->dao->getOne(['openid' => $openid, 'is_del' => 0]);
- }
- if ($wechatUser) {
- //更换微信登录情况
- // if (isset($wechatInfo['phone']) && $wechatInfo['phone'] && $wechatUser['openid'] != $openid) {
- // throw new ValidateException('该手机号已被注册');
- // }
- if (!$this->dao->update($wechatUser['id'], $wechatInfo, 'id')) {
- throw new ValidateException('更新数据失败');
- }
- } else {
- if (!$this->dao->save($wechatInfo)) {
- throw new AuthException('生成微信用户失败!');
- }
- }
- return $userInfo;
- });
- }
- /**
- * 更新用户信息(同步)
- * @param array $openids
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function syncWechatUser(array $openids)
- {
- if (!$openids) {
- return [];
- }
- $wechatUser = $this->dao->getList([['openid', 'in', $openids]]);
- $noBeOpenids = $openids;
- if ($wechatUser) {
- $beOpenids = array_column($wechatUser, 'openid');
- $noBeOpenids = array_diff($openids, $beOpenids);
- if ($beOpenids) {
- $data = [];
- foreach ($beOpenids as $openid) {
- try {
- $info = OfficialAccount::getUserInfo($openid);
- } catch (\Throwable $e) {
- $info = [];
- }
- if (!$info) continue;
- $data['subscribe'] = $info['subscribe'] ?? 1;
- if (($info['subscribe'] ?? 1) == 1) {
- $data['unionid'] = $info['unionid'] ?? '';
- $data['nickname'] = $info['nickname'] ?? '';
- $data['sex'] = $info['sex'] ?? 0;
- $data['language'] = $info['language'] ?? '';
- $data['city'] = $info['city'] ?? '';
- $data['province'] = $info['province'] ?? '';
- $data['country'] = $info['country'] ?? '';
- $data['headimgurl'] = $info['headimgurl'] ?? '';
- $data['subscribe_time'] = $info['subscribe_time'] ?? '';
- $data['groupid'] = $info['groupid'] ?? 0;
- $data['remark'] = $info['remark'] ?? '';
- $data['tagid_list'] = isset($info['tagid_list']) && $info['tagid_list'] ? implode(',', $info['tagid_list']) : '';
- }
- $this->dao->update(['openid' => $info['openid']], $data);
- }
- }
- }
- return $noBeOpenids;
- }
- }
|