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
790daee5
Commit
790daee5
authored
Jun 14, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
精简代码
parent
c7cc082d
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
8 行增加
和
12 行删除
+8
-12
src/Http/HttpSession.cpp
+8
-12
没有找到文件。
src/Http/HttpSession.cpp
查看文件 @
790daee5
...
@@ -402,22 +402,19 @@ inline void HttpSession::canAccessPath(const string &path_in,bool is_dir,const f
...
@@ -402,22 +402,19 @@ inline void HttpSession::canAccessPath(const string &path_in,bool is_dir,const f
//该用户从来未获取过cookie,这个时候我们广播是否允许该用户访问该http目录
//该用户从来未获取过cookie,这个时候我们广播是否允许该用户访问该http目录
weak_ptr
<
HttpSession
>
weakSelf
=
dynamic_pointer_cast
<
HttpSession
>
(
shared_from_this
());
weak_ptr
<
HttpSession
>
weakSelf
=
dynamic_pointer_cast
<
HttpSession
>
(
shared_from_this
());
HttpAccessPathInvoker
accessPathInvoker
=
[
weakSelf
,
callback
,
uid
,
path
,
is_dir
]
(
const
string
&
errMsg
,
const
string
&
cookie_path_in
,
int
cookieLifeSecond
)
{
HttpAccessPathInvoker
accessPathInvoker
=
[
weakSelf
,
callback
,
uid
,
path
,
is_dir
]
(
const
string
&
errMsg
,
const
string
&
cookie_path_in
,
int
cookieLifeSecond
)
{
string
cookie_path
=
cookie_path_in
;
if
(
cookie_path
.
empty
()){
//如果未设置鉴权目录,那么我们采用当前目录
if
(
is_dir
){
cookie_path
=
path
;
}
else
{
cookie_path
=
path
.
substr
(
0
,
path
.
rfind
(
"/"
)
+
1
);
}
}
HttpServerCookie
::
Ptr
cookie
;
HttpServerCookie
::
Ptr
cookie
;
if
(
cookieLifeSecond
)
{
if
(
cookieLifeSecond
)
{
//本次鉴权设置了有效期,我们把鉴权结果缓存在cookie中
//本次鉴权设置了有效期,我们把鉴权结果缓存在cookie中
cookie
=
HttpCookieManager
::
Instance
().
addCookie
(
kCookieName
,
uid
,
cookieLifeSecond
);
cookie
=
HttpCookieManager
::
Instance
().
addCookie
(
kCookieName
,
uid
,
cookieLifeSecond
);
//对cookie上锁
//对cookie上锁
auto
lck
=
cookie
->
getLock
();
auto
lck
=
cookie
->
getLock
();
string
cookie_path
=
cookie_path_in
;
if
(
cookie_path
.
empty
()){
//如果未设置鉴权目录,那么我们采用当前目录
cookie_path
=
is_dir
?
path
:
path
.
substr
(
0
,
path
.
rfind
(
"/"
)
+
1
);
}
//记录用户能访问的路径
//记录用户能访问的路径
(
*
cookie
)[
kCookiePathKey
]
=
cookie_path
;
(
*
cookie
)[
kCookiePathKey
]
=
cookie_path
;
//记录能否访问
//记录能否访问
...
@@ -506,8 +503,7 @@ inline void HttpSession::Handle_Req_GET(int64_t &content_len) {
...
@@ -506,8 +503,7 @@ inline void HttpSession::Handle_Req_GET(int64_t &content_len) {
}
}
//判断是否有权限访问该目录
//判断是否有权限访问该目录
auto
path
=
_parser
.
Url
();
canAccessPath
(
_parser
.
Url
(),
true
,[
this
,
bClose
,
strFile
,
strMeun
](
const
string
&
errMsg
,
const
HttpServerCookie
::
Ptr
&
cookie
){
canAccessPath
(
_parser
.
Url
(),
true
,[
this
,
bClose
,
strFile
,
strMeun
,
path
](
const
string
&
errMsg
,
const
HttpServerCookie
::
Ptr
&
cookie
){
if
(
!
errMsg
.
empty
()){
if
(
!
errMsg
.
empty
()){
const_cast
<
string
&>
(
strMeun
)
=
errMsg
;
const_cast
<
string
&>
(
strMeun
)
=
errMsg
;
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论