wang-hao-jie
2021-12-14 0c0a751f2e1abac46b506697096cc3b2a5b54510
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package cn.exrick.xboot.your.util;
 
import java.math.BigDecimal;
import java.util.*;
 
import cn.exrick.xboot.your.vo.FindHistoryGpsRequest;
import cn.exrick.xboot.your.vo.PlaybackURLsVo;
import cn.exrick.xboot.your.vo.PreviewURLsVo;
import cn.exrick.xboot.your.vo.TalkURLsVo;
import cn.hutool.core.util.StrUtil;
import cn.hutool.json.JSONUtil;
import com.hikvision.artemis.sdk.Client;
import com.hikvision.artemis.sdk.Request;
import com.hikvision.artemis.sdk.Response;
import com.hikvision.artemis.sdk.constant.Constants;
import com.hikvision.artemis.sdk.enums.Method;
import org.springframework.stereotype.Component;
 
 
/**
 * 海康车机接口
 */
@Component
public class HaiKangPost {
    /**
     * STEP1:设置平台参数,根据实际情况,设置host appkey appsecret 三个参数.
     */
    /**
     * STEP2:设置OpenAPI接口的上下文
     */
    private static final String ARTEMIS_PATH = "/artemis";
    private static final String HOST = "111.63.178.115:1443";
    private static final String APP_KEY = "28156526";
    private static final String APP_SECRET = "MNkyjHuids4XxFONSOaL";
 
    //根据车辆编号及时段获取历史定位信息
    public String findHistoryGps(FindHistoryGpsRequest findHistoryGpsRequest){
        String findHistoryGpsDataApi = ARTEMIS_PATH +"/api/rtsm/v1/gps/findHistoryGps";
        Map<String,String> path = new HashMap<String,String>(2){
            {
                put("https://",findHistoryGpsDataApi);
            }
        };
        String body= JSONUtil.toJsonStr(findHistoryGpsRequest);
        String result = doPostStringArtemis(path,body,null,null,"application/json");
        return result;
    }
 
    //查询指定车辆编号的最新定位
    public String findLatestGps(String[] code){
        String findHistoryGpsDataApi = ARTEMIS_PATH +"/api/rtsm/v1/gps/findLatestGps";
        Map<String,String> path = new HashMap<String,String>(2){
            {
                put("https://",findHistoryGpsDataApi);
            }
        };
        String body= JSONUtil.toJsonStr(code);
        String result = doPostStringArtemis(path,body,null,null,"application/json");
        return result;
    }
 
    //获取监控点预览取流URL
    public String previewURLs(PreviewURLsVo previewURLsVo){
        String findHistoryGpsDataApi = ARTEMIS_PATH +"/api/video/v1/cameras/previewURLs";
        Map<String,String> path = new HashMap<String,String>(2){
            {
                put("https://",findHistoryGpsDataApi);
            }
        };
        String body= JSONUtil.toJsonStr(previewURLsVo);
        String result = doPostStringArtemis(path,body,null,null,"application/json");
        return result;
    }
 
    //获取监控点回放取流URL
    public String playbackURLs(PlaybackURLsVo playbackURLsVo){
        String findHistoryGpsDataApi = ARTEMIS_PATH +"/api/video/v1/cameras/playbackURLs";
        Map<String,String> path = new HashMap<String,String>(2){
            {
                put("https://",findHistoryGpsDataApi);
            }
        };
        String body= JSONUtil.toJsonStr(playbackURLsVo);
        String result = doPostStringArtemis(path,body,null,null,"application/json");
        return result;
    }
 
    //语音对讲
    public String talkURLs(TalkURLsVo talkURLsVo){
        String findHistoryGpsDataApi = ARTEMIS_PATH +"/api/video/v1/cameras/talkURLs";
        Map<String,String> path = new HashMap<String,String>(2){
            {
                put("https://",findHistoryGpsDataApi);
            }
        };
        String body= JSONUtil.toJsonStr(talkURLsVo);
        String result = doPostStringArtemis(path,body,null,null,"application/json");
        return result;
    }
 
    //按事件类型获取事件订阅信息
    public String getTopicInfo(){
        String findHistoryGpsDataApi = ARTEMIS_PATH +"/api/common/v1/event/getTopicInfo";
        Map<String,String> path = new HashMap<String,String>(2){
            {
                put("https://",findHistoryGpsDataApi);
            }
        };
        BigDecimal eventTypes[] = {new BigDecimal(new String("5201154049"))};
        Map<String,Object> map = new HashMap<>();
        map.put("eventTypes",eventTypes);
        String body= JSONUtil.toJsonStr(map);
        System.out.println(body);
        String result = doPostStringArtemis(path,body,null,null,"application/json");
        return result;
    }
 
    public String doPostStringArtemis(Map<String, String> path, String body, Map<String, String> querys, String accept, String contentType) {
        String httpSchema = (String)path.keySet().toArray()[0];
        if (httpSchema != null && !StrUtil.isEmpty(httpSchema)) {
            String responseStr = null;
 
            try {
                Map<String, String> headers = new HashMap();
                if (StrUtil.isNotBlank(accept)) {
                    headers.put("Accept", accept);
                } else {
                    headers.put("Accept", "*/*");
                }
 
                if (StrUtil.isNotBlank(contentType)) {
                    headers.put("Content-Type", contentType);
                } else {
                    headers.put("Content-Type", "application/text;charset=UTF-8");
                }
 
                Request request = new Request(Method.POST_STRING, httpSchema + HOST, (String)path.get(httpSchema), APP_KEY, APP_SECRET, Constants.DEFAULT_TIMEOUT);
                request.setHeaders(headers);
                request.setQuerys(querys);
                request.setStringBody(body);
                Response response = Client.execute(request);
                responseStr = getResponseResult2(response);
            } catch (Exception var10) {
            }
 
            return responseStr;
        } else {
            throw new RuntimeException("http和https参数错误httpSchema: " + httpSchema);
        }
    }
 
    private String getResponseResult2(Response response) {
        String responseStr = null;
        int statusCode = response.getStatusCode();
        if (!String.valueOf(statusCode).startsWith("2") && !String.valueOf(statusCode).startsWith("3")) {
            String msg = response.getErrorMessage();
            responseStr = response.getBody();
        } else {
            responseStr = response.getBody();
        }
 
        return responseStr;
    }
 
 
    public static void main(String[] args) {
        HaiKangPost haiKangPost = new HaiKangPost();
        haiKangPost.getTopicInfo();
 
//        FindHistoryGpsRequest findHistoryGpsRequest = new FindHistoryGpsRequest();
//        findHistoryGpsRequest.setVehicleIndexCode("b279d865eabe497db465eb2f4d2cc87d");
//        findHistoryGpsRequest.setPageNo(1);
//        findHistoryGpsRequest.setPageSize(20);
//        findHistoryGpsRequest.setBeginTime("2021-11-25T03:10:01.000+08:00");
//        findHistoryGpsRequest.setEndTime("2021-11-25T12:10:01.000+08:00");
//        HaiKangPost haiKangPost = new HaiKangPost();
//        System.out.println(haiKangPost.findHistoryGps(findHistoryGpsRequest));
 
//        String code[] = {"b279d865eabe497db465eb2f4d2cc87d"};
//        System.out.println(findLatestGps(code));
 
//        PreviewURLsVo previewURLsVo = new PreviewURLsVo();
//        previewURLsVo.setCameraIndexCode("b279d865eabe497db465eb2f4d2cc87d");
//        previewURLs(previewURLsVo);
    }
}