|
@@ -1,5 +1,8 @@
|
|
|
package com.tourism.webadmin.app.website.controller;
|
|
|
|
|
|
+import cn.binarywang.wx.miniapp.api.WxMaService;
|
|
|
+import cn.binarywang.wx.miniapp.api.WxMaUserService;
|
|
|
+import cn.binarywang.wx.miniapp.bean.WxMaPhoneNumberInfo;
|
|
|
import cn.dev33.satoken.annotation.SaIgnore;
|
|
|
import cn.dev33.satoken.session.SaSession;
|
|
|
import cn.dev33.satoken.stp.StpUtil;
|
|
@@ -46,6 +49,7 @@ import jakarta.servlet.http.HttpServletRequest;
|
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
|
import jakarta.validation.Valid;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import me.chanjar.weixin.common.error.WxErrorException;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.dromara.sms4j.api.entity.SmsResponse;
|
|
|
import org.dromara.sms4j.core.factory.SmsFactory;
|
|
@@ -96,6 +100,8 @@ public class LoginToWebsiteController {
|
|
|
private SessionCacheHelper cacheHelper;
|
|
|
@Autowired
|
|
|
private UpDownloaderFactory upDownloaderFactory;
|
|
|
+ @Autowired
|
|
|
+ private WxMaService wxMaService;
|
|
|
|
|
|
private static final String SHOW_NAME_FIELD = "showName";
|
|
|
private static final String HEAD_IMAGE_URL_FIELD = "headImageUrl";
|
|
@@ -201,7 +207,8 @@ public class LoginToWebsiteController {
|
|
|
@PostMapping("/doLoginBySms")
|
|
|
public ResponseResult<JSONObject> doLoginBySms(
|
|
|
@MyRequestBody String loginMoblie,
|
|
|
- @MyRequestBody String smsCode) throws UnsupportedEncodingException
|
|
|
+ @MyRequestBody String smsCode,
|
|
|
+ @MyRequestBody String countryCode) throws UnsupportedEncodingException
|
|
|
{
|
|
|
// 校验短信验证码
|
|
|
String smsCodeKey = CacheConstants.getSmsCodeKey(loginMoblie);
|
|
@@ -220,6 +227,8 @@ public class LoginToWebsiteController {
|
|
|
tourUser.setLoginName(loginMoblie);
|
|
|
tourUser.setUserStatus(TourUserStatus.STATUS_NORMAL);
|
|
|
tourUser.setMobile(loginMoblie);
|
|
|
+ tourUser.setCountryCode(StringUtils.isBlank(countryCode)? "86" : countryCode);
|
|
|
+ tourUser.setPassword(passwordEncoder.encode("123456"));
|
|
|
tourUser = tourUserService.saveNew(tourUser);
|
|
|
}
|
|
|
// 生成token
|
|
@@ -228,18 +237,31 @@ public class LoginToWebsiteController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 小程序登录,给出AK、SK、解析密钥、登录
|
|
|
+ * 小程序根据phoneCode登录
|
|
|
*/
|
|
|
@SaIgnore
|
|
|
@OperationLog(type = SysOperationLogType.LOGIN, saveResponse = false)
|
|
|
- @PostMapping("/doLoginByWxMini")
|
|
|
- public ResponseResult<JSONObject> doLoginByWxMini(
|
|
|
- @MyRequestBody String code,
|
|
|
- @MyRequestBody String encryptedData,
|
|
|
- @MyRequestBody String iv) throws UnsupportedEncodingException {
|
|
|
-
|
|
|
-// return loginToWebsiteService.doLoginByWxMini(code, encryptedData, iv);
|
|
|
- return null;
|
|
|
+ @GetMapping("/doLoginByWxMini")
|
|
|
+ public ResponseResult<JSONObject> doLoginByWxMini(String phoneCode) throws WxErrorException {
|
|
|
+ log.info("小程序获取手机号code:" + phoneCode);
|
|
|
+ WxMaUserService userService = wxMaService.getUserService();
|
|
|
+ WxMaPhoneNumberInfo phoneNoInfo = userService.getPhoneNoInfo(phoneCode);
|
|
|
+
|
|
|
+ log.info("小程序获取手机号信息:" + phoneNoInfo);
|
|
|
+ TourUser tourUser = tourUserService.getOne(Wrappers.<TourUser>lambdaQuery().eq(TourUser::getMobile, phoneNoInfo.getPhoneNumber()));
|
|
|
+ // 如果用户信息不存在,则新建
|
|
|
+ if(tourUser == null){
|
|
|
+ tourUser = new TourUser();
|
|
|
+ tourUser.setLoginName(phoneNoInfo.getPhoneNumber());
|
|
|
+ tourUser.setUserStatus(TourUserStatus.STATUS_NORMAL);
|
|
|
+ tourUser.setMobile(phoneNoInfo.getPhoneNumber());
|
|
|
+ tourUser.setPassword(passwordEncoder.encode("123456"));
|
|
|
+ tourUser.setCountryCode(phoneNoInfo.getCountryCode());
|
|
|
+ tourUser = tourUserService.saveNew(tourUser);
|
|
|
+ }
|
|
|
+ // 生成token
|
|
|
+ JSONObject jsonObject = this.buildTourLoginDataAndLogin(tourUser);
|
|
|
+ return ResponseResult.success(jsonObject);
|
|
|
}
|
|
|
|
|
|
|