|
@@ -1,20 +1,84 @@
|
|
|
package org.jeecg.modules.adweb.quota.service.impl;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.tuple.Pair;
|
|
|
+import org.apache.shiro.SecurityUtils;
|
|
|
+import org.jeecg.common.system.vo.LoginUser;
|
|
|
+import org.jeecg.common.util.FastJsonUtil;
|
|
|
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.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.util.Objects;
|
|
|
+
|
|
|
/**
|
|
|
- * @Description: adweb_resource_quota
|
|
|
- * @Author: jeecg-boot
|
|
|
- * @Date: 2025-12-07
|
|
|
- * @Version: V1.0
|
|
|
+ * @Description: adweb_resource_quota @Author: jeecg-boot @Date: 2025-12-07 @Version: V1.0
|
|
|
*/
|
|
|
+@Slf4j
|
|
|
@Service
|
|
|
public class ResourceQuotaServiceImpl extends ServiceImpl<ResourceQuotaMapper, ResourceQuota>
|
|
|
implements IResourceQuotaService {
|
|
|
|
|
|
+ @Value("${resource-quota.default-website-quota}")
|
|
|
+ private int defaultWebsiteQuota;
|
|
|
+
|
|
|
+ @Value("${resource-quota.default-ai-power-quota}")
|
|
|
+ private int defaultAiPowerQuota;
|
|
|
+
|
|
|
+ @Value("${resource-quota.default-customs-data-quota}")
|
|
|
+ private int defaultCustomsDataQuota;
|
|
|
+
|
|
|
+ public ResourceQuotaVO getResourceQuotaByUid(String uid) {
|
|
|
+ ResourceQuota resourceQuota =
|
|
|
+ this.getOne(new LambdaQueryWrapper<ResourceQuota>().eq(ResourceQuota::getUid, uid));
|
|
|
+ if (Objects.isNull(resourceQuota)) {
|
|
|
+ resourceQuota = this.createResourceQuota(uid);
|
|
|
+ }
|
|
|
+
|
|
|
+ ResourceQuotaVO resourceQuotaVO = new ResourceQuotaVO();
|
|
|
+ resourceQuotaVO.setUid(uid);
|
|
|
+ resourceQuotaVO.setWebsiteQuota(resourceQuota.getWebsiteQuota());
|
|
|
+ resourceQuotaVO.setWebsiteUsage(0);
|
|
|
+ resourceQuotaVO.setAiPowerQuota(resourceQuota.getAiPowerQuota());
|
|
|
+ resourceQuotaVO.setAiPowerUsage(0);
|
|
|
+ resourceQuotaVO.setCustomsDataQuota(resourceQuota.getCustomsDataQuota());
|
|
|
+ resourceQuotaVO.setCustomsDataUsage(resourceQuota.getCustomsDataUsage());
|
|
|
+
|
|
|
+ return resourceQuotaVO;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Pair<Integer, Integer> getWebsiteQuota(String uid) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增{@link ResourceQuota}记录
|
|
|
+ *
|
|
|
+ * @param uid
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private ResourceQuota createResourceQuota(String uid) {
|
|
|
+ ResourceQuota resourceQuota = new ResourceQuota();
|
|
|
+ resourceQuota.setUid(uid);
|
|
|
+ resourceQuota.setWebsiteQuota(defaultWebsiteQuota);
|
|
|
+ resourceQuota.setAiPowerQuota(defaultAiPowerQuota);
|
|
|
+ resourceQuota.setCustomsDataQuota(defaultCustomsDataQuota);
|
|
|
+ resourceQuota.setCustomsDataUsage(0);
|
|
|
+
|
|
|
+ this.save(resourceQuota);
|
|
|
+ log.info(
|
|
|
+ "管理员 {} 为用户 {} 配置资源额度 {}",
|
|
|
+ ((LoginUser) SecurityUtils.getSubject().getPrincipal()).getUsername(),
|
|
|
+ uid,
|
|
|
+ FastJsonUtil.toJSONString(resourceQuota));
|
|
|
+
|
|
|
+ return resourceQuota;
|
|
|
+ }
|
|
|
}
|