Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
0fa24526
Commit
0fa24526
authored
May 27, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加getAllSession接口
完善接口注释
parent
1610bd24
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
56 行增加
和
21 行删除
+56
-21
3rdpart/ZLToolKit
+1
-1
server/WebApi.cpp
+55
-20
没有找到文件。
ZLToolKit
@
8f656dfd
Subproject commit
f9297f31e570e4ca6f3ab1bee32eadebfbee1c1
f
Subproject commit
8f656dfdff2d7c83583a609212716ae8db921fb
f
server/WebApi.cpp
查看文件 @
0fa24526
...
@@ -216,15 +216,18 @@ static inline string getProxyKey(const string &vhost,const string &app,const str
...
@@ -216,15 +216,18 @@ static inline string getProxyKey(const string &vhost,const string &app,const str
return
vhost
+
"/"
+
app
+
"/"
+
stream
;
return
vhost
+
"/"
+
app
+
"/"
+
stream
;
}
}
//安装api接口
/**
* 安装api接口
* 所有api都支持GET和POST两种方式
* POST方式参数支持application/json和application/x-www-form-urlencoded方式
*/
void
installWebApi
()
{
void
installWebApi
()
{
addHttpListener
();
addHttpListener
();
GET_CONFIG_AND_REGISTER
(
string
,
api_secret
,
API
::
kSecret
);
GET_CONFIG_AND_REGISTER
(
string
,
api_secret
,
API
::
kSecret
);
/**
//获取线程负载
* 获取线程负载
//测试url http://127.0.0.1/index/api/getThreadsLoad
*/
API_REGIST_INVOKER
(
api
,
getThreadsLoad
,
{
API_REGIST_INVOKER
(
api
,
getThreadsLoad
,
{
EventPollerPool
::
Instance
().
getExecutorDelay
([
invoker
,
headerOut
](
const
vector
<
int
>
&
vecDelay
)
{
EventPollerPool
::
Instance
().
getExecutorDelay
([
invoker
,
headerOut
](
const
vector
<
int
>
&
vecDelay
)
{
Value
val
;
Value
val
;
...
@@ -240,14 +243,10 @@ void installWebApi() {
...
@@ -240,14 +243,10 @@ void installWebApi() {
});
});
});
});
/**
//获取服务器配置
* 获取服务器配置
//测试url http://127.0.0.1/index/api/getServerConfig
*/
API_REGIST
(
api
,
getServerConfig
,
{
API_REGIST
(
api
,
getServerConfig
,
{
CHECK_SECRET
();
CHECK_SECRET
();
if
(
api_secret
!=
allArgs
[
"secret"
]){
throw
AuthException
(
"secret错误"
);
}
Value
obj
;
Value
obj
;
for
(
auto
&
pr
:
mINI
::
Instance
())
{
for
(
auto
&
pr
:
mINI
::
Instance
())
{
obj
[
pr
.
first
]
=
(
string
&
)
pr
.
second
;
obj
[
pr
.
first
]
=
(
string
&
)
pr
.
second
;
...
@@ -255,9 +254,9 @@ void installWebApi() {
...
@@ -255,9 +254,9 @@ void installWebApi() {
val
[
"data"
].
append
(
obj
);
val
[
"data"
].
append
(
obj
);
});
});
/
**
/
/设置服务器配置
* 设置服务器配置
//测试url(比如关闭http api调试) http://127.0.0.1/index/api/setServerConfig?api.apiDebug=0
*/
//你也可以通过http post方式传参,可以通过application/x-www-form-urlencoded或application/json方式传参
API_REGIST
(
api
,
setServerConfig
,
{
API_REGIST
(
api
,
setServerConfig
,
{
CHECK_SECRET
();
CHECK_SECRET
();
auto
&
ini
=
mINI
::
Instance
();
auto
&
ini
=
mINI
::
Instance
();
...
@@ -281,9 +280,9 @@ void installWebApi() {
...
@@ -281,9 +280,9 @@ void installWebApi() {
val
[
"changed"
]
=
changed
;
val
[
"changed"
]
=
changed
;
});
});
/**
*
获取服务器api列表
//
获取服务器api列表
*/
//测试url http://127.0.0.1/index/api/getApiList
API_REGIST
(
api
,
getApiList
,{
API_REGIST
(
api
,
getApiList
,{
CHECK_SECRET
();
CHECK_SECRET
();
for
(
auto
&
pr
:
s_map_api
){
for
(
auto
&
pr
:
s_map_api
){
...
@@ -291,9 +290,8 @@ void installWebApi() {
...
@@ -291,9 +290,8 @@ void installWebApi() {
}
}
});
});
/**
//重启服务器,只有Daemon方式才能重启,否则是直接关闭!
* 重启服务器
//测试url http://127.0.0.1/index/api/restartServer
*/
API_REGIST
(
api
,
restartServer
,{
API_REGIST
(
api
,
restartServer
,{
CHECK_SECRET
();
CHECK_SECRET
();
EventPollerPool
::
Instance
().
getPoller
()
->
doDelayTask
(
1000
,[](){
EventPollerPool
::
Instance
().
getPoller
()
->
doDelayTask
(
1000
,[](){
...
@@ -312,6 +310,10 @@ void installWebApi() {
...
@@ -312,6 +310,10 @@ void installWebApi() {
});
});
//获取流列表,可选筛选参数
//测试url0(获取所有流) http://127.0.0.1/index/api/getMediaList
//测试url1(获取虚拟主机为"__defaultVost__"的流) http://127.0.0.1/index/api/getMediaList?vhost=__defaultVost__
//测试url2(获取rtsp类型的流) http://127.0.0.1/index/api/getMediaList?schema=rtsp
API_REGIST
(
api
,
getMediaList
,{
API_REGIST
(
api
,
getMediaList
,{
CHECK_SECRET
();
CHECK_SECRET
();
//获取所有MediaSource列表
//获取所有MediaSource列表
...
@@ -341,6 +343,7 @@ void installWebApi() {
...
@@ -341,6 +343,7 @@ void installWebApi() {
});
});
//主动关断流,包括关断拉流、推流
//主动关断流,包括关断拉流、推流
//测试url http://127.0.0.1/index/api/close_stream?schema=rtsp&vhost=__defaultVhost__&app=live&stream=obs
API_REGIST
(
api
,
close_stream
,{
API_REGIST
(
api
,
close_stream
,{
CHECK_SECRET
();
CHECK_SECRET
();
CHECK_ARGS
(
"schema"
,
"vhost"
,
"app"
,
"stream"
);
CHECK_ARGS
(
"schema"
,
"vhost"
,
"app"
,
"stream"
);
...
@@ -359,6 +362,34 @@ void installWebApi() {
...
@@ -359,6 +362,34 @@ void installWebApi() {
}
}
});
});
//获取所有TcpSession列表信息
//可以根据本地端口和远端ip来筛选
//测试url(筛选某端口下的tcp会话) http://127.0.0.1/index/api/getAllSession?local_port=1935
API_REGIST
(
api
,
getAllSession
,{
CHECK_SECRET
();
Value
jsession
;
uint16_t
local_port
=
allArgs
[
"local_port"
].
as
<
uint16_t
>
();
string
&
peer_ip
=
allArgs
[
"peer_ip"
];
SessionMap
::
Instance
().
for_each_session
([
&
](
const
string
&
id
,
const
TcpSession
::
Ptr
&
session
){
if
(
local_port
!=
0
&&
local_port
!=
session
->
get_local_port
()){
return
;
}
if
(
!
peer_ip
.
empty
()
&&
peer_ip
!=
session
->
get_peer_ip
()){
return
;
}
jsession
[
"peer_ip"
]
=
session
->
get_peer_ip
();
jsession
[
"peer_port"
]
=
session
->
get_peer_port
();
jsession
[
"local_ip"
]
=
session
->
get_local_ip
();
jsession
[
"local_port"
]
=
session
->
get_local_port
();
jsession
[
"id"
]
=
id
;
jsession
[
"typeid"
]
=
typeid
(
*
session
).
name
();
val
[
"data"
].
append
(
jsession
);
});
});
//断开tcp连接,比如说可以断开rtsp、rtmp播放器等
//测试url http://127.0.0.1/index/api/kick_session?id=123456
API_REGIST
(
api
,
kick_session
,{
API_REGIST
(
api
,
kick_session
,{
CHECK_SECRET
();
CHECK_SECRET
();
CHECK_ARGS
(
"id"
);
CHECK_ARGS
(
"id"
);
...
@@ -381,9 +412,11 @@ void installWebApi() {
...
@@ -381,9 +412,11 @@ void installWebApi() {
});
});
//动态添加rtsp/rtmp拉流代理
//测试url http://127.0.0.1/index/api/addStreamProxy?vhost=__defaultVhost__&app=proxy&stream=0&url=rtmp://127.0.0.1/live/obs
API_REGIST_INVOKER
(
api
,
addStreamProxy
,{
API_REGIST_INVOKER
(
api
,
addStreamProxy
,{
CHECK_SECRET
();
CHECK_SECRET
();
CHECK_ARGS
(
"vhost"
,
"app"
,
"stream"
,
"url"
,
"secret"
);
CHECK_ARGS
(
"vhost"
,
"app"
,
"stream"
,
"url"
);
auto
key
=
getProxyKey
(
allArgs
[
"vhost"
],
allArgs
[
"app"
],
allArgs
[
"stream"
]);
auto
key
=
getProxyKey
(
allArgs
[
"vhost"
],
allArgs
[
"app"
],
allArgs
[
"stream"
]);
//添加拉流代理
//添加拉流代理
PlayerProxy
::
Ptr
player
(
new
PlayerProxy
(
PlayerProxy
::
Ptr
player
(
new
PlayerProxy
(
...
@@ -417,6 +450,8 @@ void installWebApi() {
...
@@ -417,6 +450,8 @@ void installWebApi() {
player
->
play
(
allArgs
[
"url"
]);
player
->
play
(
allArgs
[
"url"
]);
});
});
//关闭拉流代理
//测试url http://127.0.0.1/index/api/delStreamProxy?key=__defaultVhost__/proxy/0
API_REGIST
(
api
,
delStreamProxy
,{
API_REGIST
(
api
,
delStreamProxy
,{
CHECK_SECRET
();
CHECK_SECRET
();
CHECK_ARGS
(
"key"
);
CHECK_ARGS
(
"key"
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论