| | |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | | import java.util.concurrent.TimeUnit; |
| | | |
| | | @Component |
| | | public class ZLMRESTfulUtils { |
| | |
| | | if (responseStr != null) { |
| | | responseJSON = JSON.parseObject(responseStr); |
| | | } |
| | | }else { |
| | | response.close(); |
| | | Objects.requireNonNull(response.body()).close(); |
| | | } |
| | | } catch (ConnectException e) { |
| | | logger.error(String.format("连接ZLM失败: %s, %s", e.getCause().getMessage(), e.getMessage())); |
| | |
| | | } catch (IOException e) { |
| | | logger.error(String.format("[ %s ]请求失败: %s", url, e.getMessage())); |
| | | } |
| | | |
| | | }else { |
| | | response.close(); |
| | | Objects.requireNonNull(response.body()).close(); |
| | | } |
| | | } |
| | | |
| | |
| | | |
| | | public JSONObject getMediaList(MediaServerItem mediaServerItem, String app, String stream, String schema, RequestCallback callback){ |
| | | Map<String, Object> param = new HashMap<>(); |
| | | if (app != null) param.put("app",app); |
| | | if (stream != null) param.put("stream",stream); |
| | | if (schema != null) param.put("schema",schema); |
| | | if (app != null) { |
| | | param.put("app",app); |
| | | } |
| | | if (stream != null) { |
| | | param.put("stream",stream); |
| | | } |
| | | if (schema != null) { |
| | | param.put("schema",schema); |
| | | } |
| | | param.put("vhost","__defaultVhost__"); |
| | | return sendPost(mediaServerItem, "getMediaList",param, callback); |
| | | } |