|
@@ -13,6 +13,8 @@ import org.jeecg.modules.adweb.quota.entity.ResourceQuota;
|
|
|
import org.jeecg.modules.adweb.quota.mapper.ResourceQuotaMapper;
|
|
|
import org.jeecg.modules.adweb.quota.service.IResourceQuotaService;
|
|
|
import org.jeecg.modules.adweb.quota.vo.ResourceQuotaVO;
|
|
|
+import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -35,12 +37,11 @@ public class ResourceQuotaServiceImpl extends ServiceImpl<ResourceQuotaMapper, R
|
|
|
@Value("${resource-quota.default-customs-data-quota}")
|
|
|
private int defaultCustomsDataQuota;
|
|
|
|
|
|
+ @Autowired private IAdwebSiteService adwebSiteService;
|
|
|
+
|
|
|
+ @Override
|
|
|
public ResourceQuotaVO getResourceQuotaByUid(String uid) {
|
|
|
- ResourceQuota resourceQuota =
|
|
|
- this.getOne(new LambdaQueryWrapper<ResourceQuota>().eq(ResourceQuota::getUid, uid));
|
|
|
- if (Objects.isNull(resourceQuota)) {
|
|
|
- resourceQuota = this.createResourceQuota(uid);
|
|
|
- }
|
|
|
+ ResourceQuota resourceQuota = this.getResourceQuota(uid);
|
|
|
|
|
|
ResourceQuotaVO resourceQuotaVO = new ResourceQuotaVO();
|
|
|
resourceQuotaVO.setUid(uid);
|
|
@@ -54,24 +55,59 @@ public class ResourceQuotaServiceImpl extends ServiceImpl<ResourceQuotaMapper, R
|
|
|
return resourceQuotaVO;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public boolean updateResourceQuota(ResourceQuotaVO resourceQuotaVO) {
|
|
|
+ ResourceQuota resourceQuota = this.getResourceQuota(resourceQuotaVO.getUid());
|
|
|
+
|
|
|
+ // 检查是否有额度字段更新
|
|
|
+ if (resourceQuota.getWebsiteQuota() != resourceQuotaVO.getWebsiteQuota()
|
|
|
+ || resourceQuota.getAiPowerQuota() != resourceQuotaVO.getAiPowerQuota()
|
|
|
+ || resourceQuota.getCustomsDataQuota() != resourceQuotaVO.getCustomsDataQuota()) {
|
|
|
+ resourceQuota.setWebsiteQuota(resourceQuotaVO.getWebsiteQuota());
|
|
|
+ resourceQuota.setAiPowerQuota(resourceQuotaVO.getAiPowerQuota());
|
|
|
+ resourceQuota.setCustomsDataQuota(resourceQuotaVO.getCustomsDataQuota());
|
|
|
+
|
|
|
+ this.saveOrUpdate(resourceQuota);
|
|
|
+ log.info(
|
|
|
+ "管理员 {} 为用户 {} 更新资源额度 {}",
|
|
|
+ ((LoginUser) SecurityUtils.getSubject().getPrincipal()).getUsername(),
|
|
|
+ resourceQuotaVO.getUid(),
|
|
|
+ FastJsonUtil.toJSONString(resourceQuota));
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
public Pair<Integer, Integer> getWebsiteQuota(String uid) {
|
|
|
- return null;
|
|
|
+ return Pair.of(
|
|
|
+ this.getResourceQuota(uid).getWebsiteQuota(),
|
|
|
+ adwebSiteService.getAllSiteIdByUid(uid).size());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 新增{@link ResourceQuota}记录
|
|
|
+ * 获取用户{@link ResourceQuota}记录
|
|
|
*
|
|
|
* @param uid
|
|
|
* @return
|
|
|
*/
|
|
|
- private ResourceQuota createResourceQuota(String uid) {
|
|
|
- ResourceQuota resourceQuota = new ResourceQuota();
|
|
|
+ private ResourceQuota getResourceQuota(String uid) {
|
|
|
+ ResourceQuota resourceQuota =
|
|
|
+ this.getOne(new LambdaQueryWrapper<ResourceQuota>().eq(ResourceQuota::getUid, uid));
|
|
|
+ if (Objects.isNull(resourceQuota)) {
|
|
|
+ log.info("用户 {} 未配置资源额度", uid);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 1. 初始化DB entity
|
|
|
+ resourceQuota = new ResourceQuota();
|
|
|
resourceQuota.setUid(uid);
|
|
|
resourceQuota.setWebsiteQuota(defaultWebsiteQuota);
|
|
|
resourceQuota.setAiPowerQuota(defaultAiPowerQuota);
|
|
|
resourceQuota.setCustomsDataQuota(defaultCustomsDataQuota);
|
|
|
resourceQuota.setCustomsDataUsage(0);
|
|
|
|
|
|
+ // 2. 更新数据库
|
|
|
this.save(resourceQuota);
|
|
|
log.info(
|
|
|
"管理员 {} 为用户 {} 配置资源额度 {}",
|