潘志宝
8 天以前 6c2ff1c7c8e0aba3af92110b76687b78f8278e86
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
package com.iailab.module.data.channel.http.collector;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年11月20日
 */
 
import com.iailab.framework.common.constant.CommonConstant;
import com.iailab.module.data.channel.http.collector.ihdb.HttpCollectorForIhd;
import com.iailab.module.data.channel.http.entity.HttpApiEntity;
import com.iailab.module.data.channel.http.service.HttpApiService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
@Slf4j
@Component
public class HttpCollector {
 
    @Autowired
    private HttpApiService httpApiService;
 
    @Autowired
    private HttpCollectorForIhd httpCollectorForIhd;
 
    public Object getTagValue(String apiId, String tag) {
        HttpApiEntity httpApi = httpApiService.getFromCatch(apiId);
        if (httpApi == null) {
            return CommonConstant.BAD_VALUE;
        }
        List<String> tagNames = new ArrayList<>();
        tagNames.add(tag);
        Map<String, Object> valueMap = new HashMap<String, Object>();
        if (SourceApiEnum.iHyperDB.getCode().equals(httpApi.getCode())) {
            valueMap = httpCollectorForIhd.getLastValues(apiId, tagNames);
        }
        if (valueMap.get(tag) == null) {
            return CommonConstant.BAD_VALUE;
        }
        return valueMap.get(tag);
    }
}