|
@@ -1,6 +1,9 @@
|
|
package com.info666.infraredRemote.controller;
|
|
package com.info666.infraredRemote.controller;
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson2.JSON;
|
|
|
|
+import com.alibaba.fastjson2.JSONObject;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
+import com.ruoyi.common.core.baiduMap.SearchHttpAK;
|
|
import com.ruoyi.common.core.domain.R;
|
|
import com.ruoyi.common.core.domain.R;
|
|
import com.ruoyi.common.core.redis.RedisCache;
|
|
import com.ruoyi.common.core.redis.RedisCache;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
@@ -8,8 +11,10 @@ import com.ruoyi.common.utils.StringUtils;
|
|
import com.ruoyi.system.domain.UserAddress;
|
|
import com.ruoyi.system.domain.UserAddress;
|
|
import com.ruoyi.system.domain.UserInfo;
|
|
import com.ruoyi.system.domain.UserInfo;
|
|
import com.ruoyi.system.domain.vo.SmsResponseVo;
|
|
import com.ruoyi.system.domain.vo.SmsResponseVo;
|
|
|
|
+import com.ruoyi.system.domain.vo.baiduMap.Result;
|
|
import com.ruoyi.system.service.UserAddressService;
|
|
import com.ruoyi.system.service.UserAddressService;
|
|
import com.ruoyi.system.service.UserInfoService;
|
|
import com.ruoyi.system.service.UserInfoService;
|
|
|
|
+import org.apache.poi.ss.formula.functions.T;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -36,6 +41,9 @@ public class UserLoginController {
|
|
@Autowired
|
|
@Autowired
|
|
private RedisCache redisCache;
|
|
private RedisCache redisCache;
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private SearchHttpAK searchHttpAK;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 登录接口
|
|
* 登录接口
|
|
*/
|
|
*/
|
|
@@ -62,8 +70,25 @@ public class UserLoginController {
|
|
* 上传用户地址
|
|
* 上传用户地址
|
|
*/
|
|
*/
|
|
@PostMapping("/uploadAddress")
|
|
@PostMapping("/uploadAddress")
|
|
- public R<SmsResponseVo> sendSms(@RequestBody UserAddress param) {
|
|
|
|
|
|
+ public R<T> uploadAddress(@RequestBody UserAddress param) throws Exception {
|
|
UserInfo one = userInfoService.getOne(new LambdaQueryWrapper<UserInfo>().eq(UserInfo::getUserPhone, param.getUserPhone()),false);
|
|
UserInfo one = userInfoService.getOne(new LambdaQueryWrapper<UserInfo>().eq(UserInfo::getUserPhone, param.getUserPhone()),false);
|
|
|
|
+ if ( StringUtils.isEmpty(param.getLongitude()) || StringUtils.isEmpty(param.getLatitude())){
|
|
|
|
+ return R.fail("经纬度信息不能为空");
|
|
|
|
+ }
|
|
|
|
+ String data = searchHttpAK.convertIp(param.getLatitude()+","+param.getLongitude());
|
|
|
|
+ JSONObject json = JSON.parseObject(data);
|
|
|
|
+ Integer status = json.getInteger("status");
|
|
|
|
+ if (status != 0){
|
|
|
|
+ return R.fail("经纬度转换失败 状态码:{}"+status);
|
|
|
|
+ }
|
|
|
|
+ String result = json.getString("result");
|
|
|
|
+ Result detail = JSONObject.parseObject(result, Result.class);
|
|
|
|
+ param.setFormattedAddress(detail.getFormatted_address());
|
|
|
|
+ param.setProvince(detail.getAddressComponent().getProvince());
|
|
|
|
+ param.setCity(detail.getAddressComponent().getCity());
|
|
|
|
+ param.setDistrict(detail.getAddressComponent().getDistrict());
|
|
|
|
+ param.setTown(detail.getAddressComponent().getTown());
|
|
|
|
+ param.setStreet(detail.getAddressComponent().getStreet());
|
|
param.setUserId(one.getId());
|
|
param.setUserId(one.getId());
|
|
param.setCreateTime(DateUtils.getNowDate());
|
|
param.setCreateTime(DateUtils.getNowDate());
|
|
userAddressService.save(param);
|
|
userAddressService.save(param);
|