截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

UserServer.php 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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\shopapi\server;
  20. use app\api\logic\DistributionLogic;
  21. use app\common\model\user\User;
  22. use app\common\model\Client_;
  23. use app\common\model\user\UserAuth;
  24. use app\common\server\storage\Driver as StorageDriver;
  25. use app\common\server\UrlServer;
  26. use app\common\server\ConfigServer;
  27. use think\facade\Db;
  28. use think\Exception;
  29. class UserServer
  30. {
  31. /**
  32. * User: 意象信息科技 lr
  33. * Desc: 通过小程序创建用户信息
  34. * @param $response
  35. * @param $client
  36. * @return array|\PDOStatement|string|\think\Model|null
  37. * @throws Exception
  38. */
  39. public static function createUser($response, $client)
  40. {
  41. $user_info = [];
  42. try {
  43. $openid = $response['openid'];
  44. $unionid = $response['unionid'] ?? '';
  45. $avatar_url = $response['headimgurl'] ?? '';
  46. $nickname = $response['nickname'] ?? '';
  47. Db::startTrans();
  48. // 获取存储引擎
  49. $config = [
  50. 'default' => ConfigServer::get('storage', 'default', 'local'),
  51. 'engine' => ConfigServer::get('storage_engine')
  52. ];
  53. $time = time(); //创建时间
  54. $avatar = ''; //头像路径
  55. if (empty($avatar_url)) {
  56. $avatar = ConfigServer::get('website', 'user_image', '');
  57. } else {
  58. if ($config['default'] == 'local') {
  59. $file_name = md5($openid . $time) . '.jpeg';
  60. $avatar = download_file($avatar_url, 'uploads/user/avatar/', $file_name);
  61. } else {
  62. $avatar = 'uploads/user/avatar/' . md5($openid . $time) . '.jpeg';
  63. $StorageDriver = new StorageDriver($config);
  64. if (!$StorageDriver->fetch($avatar_url, $avatar)) {
  65. throw new Exception( '头像保存失败:'. $StorageDriver->getError());
  66. }
  67. }
  68. }
  69. $data = [
  70. 'nickname' => $nickname,
  71. 'sn' => create_user_sn(),
  72. 'avatar' => $avatar,
  73. 'create_time' => $time,
  74. 'distribution_code' => generate_invite_code(),//分销邀请码
  75. 'is_distribution' => DistributionLogic::isDistributionMember(),
  76. 'client' => $client
  77. ];
  78. if (empty($nickname)) {
  79. $data['nickname'] = '用户'.$data['sn'];
  80. }
  81. $user = User::create($data);
  82. $user_id = $user->id;
  83. $data = [
  84. 'user_id' => $user_id,
  85. 'openid' => $openid,
  86. 'create_time' => $time,
  87. 'unionid' => $unionid,
  88. 'client' => $client,
  89. ];
  90. UserAuth::create($data);
  91. //生成会员分销扩展表
  92. DistributionLogic::createUserDistribution($user_id);
  93. // 生成分销基础信息表
  94. \app\common\logic\DistributionLogic::add($user_id);
  95. Db::commit();
  96. $user_info = User::field(['id', 'nickname', 'avatar', 'level', 'disable', 'distribution_code'])
  97. ->where(['id' => $user_id])
  98. ->find();
  99. if (empty($user_info['avatar'])) {
  100. $user_info['avatar'] = UrlServer::getFileUrl(ConfigServer::get('website', 'user_image', ''));
  101. } else {
  102. $user_info['avatar'] = UrlServer::getFileUrl($user_info['avatar']);
  103. }
  104. } catch (Exception $e) {
  105. Db::rollback();
  106. throw new Exception($e->getMessage());
  107. }
  108. return $user_info;
  109. }
  110. /**
  111. * 更新用户信息
  112. * @param $response
  113. * @param $client
  114. * @param $user_id
  115. * @return array|\PDOStatement|string|\think\Model|null
  116. */
  117. public static function updateUser($response, $client, $user_id)
  118. {
  119. $time = time();
  120. try {
  121. $openid = $response['openid'];
  122. $unionid = $response['unionid'] ?? '';
  123. $avatar_url = $response['headimgurl'] ?? '';
  124. $nickname = $response['nickname'] ?? '';
  125. Db::startTrans();
  126. //ios,android
  127. if (in_array($client, [Client_::ios, Client_::android])) {
  128. UserAuth::where(['openid' => $openid])
  129. ->update(['client' => $client]);
  130. }
  131. //用户已存在,但是无该端的授权信息,保存数据
  132. $user_auth_id = UserAuth::where(['user_id' => $user_id, 'openid' => $openid])
  133. ->value('id');
  134. if (empty($user_auth_id)) {
  135. $data = [
  136. 'create_time' => $time,
  137. 'openid' => $openid,
  138. 'unionid' => $unionid,
  139. 'user_id' => $user_id,
  140. 'client' => $client,
  141. ];
  142. UserAuth::create($data);
  143. }
  144. $user_info = User::alias('u')
  145. ->field(['u.nickname', 'u.avatar', 'u.level', 'u.id', 'au.unionid'])
  146. ->join('user_auth au', 'u.id=au.user_id')
  147. ->where(['au.openid' => $openid])
  148. ->find();
  149. //无头像需要更新头像
  150. if (empty($user_info['avatar'])) {
  151. // 获取存储引擎
  152. $config = [
  153. 'default' => ConfigServer::get('storage', 'default', 'local'),
  154. 'engine' => ConfigServer::get('storage_engine')
  155. ];
  156. $avatar = ''; //头像路径
  157. if ($config['default'] == 'local') {
  158. $file_name = md5($openid . $time) . '.jpeg';
  159. $avatar = download_file($avatar_url, 'uploads/user/avatar/', $file_name);
  160. } else {
  161. $avatar = 'uploads/user/avatar/' . md5($openid . $time) . '.jpeg';
  162. $StorageDriver = new StorageDriver($config);
  163. if (!$StorageDriver->fetch($avatar_url, $avatar)) {
  164. throw new Exception( '头像保存失败:'. $StorageDriver->getError());
  165. }
  166. }
  167. $data['avatar'] = $avatar;
  168. $data['update_time'] = $time;
  169. $data['nickname'] = $nickname;
  170. User::where(['id' => $user_info['id']])
  171. ->update($data);
  172. }
  173. //之前无unionid需要更新
  174. if (empty($user_info['unionid']) && isset($unionid)) {
  175. $data = [];
  176. $data['unionid'] = $unionid;
  177. $data['update_time'] = $time;
  178. UserAuth::where(['user_id' => $user_info['id']])
  179. ->update($data);
  180. }
  181. $user_info = User::where(['id' => $user_info['id']])
  182. ->field(['id', 'nickname', 'avatar', 'level', 'disable', 'distribution_code'])
  183. ->find();
  184. if (empty($user_info['avatar'])) {
  185. $user_info['avatar'] = UrlServer::getFileUrl(ConfigServer::get('website', 'user_image', ''));
  186. } else {
  187. $user_info['avatar'] = UrlServer::getFileUrl($user_info['avatar']);
  188. }
  189. Db::commit();
  190. } catch (Exception $e) {
  191. Db::rollback();
  192. throw new Exception($e->getMessage());
  193. }
  194. return $user_info;
  195. }
  196. }