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
1610bd24
Commit
1610bd24
authored
May 27, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
本机范围http api不需要secret
parent
3f51e9ae
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
6 行增加
和
4 行删除
+6
-4
server/WebApi.cpp
+6
-4
没有找到文件。
server/WebApi.cpp
查看文件 @
1610bd24
...
@@ -25,7 +25,8 @@ using namespace mediakit;
...
@@ -25,7 +25,8 @@ using namespace mediakit;
typedef
map
<
string
,
variant
,
StrCaseCompare
>
ApiArgsType
;
typedef
map
<
string
,
variant
,
StrCaseCompare
>
ApiArgsType
;
#define API_ARGS HttpSession::KeyValue &headerIn, \
#define API_ARGS TcpSession &sender, \
HttpSession::KeyValue &headerIn, \
HttpSession::KeyValue &headerOut, \
HttpSession::KeyValue &headerOut, \
ApiArgsType &allArgs, \
ApiArgsType &allArgs, \
Json::Value &val
Json::Value &val
...
@@ -33,7 +34,7 @@ typedef map<string,variant,StrCaseCompare> ApiArgsType;
...
@@ -33,7 +34,7 @@ typedef map<string,variant,StrCaseCompare> ApiArgsType;
#define API_REGIST(field, name, ...) \
#define API_REGIST(field, name, ...) \
s_map_api.emplace("/index/"#field"/"#name,[](API_ARGS,const HttpSession::HttpResponseInvoker &invoker){ \
s_map_api.emplace("/index/"#field"/"#name,[](API_ARGS,const HttpSession::HttpResponseInvoker &invoker){ \
static auto lam = [&](API_ARGS) __VA_ARGS__ ; \
static auto lam = [&](API_ARGS) __VA_ARGS__ ; \
lam(headerIn, headerOut, allArgs, val); \
lam(
sender,
headerIn, headerOut, allArgs, val); \
invoker("200 OK", headerOut, val.toStyledString()); \
invoker("200 OK", headerOut, val.toStyledString()); \
});
});
...
@@ -164,7 +165,7 @@ static inline void addHttpListener(){
...
@@ -164,7 +165,7 @@ static inline void addHttpListener(){
}
}
try
{
try
{
it
->
second
(
headerIn
,
headerOut
,
allArgs
,
val
,
invoker
);
it
->
second
(
sender
,
headerIn
,
headerOut
,
allArgs
,
val
,
invoker
);
}
catch
(
ApiRetException
&
ex
){
}
catch
(
ApiRetException
&
ex
){
val
[
"code"
]
=
ex
.
code
();
val
[
"code"
]
=
ex
.
code
();
val
[
"msg"
]
=
ex
.
what
();
val
[
"msg"
]
=
ex
.
what
();
...
@@ -202,12 +203,13 @@ bool checkArgs(Args &&args,First &&first,KeyTypes && ...keys){
...
@@ -202,12 +203,13 @@ bool checkArgs(Args &&args,First &&first,KeyTypes && ...keys){
}
}
#define CHECK_SECRET() \
#define CHECK_SECRET() \
if(sender.get_peer_ip() != "127.0.0.1"){ \
CHECK_ARGS("secret"); \
CHECK_ARGS("secret"); \
if(api_secret != allArgs["secret"]){ \
if(api_secret != allArgs["secret"]){ \
throw AuthException("secret错误"); \
throw AuthException("secret错误"); \
} \
}
}
static
unordered_map
<
string
,
PlayerProxy
::
Ptr
>
s_proxyMap
;
static
unordered_map
<
string
,
PlayerProxy
::
Ptr
>
s_proxyMap
;
static
recursive_mutex
s_proxyMapMtx
;
static
recursive_mutex
s_proxyMapMtx
;
static
inline
string
getProxyKey
(
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream
){
static
inline
string
getProxyKey
(
const
string
&
vhost
,
const
string
&
app
,
const
string
&
stream
){
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论