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
8c049d4e
Commit
8c049d4e
authored
Apr 28, 2023
by
xia-chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实现whip/whep delete相关功能
通过whip/whep 回复http头中的Location url进行删除资源 新增delete token随机数实现删除鉴权
parent
d2349f01
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
44 行增加
和
4 行删除
+44
-4
server/WebApi.cpp
+22
-3
src/Http/HttpSession.cpp
+1
-0
webrtc/WebRtcTransport.cpp
+16
-0
webrtc/WebRtcTransport.h
+5
-1
没有找到文件。
server/WebApi.cpp
查看文件 @
8c049d4e
...
...
@@ -1628,18 +1628,21 @@ void installWebApi() {
});
});
static
constexpr
char
delete_webrtc_url
[]
=
"/index/api/delete_webrtc"
;
static
auto
whip_whep_func
=
[](
const
char
*
type
,
API_ARGS_STRING_ASYNC
)
{
auto
offer
=
allArgs
.
getArgs
();
CHECK
(
!
offer
.
empty
(),
"http body(webrtc offer sdp) is empty"
);
WebRtcPluginManager
::
Instance
().
getAnswerSdp
(
static_cast
<
Session
&>
(
sender
),
type
,
WebRtcArgsImp
(
allArgs
,
sender
.
getIdentifier
()),
[
invoker
,
offer
,
headerOut
](
const
WebRtcInterface
&
exchanger
)
mutable
{
auto
&
session
=
static_cast
<
Session
&>
(
sender
);
auto
location
=
std
::
string
(
"http"
)
+
(
session
.
overSsl
()
?
"s"
:
""
)
+
"://"
+
allArgs
[
"host"
]
+
delete_webrtc_url
;
WebRtcPluginManager
::
Instance
().
getAnswerSdp
(
session
,
type
,
WebRtcArgsImp
(
allArgs
,
sender
.
getIdentifier
()),
[
invoker
,
offer
,
headerOut
,
location
](
const
WebRtcInterface
&
exchanger
)
mutable
{
// 设置跨域
headerOut
[
"Access-Control-Allow-Origin"
]
=
"*"
;
try
{
// 设置返回类型
headerOut
[
"Content-Type"
]
=
"application/sdp"
;
headerOut
[
"Location"
]
=
location
+
"?id="
+
exchanger
.
getIdentifier
()
+
"&token="
+
exchanger
.
deleteRandStr
();
invoker
(
201
,
headerOut
,
exchangeSdp
(
exchanger
,
offer
));
}
catch
(
std
::
exception
&
ex
)
{
headerOut
[
"Content-Type"
]
=
"text/plain"
;
...
...
@@ -1650,6 +1653,22 @@ void installWebApi() {
api_regist
(
"/index/api/whip"
,
[](
API_ARGS_STRING_ASYNC
)
{
whip_whep_func
(
"push"
,
API_ARGS_VALUE
,
invoker
);
});
api_regist
(
"/index/api/whep"
,
[](
API_ARGS_STRING_ASYNC
)
{
whip_whep_func
(
"play"
,
API_ARGS_VALUE
,
invoker
);
});
api_regist
(
delete_webrtc_url
,
[](
API_ARGS_MAP_ASYNC
)
{
CHECK_ARGS
(
"id"
,
"token"
);
CHECK
(
allArgs
.
getParser
().
Method
()
==
"DELETE"
,
"http method is not DELETE: "
+
allArgs
.
getParser
().
Method
());
auto
obj
=
WebRtcTransportManager
::
Instance
().
getItem
(
allArgs
[
"id"
]);
if
(
!
obj
)
{
invoker
(
404
,
headerOut
,
"id not found"
);
return
;
}
if
(
obj
->
deleteRandStr
()
!=
allArgs
[
"token"
])
{
invoker
(
401
,
headerOut
,
"token incorrect"
);
return
;
}
obj
->
safeShutdown
(
SockException
(
Err_shutdown
,
"deleted by http api"
));
invoker
(
200
,
headerOut
,
""
);
});
#endif
#if defined(ENABLE_VERSION)
...
...
src/Http/HttpSession.cpp
查看文件 @
8c049d4e
...
...
@@ -52,6 +52,7 @@ ssize_t HttpSession::onRecvHeader(const char *header,size_t len) {
static
unordered_map
<
string
,
HttpCMDHandle
>
s_func_map
;
static
onceToken
token
([]()
{
s_func_map
.
emplace
(
"GET"
,
&
HttpSession
::
Handle_Req_GET
);
s_func_map
.
emplace
(
"DELETE"
,
&
HttpSession
::
Handle_Req_GET
);
s_func_map
.
emplace
(
"POST"
,
&
HttpSession
::
Handle_Req_POST
);
s_func_map
.
emplace
(
"HEAD"
,
&
HttpSession
::
Handle_Req_HEAD
);
s_func_map
.
emplace
(
"OPTIONS"
,
&
HttpSession
::
Handle_Req_OPTIONS
);
...
...
webrtc/WebRtcTransport.cpp
查看文件 @
8c049d4e
...
...
@@ -113,6 +113,13 @@ const string &WebRtcTransport::getIdentifier() const {
return
_identifier
;
}
const
std
::
string
&
WebRtcTransport
::
deleteRandStr
()
const
{
if
(
_delete_rand_str
.
empty
())
{
_delete_rand_str
=
makeRandStr
(
32
);
}
return
_delete_rand_str
;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void
WebRtcTransport
::
OnIceServerSendStunPacket
(
...
...
@@ -1053,6 +1060,15 @@ void WebRtcTransportImp::onBeforeEncryptRtp(const char *buf, int &len, void *ctx
}
}
void
WebRtcTransportImp
::
safeShutdown
(
const
SockException
&
ex
)
{
std
::
weak_ptr
<
WebRtcTransportImp
>
weak_self
=
static_pointer_cast
<
WebRtcTransportImp
>
(
shared_from_this
());
getPoller
()
->
async
([
ex
,
weak_self
]()
{
if
(
auto
strong_self
=
weak_self
.
lock
())
{
strong_self
->
onShutdown
(
ex
);
}
});
}
void
WebRtcTransportImp
::
onShutdown
(
const
SockException
&
ex
)
{
WarnL
<<
ex
;
unrefSelf
();
...
...
webrtc/WebRtcTransport.h
查看文件 @
8c049d4e
...
...
@@ -40,7 +40,8 @@ public:
WebRtcInterface
()
=
default
;
virtual
~
WebRtcInterface
()
=
default
;
virtual
std
::
string
getAnswerSdp
(
const
std
::
string
&
offer
)
=
0
;
virtual
const
std
::
string
&
getIdentifier
()
const
=
0
;
virtual
const
std
::
string
&
getIdentifier
()
const
=
0
;
virtual
const
std
::
string
&
deleteRandStr
()
const
{
static
std
::
string
s_null
;
return
s_null
;
}
};
std
::
string
exchangeSdp
(
const
WebRtcInterface
&
exchanger
,
const
std
::
string
&
offer
);
...
...
@@ -92,6 +93,7 @@ public:
* 获取对象唯一id
*/
const
std
::
string
&
getIdentifier
()
const
override
;
const
std
::
string
&
deleteRandStr
()
const
override
;
/**
* socket收到udp数据
...
...
@@ -174,6 +176,7 @@ protected:
std
::
shared_ptr
<
RTC
::
IceServer
>
_ice_server
;
private
:
mutable
std
::
string
_delete_rand_str
;
std
::
string
_identifier
;
EventPoller
::
Ptr
_poller
;
std
::
shared_ptr
<
RTC
::
DtlsTransport
>
_dtls_transport
;
...
...
@@ -248,6 +251,7 @@ public:
void
createRtpChannel
(
const
std
::
string
&
rid
,
uint32_t
ssrc
,
MediaTrack
&
track
);
void
removeTuple
(
RTC
::
TransportTuple
*
tuple
);
void
safeShutdown
(
const
SockException
&
ex
);
protected
:
void
OnIceServerSelectedTuple
(
const
RTC
::
IceServer
*
iceServer
,
RTC
::
TransportTuple
*
tuple
)
override
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论