From a15c7a369ac453782e14f92ba3ed0e9bb93cdb5c Mon Sep 17 00:00:00 2001 From: 18650502300 <18650502300@163.com> Date: Mon, 17 Jun 2024 10:12:59 +0800 Subject: [PATCH] =?UTF-8?q?1.=20=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/controller/app/AppController.java | 4 --- .../controller/app/AppVerifyController.java | 17 ++++++++- .../common/constant/ServiceConstants.java | 4 +++ .../common/utils/wx/AccessTokenUtil.java | 35 +++++++++++-------- .../com/ruoyi/system/domain/AsDevice.java | 5 +++ .../system/service/IAsDeviceService.java | 6 ++++ .../service/impl/AsDeviceServiceImpl.java | 19 ++++++++-- .../mapper/system/AsDeviceMapper.xml | 4 +-- 8 files changed, 70 insertions(+), 24 deletions(-) diff --git a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java index f192669..7a1a2bd 100644 --- a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java +++ b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppController.java @@ -1,17 +1,13 @@ package com.ruoyi.web.controller.app; import cn.hutool.core.util.StrUtil; -import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.core.page.TableDataInfo; -import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.utils.CommonUtil; import com.ruoyi.system.domain.*; import com.ruoyi.system.service.*; import com.wechat.pay.java.service.payments.model.Transaction; -import com.wechat.pay.java.service.refund.RefundService; -import com.wechat.pay.java.service.refund.model.QueryByOutRefundNoRequest; import com.wechat.pay.java.service.refund.model.Refund; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; diff --git a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java index 159e4db..398e3c9 100644 --- a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java +++ b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java @@ -14,6 +14,7 @@ import com.ruoyi.common.core.page.TableDataInfo; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.exception.ServiceException; import com.ruoyi.common.utils.CommonUtil; +import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.common.utils.verify.vo.IDResponse; import com.ruoyi.framework.web.service.TokenService; @@ -25,7 +26,6 @@ import com.ruoyi.system.service.*; import com.wechat.pay.java.service.payments.jsapi.model.PrepayWithRequestPaymentResponse; import org.jetbrains.annotations.NotNull; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.transaction.annotation.Transactional; import org.springframework.web.bind.annotation.*; @@ -721,4 +721,19 @@ public class AppVerifyController extends BaseController return AjaxResult.success("操作成功",aBoolean); } + /** + * sn和mac号绑定 + */ + @PostMapping("/band") + public AjaxResult bandSn(String sn,String mac) + { + logger.info("sn和mac号绑定:【sn="+sn+"】,【mac="+mac+"】"); + AsDevice asDevice = new AsDevice(); + asDevice.setSn(sn); + asDevice.setMac(mac); + asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NOT_BAND); + asDevice.setCreateTime(DateUtils.getNowDate()); + return toAjax(asDeviceService.bandSn(asDevice)); + } + } diff --git a/electripper-common/src/main/java/com/ruoyi/common/constant/ServiceConstants.java b/electripper-common/src/main/java/com/ruoyi/common/constant/ServiceConstants.java index 833497f..1bbec09 100644 --- a/electripper-common/src/main/java/com/ruoyi/common/constant/ServiceConstants.java +++ b/electripper-common/src/main/java/com/ruoyi/common/constant/ServiceConstants.java @@ -119,6 +119,10 @@ public class ServiceConstants { /**----------------------------车辆状态start----------------------------*/ /** 车辆状态: 0 未上架,1-正常,2-预约中,3-骑行中,4-临时锁车,8-下线;9-废弃 */ + /** + * 车辆状态: 7 未绑定 + */ + public static final String VEHICLE_STATUS_NOT_BAND = "7"; /** * 车辆状态: 0 未上架 */ diff --git a/electripper-common/src/main/java/com/ruoyi/common/utils/wx/AccessTokenUtil.java b/electripper-common/src/main/java/com/ruoyi/common/utils/wx/AccessTokenUtil.java index 90c3904..f5d8e5b 100644 --- a/electripper-common/src/main/java/com/ruoyi/common/utils/wx/AccessTokenUtil.java +++ b/electripper-common/src/main/java/com/ruoyi/common/utils/wx/AccessTokenUtil.java @@ -3,38 +3,45 @@ package com.ruoyi.common.utils.wx; import cn.binarywang.wx.miniapp.api.WxMaService; import cn.binarywang.wx.miniapp.api.impl.WxMaServiceImpl; import cn.binarywang.wx.miniapp.config.impl.WxMaDefaultConfigImpl; -import com.ruoyi.common.utils.spring.SpringUtils; import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; +import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.TimeUnit; +@Slf4j public class AccessTokenUtil { - /** 缓存token */ - private static String cachedToken; - - /** token过期时间 */ - private static long tokenExpirationTime; + // 存储每个租户的token和过期时间 + private static final ConcurrentHashMap cachedTokens = new ConcurrentHashMap<>(); + private static final ConcurrentHashMap tokenExpirationTimes = new ConcurrentHashMap<>(); @SneakyThrows public static String getToken(String appid, String appsecret) { - if (isTokenExpired()) { + String cacheKey = appid + ":" + appsecret; + + if (isTokenExpired(cacheKey)) { + log.info("token已过期,重新获取"); WxMaService wxMaService = new WxMaServiceImpl(); WxMaDefaultConfigImpl config = new WxMaDefaultConfigImpl(); config.setAppid(appid); config.setSecret(appsecret); wxMaService.setWxMaConfig(config); String accessToken = wxMaService.getAccessToken(); - cachedToken = accessToken; - // 更新 token 过期时间 - tokenExpirationTime = System.currentTimeMillis() + TimeUnit.SECONDS.toMillis(3600L); - return cachedToken; + + // 更新缓存 + cachedTokens.put(cacheKey, accessToken); + tokenExpirationTimes.put(cacheKey, System.currentTimeMillis() + TimeUnit.SECONDS.toMillis(3600L)); + + return accessToken; } - return cachedToken; + log.info("token未过期,直接使用"); + return cachedTokens.get(cacheKey); } /**判断token是否过期*/ - private static boolean isTokenExpired() { - return cachedToken == null || System.currentTimeMillis() > tokenExpirationTime; + private static boolean isTokenExpired(String cacheKey) { + Long expirationTime = tokenExpirationTimes.get(cacheKey); + return expirationTime == null || System.currentTimeMillis() > expirationTime; } } diff --git a/electripper-system/src/main/java/com/ruoyi/system/domain/AsDevice.java b/electripper-system/src/main/java/com/ruoyi/system/domain/AsDevice.java index da0f635..c5c0a22 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/domain/AsDevice.java +++ b/electripper-system/src/main/java/com/ruoyi/system/domain/AsDevice.java @@ -49,6 +49,11 @@ public class AsDevice extends BaseEntityPlus implements Serializable { @TableField(exist = false) private String qrText; + /** 运营商 */ + @Excel(name = "运营商") + @TableField(exist = false) + private String deptName; + /** 分区 */ @Excel(name = "分区id") private Long areaId; diff --git a/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java b/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java index 7a16b95..8735a9b 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java +++ b/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java @@ -256,6 +256,12 @@ public interface IAsDeviceService extends IService */ boolean checkMACUnique(AsDevice asDevice); + + /** + * sn和mac号绑定 + */ + int bandSn(AsDevice asDevice); + // /** // * 是否靠近运营区边界 // */ diff --git a/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java b/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java index 06bd39f..98afe94 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java +++ b/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java @@ -239,9 +239,12 @@ public class AsDeviceServiceImpl extends ServiceImpl i String typeName = sysDictDataService.selectDictLabel("as_device_status", status); asDevice1.setStatusStr(typeName); } - SysDept sysDept = wxPayService.getDeptObjByAreaId(areaId); - asDevice1.setQrText(sysDept.getDomain()+"?sn="+asDevice1.getSn()); - //https://dianche.chuantewulian.cn?sn=https://dche.ccttiot.com?sn=3000900 + if(ObjectUtil.isNotNull(areaId)){ + SysDept sysDept = wxPayService.getDeptObjByAreaId(areaId); + //https://dianche.chuantewulian.cn?sn=https://dche.ccttiot.com?sn=3000900 + asDevice1.setQrText(sysDept.getDomain()+"?sn="+asDevice1.getSn()); + asDevice1.setDeptName(sysDept.getDeptName()); + } } return asDevices; } @@ -1435,6 +1438,16 @@ public class AsDeviceServiceImpl extends ServiceImpl i } + /** + * sn和mac号绑定 + * 注册onenet设备 + */ + @Override + public int bandSn(AsDevice asDevice) { + return asDeviceMapper.insert(asDevice); + } + + /** * 判断是否靠近边界 */ diff --git a/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml b/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml index d10f1d0..3e48466 100644 --- a/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml +++ b/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml @@ -63,8 +63,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" de.activation_time, de.online_status, de.create_by, de.create_time, de.update_by, de.update_time, de.last_time, de.remark, de.status, de.lock_status, de.location, de.remaining_power, de.voltage, de.qrcode, de.longitude, de.latitude, de.is_area_out_outage, de.is_admin_unlocking from et_device de - inner join et_area_dept ad on ad.area_id = de.area_id - inner join sys_dept d on d.dept_id = ad.dept_id + left join et_area_dept ad on ad.area_id = de.area_id + left join sys_dept d on d.dept_id = ad.dept_id where 1 = 1 and de.device_name like concat('%', #{deviceName}, '%') and de.mac = #{mac}