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
5b4d4dab
Commit
5b4d4dab
authored
May 09, 2020
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化截图生成逻辑
parent
76bece02
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
27 行增加
和
28 行删除
+27
-28
server/WebApi.cpp
+27
-28
没有找到文件。
server/WebApi.cpp
查看文件 @
5b4d4dab
...
...
@@ -827,53 +827,52 @@ void installWebApi() {
api_regist2
(
"/index/api/getSnap"
,
[](
API_ARGS2
){
CHECK_SECRET
();
CHECK_ARGS
(
"url"
,
"timeout_sec"
,
"expire_sec"
);
auto
file_prefix
=
MD5
(
allArgs
[
"url"
]).
hexdigest
()
+
"_"
;
string
file_path
;
int
expire_sec
=
allArgs
[
"expire_sec"
];
File
::
scanDir
(
File
::
absolutePath
(
snap_root
,
""
),[
&
](
const
string
&
path
,
bool
isDir
){
if
(
!
isDir
){
auto
pos
=
path
.
find
(
file_prefix
);
if
(
pos
!=
string
::
npos
){
//找到截图
auto
tm
=
FindField
(
path
.
data
()
+
pos
+
file_prefix
.
size
(),
nullptr
,
".jpeg"
);
if
(
atoll
(
tm
.
data
())
+
expire_sec
<
time
(
NULL
)){
//截图已经过期,删除之,后面重新生成
File
::
delete_file
(
path
.
data
());
}
else
{
//截图未过期
file_path
=
path
;
}
return
false
;
}
auto
scan_path
=
File
::
absolutePath
(
MD5
(
allArgs
[
"url"
]).
hexdigest
(),
snap_root
)
+
"/"
;
string
snap_path
;
File
::
scanDir
(
scan_path
,
[
&
](
const
string
&
path
,
bool
isDir
)
{
if
(
isDir
)
{
//忽略文件夹
return
true
;
}
return
true
;
//找到截图
auto
tm
=
FindField
(
path
.
data
()
+
scan_path
.
size
(),
nullptr
,
".jpeg"
);
if
(
atoll
(
tm
.
data
())
+
expire_sec
<
time
(
NULL
))
{
//截图已经过期,删除之,后面重新生成
File
::
delete_file
(
path
.
data
());
return
true
;
}
//截图未过期,中断遍历,返回上次生成的截图
snap_path
=
path
;
return
false
;
});
if
(
!
file_path
.
empty
()){
//返回上次生成的截图
if
(
!
snap_path
.
empty
()){
StrCaseMap
headerOut
;
headerOut
[
"Content-Type"
]
=
HttpFileManager
::
getContentType
(
".jpeg"
);
invoker
.
responseFile
(
headerIn
,
headerOut
,
file
_path
);
return
;
invoker
.
responseFile
(
headerIn
,
headerOut
,
snap
_path
);
return
;
}
//无截图或者截图已经过期
file_path
=
File
::
absolutePath
(
StrPrinter
<<
file_prefix
<<
time
(
NULL
)
<<
".jpeg"
,
snap_root
)
;
snap_path
=
StrPrinter
<<
scan_path
<<
time
(
NULL
)
<<
".jpeg"
;
#if !defined(_WIN32)
//创建文件夹
File
::
create_path
(
file
_path
.
c_str
(),
S_IRWXO
|
S_IRWXG
|
S_IRWXU
);
File
::
create_path
(
snap
_path
.
c_str
(),
S_IRWXO
|
S_IRWXG
|
S_IRWXU
);
#else
File
::
create_path
(
file
_path
.
c_str
(),
0
);
File
::
create_path
(
snap
_path
.
c_str
(),
0
);
#endif
FFmpegSnap
::
makeSnap
(
allArgs
[
"url"
],
file_path
,
allArgs
[
"timeout_sec"
],[
invoker
,
headerIn
,
file
_path
](
bool
success
){
FFmpegSnap
::
makeSnap
(
allArgs
[
"url"
],
snap_path
,
allArgs
[
"timeout_sec"
],[
invoker
,
headerIn
,
snap
_path
](
bool
success
){
if
(
!
success
){
//生成截图失败,可能残留空文件
File
::
delete_file
(
file
_path
.
data
());
File
::
delete_file
(
snap
_path
.
data
());
}
StrCaseMap
headerOut
;
headerOut
[
"Content-Type"
]
=
HttpFileManager
::
getContentType
(
".jpeg"
);
invoker
.
responseFile
(
headerIn
,
headerOut
,
file
_path
);
invoker
.
responseFile
(
headerIn
,
headerOut
,
snap
_path
);
});
});
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论