截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

UserServer.php 8.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\api\server;
  20. use app\api\logic\DistributionLogic;
  21. use app\api\logic\LoginLogic;
  22. use app\common\model\user\User;
  23. use app\common\model\Client_;
  24. use app\common\model\user\UserAuth;
  25. use app\common\server\storage\Driver as StorageDriver;
  26. use app\common\server\UrlServer;
  27. use app\common\server\ConfigServer;
  28. use think\facade\Db;
  29. use think\Exception;
  30. class UserServer
  31. {
  32. /**
  33. * User: 意象信息科技 lr
  34. * Desc: 通过小程序创建用户信息
  35. * @param $response
  36. * @param $client
  37. * @return array|\PDOStatement|string|\think\Model|null
  38. * @throws Exception
  39. */
  40. public static function createUser($response, $client)
  41. {
  42. $user_info = [];
  43. try {
  44. $openid = $response['openid'];
  45. $unionid = $response['unionid'] ?? '';
  46. $avatar_url = $response['headimgurl'] ?? '';
  47. $nickname = $response['nickname'] ?? '';
  48. Db::startTrans();
  49. // 获取存储引擎
  50. $config = [
  51. 'default' => ConfigServer::get('storage', 'default', 'local'),
  52. 'engine' => ConfigServer::get('storage_engine')
  53. ];
  54. $time = time(); //创建时间
  55. $avatar = ''; //头像路径
  56. if (empty($avatar_url)) {
  57. $avatar = ConfigServer::get('website', 'user_image', '');
  58. } else {
  59. if ($config['default'] == 'local') {
  60. $file_name = md5($openid . $time) . '.jpeg';
  61. $avatar = download_file($avatar_url, 'uploads/user/avatar/', $file_name);
  62. } else {
  63. $avatar = 'uploads/user/avatar/' . md5($openid . $time) . '.jpeg';
  64. $StorageDriver = new StorageDriver($config);
  65. if (!$StorageDriver->fetch($avatar_url, $avatar)) {
  66. throw new Exception( '头像保存失败:'. $StorageDriver->getError());
  67. }
  68. }
  69. }
  70. $data = [
  71. 'nickname' => $nickname,
  72. 'sn' => create_user_sn(),
  73. 'avatar' => $avatar,
  74. 'create_time' => $time,
  75. 'distribution_code' => generate_invite_code(),//分销邀请码
  76. 'is_distribution' => DistributionLogic::isDistributionMember(),
  77. 'client' => $client,
  78. 'is_new_user' => 1
  79. ];
  80. if (empty($nickname)) {
  81. $data['nickname'] = '用户'.$data['sn'];
  82. }
  83. $user = User::create($data);
  84. $user_id = $user->id;
  85. $data = [
  86. 'user_id' => $user_id,
  87. 'openid' => $openid,
  88. 'create_time' => $time,
  89. 'unionid' => $unionid,
  90. 'client' => $client,
  91. ];
  92. UserAuth::create($data);
  93. //生成会员分销扩展表
  94. DistributionLogic::createUserDistribution($user_id);
  95. // 生成分销基础信息表
  96. \app\common\logic\DistributionLogic::add($user_id);
  97. //注册赠送
  98. LoginLogic::registerAward($user_id);
  99. Db::commit();
  100. $user_info = User::field(['id', 'nickname', 'avatar', 'level', 'disable', 'distribution_code','is_new_user'])
  101. ->where(['id' => $user_id])
  102. ->find();
  103. if (empty($user_info['avatar'])) {
  104. $user_info['avatar'] = UrlServer::getFileUrl(ConfigServer::get('website', 'user_image', ''));
  105. } else {
  106. $user_info['avatar'] = UrlServer::getFileUrl($user_info['avatar']);
  107. }
  108. } catch (Exception $e) {
  109. Db::rollback();
  110. throw new Exception($e->getMessage());
  111. }
  112. return $user_info;
  113. }
  114. /**
  115. * 更新用户信息
  116. * @param $response
  117. * @param $client
  118. * @param $user_id
  119. * @return array|\PDOStatement|string|\think\Model|null
  120. */
  121. public static function updateUser($response, $client, $user_id)
  122. {
  123. $time = time();
  124. try {
  125. $openid = $response['openid'];
  126. $unionid = $response['unionid'] ?? '';
  127. $avatar_url = $response['headimgurl'] ?? '';
  128. $nickname = $response['nickname'] ?? '';
  129. Db::startTrans();
  130. //ios,android
  131. if (in_array($client, [Client_::ios, Client_::android])) {
  132. UserAuth::where(['openid' => $openid])
  133. ->update(['client' => $client]);
  134. }
  135. //用户已存在,但是无该端的授权信息,保存数据
  136. $user_auth_id = UserAuth::where(['user_id' => $user_id, 'openid' => $openid])
  137. ->value('id');
  138. if (empty($user_auth_id)) {
  139. $data = [
  140. 'create_time' => $time,
  141. 'openid' => $openid,
  142. 'unionid' => $unionid,
  143. 'user_id' => $user_id,
  144. 'client' => $client,
  145. ];
  146. UserAuth::create($data);
  147. }
  148. $user_info = User::alias('u')
  149. ->field(['u.nickname', 'u.avatar', 'u.level', 'u.id', 'au.unionid'])
  150. ->join('user_auth au', 'u.id=au.user_id')
  151. ->where(['au.openid' => $openid])
  152. ->find();
  153. //无头像需要更新头像
  154. if (empty($user_info['avatar'])) {
  155. // 获取存储引擎
  156. $config = [
  157. 'default' => ConfigServer::get('storage', 'default', 'local'),
  158. 'engine' => ConfigServer::get('storage_engine')
  159. ];
  160. $avatar = ''; //头像路径
  161. if ($config['default'] == 'local') {
  162. $file_name = md5($openid . $time) . '.jpeg';
  163. $avatar = download_file($avatar_url, 'uploads/user/avatar/', $file_name);
  164. } else {
  165. $avatar = 'uploads/user/avatar/' . md5($openid . $time) . '.jpeg';
  166. $StorageDriver = new StorageDriver($config);
  167. if (!$StorageDriver->fetch($avatar_url, $avatar)) {
  168. throw new Exception( '头像保存失败:'. $StorageDriver->getError());
  169. }
  170. }
  171. $data['avatar'] = $avatar;
  172. $data['update_time'] = $time;
  173. $data['nickname'] = $nickname;
  174. User::where(['id' => $user_info['id']])
  175. ->update($data);
  176. }
  177. //之前无unionid需要更新
  178. if (empty($user_info['unionid']) && isset($unionid)) {
  179. $data = [];
  180. $data['unionid'] = $unionid;
  181. $data['update_time'] = $time;
  182. UserAuth::where(['user_id' => $user_info['id']])
  183. ->update($data);
  184. }
  185. $user_info = User::where(['id' => $user_info['id']])
  186. ->field(['id', 'nickname', 'avatar', 'level', 'disable', 'distribution_code','is_new_user'])
  187. ->find();
  188. if (empty($user_info['avatar'])) {
  189. $user_info['avatar'] = UrlServer::getFileUrl(ConfigServer::get('website', 'user_image', ''));
  190. } else {
  191. $user_info['avatar'] = UrlServer::getFileUrl($user_info['avatar']);
  192. }
  193. Db::commit();
  194. } catch (Exception $e) {
  195. Db::rollback();
  196. throw new Exception($e->getMessage());
  197. }
  198. return $user_info;
  199. }
  200. }