| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- package com.genersoft.iot.vmp.media.zlm;
- import com.alibaba.fastjson2.JSON;
- import com.alibaba.fastjson2.JSONObject;
- import com.genersoft.iot.vmp.media.bean.MediaServer;
- import com.genersoft.iot.vmp.utils.SSLSocketClientUtil;
- import lombok.extern.slf4j.Slf4j;
- import okhttp3.*;
- import okhttp3.logging.HttpLoggingInterceptor;
- import org.jetbrains.annotations.NotNull;
- import org.springframework.stereotype.Component;
- import org.springframework.util.ObjectUtils;
- import javax.net.ssl.X509TrustManager;
- import java.io.IOException;
- import java.net.ConnectException;
- import java.net.SocketTimeoutException;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import java.util.Objects;
- import java.util.concurrent.TimeUnit;
- @Slf4j
- @Component
- public class AssistRESTfulUtils {
- private OkHttpClient client;
- public interface RequestCallback{
- void run(JSONObject response);
- }
- private OkHttpClient getClient(){
- return getClient(null);
- }
- private OkHttpClient getClient(Integer readTimeOut){
- if (client == null) {
- if (readTimeOut == null) {
- readTimeOut = 10;
- }
- OkHttpClient.Builder httpClientBuilder = new OkHttpClient.Builder();
- // 设置连接超时时间
- httpClientBuilder.connectTimeout(8, TimeUnit.SECONDS);
- // 设置读取超时时间
- httpClientBuilder.readTimeout(readTimeOut,TimeUnit.SECONDS);
- // 设置连接池
- httpClientBuilder.connectionPool(new ConnectionPool(16, 5, TimeUnit.MINUTES));
- if (log.isDebugEnabled()) {
- HttpLoggingInterceptor logging = new HttpLoggingInterceptor(message -> {
- log.debug("http请求参数:" + message);
- });
- logging.setLevel(HttpLoggingInterceptor.Level.BASIC);
- // OkHttp進行添加攔截器loggingInterceptor
- httpClientBuilder.addInterceptor(logging);
- }
- X509TrustManager manager = SSLSocketClientUtil.getX509TrustManager();
- // 设置ssl
- httpClientBuilder.sslSocketFactory(SSLSocketClientUtil.getSocketFactory(manager), manager);
- httpClientBuilder.hostnameVerifier(SSLSocketClientUtil.getHostnameVerifier());//忽略校验
- client = httpClientBuilder.build();
- }
- return client;
- }
- public JSONObject sendGet(MediaServer mediaServerItem, String api, Map<String, Object> param, RequestCallback callback) {
- OkHttpClient client = getClient();
- if (mediaServerItem == null) {
- return null;
- }
- if (mediaServerItem.getRecordAssistPort() <= 0) {
- log.warn("未启用Assist服务");
- return null;
- }
- StringBuilder stringBuffer = new StringBuilder();
- stringBuffer.append(api);
- JSONObject responseJSON = null;
- if (param != null && !param.keySet().isEmpty()) {
- stringBuffer.append("?");
- int index = 1;
- for (String key : param.keySet()){
- if (param.get(key) != null) {
- stringBuffer.append(key + "=" + param.get(key));
- if (index < param.size()) {
- stringBuffer.append("&");
- }
- }
- index++;
- }
- }
- String url = stringBuffer.toString();
- log.info("[访问assist]: {}", url);
- Request request = new Request.Builder()
- .get()
- .url(url)
- .build();
- if (callback == null) {
- try {
- Response response = client.newCall(request).execute();
- if (response.isSuccessful()) {
- ResponseBody responseBody = response.body();
- if (responseBody != null) {
- String responseStr = responseBody.string();
- responseJSON = JSON.parseObject(responseStr);
- }
- }else {
- response.close();
- Objects.requireNonNull(response.body()).close();
- }
- } catch (ConnectException e) {
- log.error(String.format("连接Assist失败: %s, %s", e.getCause().getMessage(), e.getMessage()));
- log.info("请检查media配置并确认Assist已启动...");
- }catch (IOException e) {
- log.error(String.format("[ %s ]请求失败: %s", url, e.getMessage()));
- }
- }else {
- client.newCall(request).enqueue(new Callback(){
- @Override
- public void onResponse(@NotNull Call call, @NotNull Response response){
- if (response.isSuccessful()) {
- try {
- String responseStr = Objects.requireNonNull(response.body()).string();
- callback.run(JSON.parseObject(responseStr));
- } catch (IOException e) {
- log.error(String.format("[ %s ]请求失败: %s", url, e.getMessage()));
- }
- }else {
- response.close();
- Objects.requireNonNull(response.body()).close();
- }
- }
- @Override
- public void onFailure(@NotNull Call call, @NotNull IOException e) {
- log.error(String.format("连接Assist失败: %s, %s", e.getCause().getMessage(), e.getMessage()));
- log.info("请检查media配置并确认Assist已启动...");
- }
- });
- }
- return responseJSON;
- }
- public JSONObject sendPost(MediaServer mediaServerItem, String url,
- JSONObject param, ZLMRESTfulUtils.RequestCallback callback,
- Integer readTimeOut) {
- OkHttpClient client = getClient(readTimeOut);
- if (mediaServerItem == null) {
- return null;
- }
- log.info("[访问assist]: {}, 参数: {}", url, param);
- JSONObject responseJSON = new JSONObject();
- //-2自定义流媒体 调用错误码
- responseJSON.put("code",-2);
- responseJSON.put("msg","ASSIST调用失败");
- RequestBody requestBodyJson = RequestBody.create(MediaType.parse("application/json; charset=utf-8"), param.toString());
- Request request = new Request.Builder()
- .post(requestBodyJson)
- .url(url)
- .addHeader("Content-Type", "application/json")
- .build();
- if (callback == null) {
- try {
- Response response = client.newCall(request).execute();
- if (response.isSuccessful()) {
- ResponseBody responseBody = response.body();
- if (responseBody != null) {
- String responseStr = responseBody.string();
- responseJSON = JSON.parseObject(responseStr);
- }
- }else {
- response.close();
- Objects.requireNonNull(response.body()).close();
- }
- }catch (IOException e) {
- log.error(String.format("[ %s ]ASSIST请求失败: %s", url, e.getMessage()));
- if(e instanceof SocketTimeoutException){
- //读取超时超时异常
- log.error(String.format("读取ASSIST数据失败: %s, %s", url, e.getMessage()));
- }
- if(e instanceof ConnectException){
- //判断连接异常,我这里是报Failed to connect to 10.7.5.144
- log.error(String.format("连接ASSIST失败: %s, %s", url, e.getMessage()));
- }
- }catch (Exception e){
- log.error(String.format("访问ASSIST失败: %s, %s", url, e.getMessage()));
- }
- }else {
- client.newCall(request).enqueue(new Callback(){
- @Override
- public void onResponse(@NotNull Call call, @NotNull Response response){
- if (response.isSuccessful()) {
- try {
- String responseStr = Objects.requireNonNull(response.body()).string();
- callback.run(JSON.parseObject(responseStr));
- } catch (IOException e) {
- log.error(String.format("[ %s ]请求失败: %s", url, e.getMessage()));
- }
- }else {
- response.close();
- Objects.requireNonNull(response.body()).close();
- }
- }
- @Override
- public void onFailure(@NotNull Call call, @NotNull IOException e) {
- log.error(String.format("连接ZLM失败: %s, %s", call.request().toString(), e.getMessage()));
- if(e instanceof SocketTimeoutException){
- //读取超时超时异常
- log.error(String.format("读取ZLM数据失败: %s, %s", call.request().toString(), e.getMessage()));
- }
- if(e instanceof ConnectException){
- //判断连接异常,我这里是报Failed to connect to 10.7.5.144
- log.error(String.format("连接ZLM失败: %s, %s", call.request().toString(), e.getMessage()));
- }
- }
- });
- }
- return responseJSON;
- }
- public JSONObject getInfo(MediaServer mediaServerItem, RequestCallback callback){
- Map<String, Object> param = new HashMap<>();
- return sendGet(mediaServerItem, "api/record/info",param, callback);
- }
- public JSONObject addTask(MediaServer mediaServerItem, String app, String stream, String startTime,
- String endTime, String callId, List<String> filePathList, String remoteHost) {
- JSONObject videoTaskInfoJSON = new JSONObject();
- videoTaskInfoJSON.put("app", app);
- videoTaskInfoJSON.put("stream", stream);
- videoTaskInfoJSON.put("startTime", startTime);
- videoTaskInfoJSON.put("endTime", endTime);
- videoTaskInfoJSON.put("callId", callId);
- videoTaskInfoJSON.put("filePathList", filePathList);
- if (!ObjectUtils.isEmpty(remoteHost)) {
- videoTaskInfoJSON.put("remoteHost", remoteHost);
- }
- String urlStr = String.format("%s/api/record/file/download/task/add", remoteHost);;
- return sendPost(mediaServerItem, urlStr, videoTaskInfoJSON, null, 30);
- }
- public JSONObject queryTaskList(MediaServer mediaServerItem, String app, String stream, String callId,
- String taskId, Boolean isEnd, String scheme) {
- Map<String, Object> param = new HashMap<>();
- if (!ObjectUtils.isEmpty(app)) {
- param.put("app", app);
- }
- if (!ObjectUtils.isEmpty(stream)) {
- param.put("stream", stream);
- }
- if (!ObjectUtils.isEmpty(callId)) {
- param.put("callId", callId);
- }
- if (!ObjectUtils.isEmpty(taskId)) {
- param.put("taskId", taskId);
- }
- if (!ObjectUtils.isEmpty(isEnd)) {
- param.put("isEnd", isEnd);
- }
- String urlStr = String.format("%s://%s:%s/api/record/file/download/task/list",
- scheme, mediaServerItem.getIp(), mediaServerItem.getRecordAssistPort());;
- return sendGet(mediaServerItem, urlStr, param, null);
- }
- }
|