123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
-
-
- namespace app\shopapi\server;
-
-
- use app\api\logic\DistributionLogic;
- use app\common\model\user\User;
- use app\common\model\Client_;
- use app\common\model\user\UserAuth;
- use app\common\server\storage\Driver as StorageDriver;
- use app\common\server\UrlServer;
- use app\common\server\ConfigServer;
- use think\facade\Db;
- use think\Exception;
-
-
- class UserServer
- {
-
- /**
- * User: 意象信息科技 lr
- * Desc: 通过小程序创建用户信息
- * @param $response
- * @param $client
- * @return array|\PDOStatement|string|\think\Model|null
- * @throws Exception
- */
- public static function createUser($response, $client)
- {
- $user_info = [];
- try {
- $openid = $response['openid'];
- $unionid = $response['unionid'] ?? '';
- $avatar_url = $response['headimgurl'] ?? '';
- $nickname = $response['nickname'] ?? '';
-
- Db::startTrans();
-
- // 获取存储引擎
- $config = [
- 'default' => ConfigServer::get('storage', 'default', 'local'),
- 'engine' => ConfigServer::get('storage_engine')
- ];
-
- $time = time(); //创建时间
- $avatar = ''; //头像路径
-
- if (empty($avatar_url)) {
- $avatar = ConfigServer::get('website', 'user_image', '');
- } else {
- if ($config['default'] == 'local') {
- $file_name = md5($openid . $time) . '.jpeg';
- $avatar = download_file($avatar_url, 'uploads/user/avatar/', $file_name);
- } else {
- $avatar = 'uploads/user/avatar/' . md5($openid . $time) . '.jpeg';
- $StorageDriver = new StorageDriver($config);
- if (!$StorageDriver->fetch($avatar_url, $avatar)) {
- throw new Exception( '头像保存失败:'. $StorageDriver->getError());
- }
- }
- }
-
- $data = [
- 'nickname' => $nickname,
- 'sn' => create_user_sn(),
- 'avatar' => $avatar,
- 'create_time' => $time,
- 'distribution_code' => generate_invite_code(),//分销邀请码
- 'is_distribution' => DistributionLogic::isDistributionMember(),
- 'client' => $client
- ];
-
- if (empty($nickname)) {
- $data['nickname'] = '用户'.$data['sn'];
- }
-
- $user = User::create($data);
- $user_id = $user->id;
-
- $data = [
- 'user_id' => $user_id,
- 'openid' => $openid,
- 'create_time' => $time,
- 'unionid' => $unionid,
- 'client' => $client,
- ];
-
- UserAuth::create($data);
-
- //生成会员分销扩展表
- DistributionLogic::createUserDistribution($user_id);
-
- // 生成分销基础信息表
- \app\common\logic\DistributionLogic::add($user_id);
-
- Db::commit();
-
- $user_info = User::field(['id', 'nickname', 'avatar', 'level', 'disable', 'distribution_code'])
- ->where(['id' => $user_id])
- ->find();
- if (empty($user_info['avatar'])) {
- $user_info['avatar'] = UrlServer::getFileUrl(ConfigServer::get('website', 'user_image', ''));
- } else {
- $user_info['avatar'] = UrlServer::getFileUrl($user_info['avatar']);
- }
-
- } catch (Exception $e) {
- Db::rollback();
- throw new Exception($e->getMessage());
- }
-
- return $user_info;
- }
-
- /**
- * 更新用户信息
- * @param $response
- * @param $client
- * @param $user_id
- * @return array|\PDOStatement|string|\think\Model|null
- */
- public static function updateUser($response, $client, $user_id)
- {
- $time = time();
- try {
-
- $openid = $response['openid'];
- $unionid = $response['unionid'] ?? '';
- $avatar_url = $response['headimgurl'] ?? '';
- $nickname = $response['nickname'] ?? '';
-
- Db::startTrans();
-
- //ios,android
- if (in_array($client, [Client_::ios, Client_::android])) {
- UserAuth::where(['openid' => $openid])
- ->update(['client' => $client]);
- }
-
- //用户已存在,但是无该端的授权信息,保存数据
- $user_auth_id = UserAuth::where(['user_id' => $user_id, 'openid' => $openid])
- ->value('id');
-
- if (empty($user_auth_id)) {
- $data = [
- 'create_time' => $time,
- 'openid' => $openid,
- 'unionid' => $unionid,
- 'user_id' => $user_id,
- 'client' => $client,
- ];
- UserAuth::create($data);
- }
-
- $user_info = User::alias('u')
- ->field(['u.nickname', 'u.avatar', 'u.level', 'u.id', 'au.unionid'])
- ->join('user_auth au', 'u.id=au.user_id')
- ->where(['au.openid' => $openid])
- ->find();
-
- //无头像需要更新头像
- if (empty($user_info['avatar'])) {
- // 获取存储引擎
- $config = [
- 'default' => ConfigServer::get('storage', 'default', 'local'),
- 'engine' => ConfigServer::get('storage_engine')
- ];
-
- $avatar = ''; //头像路径
- if ($config['default'] == 'local') {
- $file_name = md5($openid . $time) . '.jpeg';
- $avatar = download_file($avatar_url, 'uploads/user/avatar/', $file_name);
- } else {
- $avatar = 'uploads/user/avatar/' . md5($openid . $time) . '.jpeg';
- $StorageDriver = new StorageDriver($config);
- if (!$StorageDriver->fetch($avatar_url, $avatar)) {
- throw new Exception( '头像保存失败:'. $StorageDriver->getError());
- }
- }
-
- $data['avatar'] = $avatar;
- $data['update_time'] = $time;
- $data['nickname'] = $nickname;
- User::where(['id' => $user_info['id']])
- ->update($data);
- }
-
- //之前无unionid需要更新
- if (empty($user_info['unionid']) && isset($unionid)) {
- $data = [];
- $data['unionid'] = $unionid;
- $data['update_time'] = $time;
- UserAuth::where(['user_id' => $user_info['id']])
- ->update($data);
- }
-
- $user_info = User::where(['id' => $user_info['id']])
- ->field(['id', 'nickname', 'avatar', 'level', 'disable', 'distribution_code'])
- ->find();
-
- if (empty($user_info['avatar'])) {
- $user_info['avatar'] = UrlServer::getFileUrl(ConfigServer::get('website', 'user_image', ''));
- } else {
- $user_info['avatar'] = UrlServer::getFileUrl($user_info['avatar']);
- }
- Db::commit();
-
- } catch (Exception $e) {
- Db::rollback();
- throw new Exception($e->getMessage());
- }
-
- return $user_info;
- }
- }
|