houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.iailab.module.data.gateway.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.iailab.module.data.common.utils.PageUtils;
import com.iailab.module.data.common.utils.Query;
import com.iailab.module.data.gateway.service.ApiInfoService;
import com.iailab.module.data.gateway.dao.ApiInfoDao;
import com.iailab.module.data.gateway.entity.ApiInfoEntity;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2022年07月15日 14:03:00
 */
@Service("apiInfoService")
public class ApiInfoServiceImpl extends ServiceImpl<ApiInfoDao, ApiInfoEntity> implements ApiInfoService {
 
    @Override
    public PageUtils queryPage(Map<String, Object> params) {
        String apiName = (String)params.get("apiName");
        String apiGroupId = (String)params.get("apiGroupId");
        String apiServerId = (String)params.get("apiServerId");
 
        Map<String, Object> queryParams = new HashMap<>(3);
        queryParams.put("apiName", apiName);
        queryParams.put("apiGroupId", apiGroupId);
        queryParams.put("apiServerId", apiServerId);
        IPage<ApiInfoEntity> page = getBaseMapper().queryList(
                new Query<ApiInfoEntity>().getPage(queryParams),
                params
        );
        return new PageUtils(page);
    }
 
    @Override
    public List<ApiInfoEntity> queryList(Map<String, Object> params) {
        String apiGroupId = (String)params.get("apiGroupId");
        String apiServerId = (String)params.get("apiServerId");
        return getBaseMapper().selectList(new QueryWrapper<ApiInfoEntity>()
                .eq(StringUtils.isNotBlank(apiGroupId), "api_group_id", apiGroupId)
                .eq(StringUtils.isNotBlank(apiServerId), "api_server_id", apiServerId)
                .orderByDesc("create_time"));
    }
 
    @Override
    public void add(ApiInfoEntity apiInfoEntity) {
        this.save(apiInfoEntity);
    }
 
    @Override
    public void update(ApiInfoEntity apiInfoEntity) {
        this.updateById(apiInfoEntity);
    }
 
    @Override
    public void deleteById(String id) {
        this.getBaseMapper().delete(new QueryWrapper<ApiInfoEntity>().eq("id", id));
    }
 
    @Override
    public ApiInfoEntity getInfoById(String id) {
        return this.getById(id);
    }
 
    @Override
    public int cheack(ApiInfoEntity apiInfoEntity) {
        String id = apiInfoEntity.getId();
        String apiName = apiInfoEntity.getApiName();
 
        QueryWrapper<ApiInfoEntity> queryWrapper = new QueryWrapper<>();
        queryWrapper.ne(StringUtils.isNotBlank(id), "id", id);
        queryWrapper.and(wrapper -> wrapper.eq("api_name", apiName));
        return (int)this.count(queryWrapper);
    }
}