com.qiniu.qvs.StreamManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.qvs;
import com.qiniu.common.QiniuException;
import com.qiniu.http.Client;
import com.qiniu.http.Response;
import com.qiniu.qvs.model.DynamicLiveRoute;
import com.qiniu.qvs.model.PatchOperation;
import com.qiniu.qvs.model.StaticLiveRoute;
import com.qiniu.qvs.model.Stream;
import com.qiniu.util.Auth;
import com.qiniu.util.StringMap;
import com.qiniu.util.UrlUtils;
public class StreamManager {
private final String apiServer;
private final Client client;
private final Auth auth;
public StreamManager(Auth auth) {
this(auth, "http://qvs.qiniuapi.com");
}
public StreamManager(Auth auth, String apiServer) {
this(auth, apiServer, new Client());
}
public StreamManager(Auth auth, String apiServer, Client client) {
this.auth = auth;
this.apiServer = apiServer;
this.client = client;
}
/*
创建流API
请求参数Body
必须参数: streamId 流名称, 流名称在空间中唯一,可包含 字母、数字、中划线、下划线;1 ~ 100 个字符长;创建后将不可修改
非必须参数: desc 关于流的描述信息
recordTemplateId 录制模版ID,配置流维度的录制模板
snapshotTemplateId 截图模版ID,配置流维度的截图模板
*/
public Response createStream(String namespaceId, Stream stream) throws QiniuException {
StringMap params = new StringMap();
params.putNotNull("streamId", stream.getStreamID());
params.putNotNull("desc", stream.getDesc());
params.putNotNull("recordTemplateId", stream.getRecordTemplateId());
params.putNotNull("snapshotTemplateId", stream.getSnapShotTemplateId());
String url = String.format("%s/v1/namespaces/%s/streams", apiServer, namespaceId);
return QvsResponse.post(url, params, client, auth);
}
/*
删除流API
*/
public Response deleteStream(String namespaceId, String streamId) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s", apiServer, namespaceId, streamId);
return QvsResponse.delete(url, client, auth);
}
/*
更新流API
*/
public Response updateStream(String namespaceId, String streamId, PatchOperation[] patchOperation) throws QiniuException {
StringMap params = new StringMap().put("operations", patchOperation);
String url = String.format("%s/v1/namespaces/%s/streams/%s", apiServer, namespaceId, streamId);
return QvsResponse.patch(url, params, client, auth);
}
/*
查询流信息API
*/
public Response queryStream(String namespaceId, String streamId) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s", apiServer, namespaceId, streamId);
return QvsResponse.get(url, client, auth);
}
/*
获取流列表
*/
public Response listStream(String namespaceId, int offset, int line, int qtype, String prefix, String sortBy) throws QiniuException {
StringMap map = new StringMap().put("offset", offset).
put("line", line).put("qtype", qtype).
putNotEmpty("prefix", prefix).putNotEmpty("sortBy", sortBy);
String requestUrl = String.format("%s/v1/namespaces/%s/streams?%s", apiServer, namespaceId, map.formString());
return QvsResponse.get(requestUrl, client, auth);
}
/*
静态模式获取流地址
*/
public Response staticPublishPlayURL(String namespaceId, String streamId, StaticLiveRoute staticLiveRoute) throws QiniuException {
StringMap params = new StringMap().put("domain", staticLiveRoute.getDomain()).
put("domainType", staticLiveRoute.getDomainType()).putNotNull("urlExpireSec", staticLiveRoute.getUrlExpireSec()).putNotNull("playExpireSec", staticLiveRoute.getPlayExpireSec());
String url = String.format("%s/v1/namespaces/%s/streams/%s/domain", apiServer, namespaceId, streamId);
return QvsResponse.post(url, params, client, auth);
}
/*
动态模式获取流地址
*/
public Response dynamicPublishPlayURL(String namespaceId, String streamId, DynamicLiveRoute dynamicLiveRoute) throws QiniuException {
StringMap params = new StringMap();
params.put("publishIp", dynamicLiveRoute.getPublishIP());
params.put("playIp", dynamicLiveRoute.getPlayIP());
params.putNotNull("urlExpireSec", dynamicLiveRoute.getUrlExpireSec());
params.putNotNull("playExpireSec", dynamicLiveRoute.getPlayExpireSec());
String url = String.format("%s/v1/namespaces/%s/streams/%s/urls", apiServer, namespaceId, streamId);
return QvsResponse.post(url, params, client, auth);
}
/*
禁用流API
*/
public Response disableStream(String namespaceId, String streamId) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s/disabled", apiServer, namespaceId, streamId);
return QvsResponse.post(url, new StringMap(), client, auth);
}
/*
启用流API
*/
public Response enableStream(String namespaceId, String streamId) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s/enabled", apiServer, namespaceId, streamId);
return QvsResponse.post(url, new StringMap(), client, auth);
}
// 查询推流历史记录
public Response queryStreamPubHistories(String namespaceId, String streamId, int start, int end, int offset, int line) throws QiniuException {
String requestUrl = String.format("%s/v1/namespaces/%s/streams/%s/pubhistories", apiServer, namespaceId, streamId);
StringMap map = new StringMap().putNotNull("start", start).putNotNull("end", end).
putNotNull("offset", offset).putNotNull("line", line);
requestUrl = UrlUtils.composeUrlWithQueries(requestUrl, map);
return QvsResponse.get(requestUrl, client, auth);
}
// 查询录制记录
public Response queryStreamRecordHistories(String namespaceId, String streamId, int start, int end, int line, String marker) throws QiniuException {
String requestUrl = String.format("%s/v1/namespaces/%s/streams/%s/recordhistories", apiServer, namespaceId, streamId);
StringMap map = new StringMap().putNotNull("start", start).putNotNull("end", end)
.putNotNull("line", line).putNotEmpty("marker", marker);
requestUrl = UrlUtils.composeUrlWithQueries(requestUrl, map);
return QvsResponse.get(requestUrl, client, auth);
}
// 查询录制记录
public Response queryStreamRecordHistories(String namespaceId, String streamId, int start, int end, int line, String marker, String format) throws QiniuException {
String requestUrl = String.format("%s/v1/namespaces/%s/streams/%s/recordhistories", apiServer, namespaceId, streamId);
StringMap map = new StringMap().putNotNull("start", start).putNotNull("end", end)
.putNotNull("line", line).putNotEmpty("marker", marker).putNotEmpty("format", format);
requestUrl = UrlUtils.composeUrlWithQueries(requestUrl, map);
return QvsResponse.get(requestUrl, client, auth);
}
// 查询流封面
public Response queryStreamCover(String namespaceId, String streamId) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s/cover", apiServer, namespaceId, streamId);
return QvsResponse.get(url, client, auth);
}
// 获取截图列表
public Response streamsSnapshots(String namespaceId, String streamId, int start, int end, int type, int line, String marker) throws QiniuException {
String requestUrl = String.format("%s/v1/namespaces/%s/streams/%s/snapshots", apiServer, namespaceId, streamId);
StringMap map = new StringMap().putNotNull("start", start).putNotNull("end", end)
.putNotNull("line", line).putNotEmpty("marker", marker).put("type", type);
requestUrl = UrlUtils.composeUrlWithQueries(requestUrl, map);
return QvsResponse.get(requestUrl, client, auth);
}
// 停用流
public Response stopStream(String namespaceId, String streamId) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s/stop", apiServer, namespaceId, streamId);
return QvsResponse.post(url, new StringMap(), client, auth);
}
/*
* 按需截图
*/
public Response ondemandSnap(String namespaceId, String streamId) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s/snap", apiServer, namespaceId, streamId);
return QvsResponse.post(url, new StringMap(), client, auth);
}
/*
* 删除截图
*/
public Response deleteSnapshots(String namespaceId, String streamId, String[] files) throws QiniuException {
String url = String.format("%s/v1/namespaces/%s/streams/%s/snapshots", apiServer, namespaceId, streamId);
StringMap params = new StringMap().putNotNull("files", files);
return QvsResponse.delete(url, params, client, auth);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy