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
e81efec9
Commit
e81efec9
authored
Jul 26, 2023
by
xia-chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ip白名单机制只对需要secret校验的http api生效
parent
22e3872c
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
17 行增加
和
13 行删除
+17
-13
server/WebApi.cpp
+4
-7
server/WebApi.h
+13
-6
没有找到文件。
server/WebApi.cpp
查看文件 @
e81efec9
...
...
@@ -238,11 +238,6 @@ static inline void addHttpListener(){
//该api已被消费
consumed
=
true
;
if
(
!
HttpFileManager
::
isIPAllowed
(
sender
.
get_peer_ip
()))
{
invoker
(
403
,
HttpSession
::
KeyValue
(),
"Your ip is not allowed to access the service."
);
return
;
}
if
(
api_debug
){
auto
newInvoker
=
[
invoker
,
parser
](
int
code
,
const
HttpSession
::
KeyValue
&
headerOut
,
const
HttpBody
::
Ptr
&
body
)
{
//body默认为空
...
...
@@ -593,7 +588,8 @@ void installWebApi() {
//获取线程负载
//测试url http://127.0.0.1/index/api/getThreadsLoad
api_regist
(
"/index/api/getThreadsLoad"
,[](
API_ARGS_MAP_ASYNC
){
api_regist
(
"/index/api/getThreadsLoad"
,
[](
API_ARGS_MAP_ASYNC
)
{
CHECK_SECRET
();
EventPollerPool
::
Instance
().
getExecutorDelay
([
invoker
,
headerOut
](
const
vector
<
int
>
&
vecDelay
)
{
Value
val
;
auto
vec
=
EventPollerPool
::
Instance
().
getExecutorLoad
();
...
...
@@ -611,7 +607,8 @@ void installWebApi() {
//获取后台工作线程负载
//测试url http://127.0.0.1/index/api/getWorkThreadsLoad
api_regist
(
"/index/api/getWorkThreadsLoad"
,
[](
API_ARGS_MAP_ASYNC
){
api_regist
(
"/index/api/getWorkThreadsLoad"
,
[](
API_ARGS_MAP_ASYNC
)
{
CHECK_SECRET
();
WorkThreadPool
::
Instance
().
getExecutorDelay
([
invoker
,
headerOut
](
const
vector
<
int
>
&
vecDelay
)
{
Value
val
;
auto
vec
=
WorkThreadPool
::
Instance
().
getExecutorLoad
();
...
...
server/WebApi.h
查看文件 @
e81efec9
...
...
@@ -221,14 +221,21 @@ bool checkArgs(Args &args, const First &first, const KeyTypes &...keys) {
throw InvalidArgsException("缺少必要参数:" #__VA_ARGS__); \
}
//检查http参数中是否附带secret密钥的宏,127.0.0.1的ip不检查密钥
// 检查http参数中是否附带secret密钥的宏,127.0.0.1的ip不检查密钥
// 同时检测是否在ip白名单内
#define CHECK_SECRET() \
if(sender.get_peer_ip() != "127.0.0.1")
{ \
CHECK_ARGS("secret"
); \
if
(api_secret != allArgs["secret"])
{ \
throw AuthException("
secret错误
"); \
do
{ \
auto ip = sender.get_peer_ip(
); \
if
(!HttpFileManager::isIPAllowed(ip))
{ \
throw AuthException("
Your ip is not allowed to access the service.
"); \
} \
}
if (ip != "127.0.0.1") { \
CHECK_ARGS("secret"); \
if (api_secret != allArgs["secret"]) { \
throw AuthException("secret错误"); \
} \
} \
} while(false);
void
installWebApi
();
void
unInstallWebApi
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论