Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
付智勇
/
koa2_Sequelize_project
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
付智勇
7 years ago
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9519575f8b073d2f988f9c204248ff8cf2fb161c
9519575f
1 parent
537138a0
no message
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
43 行增加
和
2 行删除
controller/recordInfoController.js
routes/RecordInfo.js
services/recordInfoService.js
controller/recordInfoController.js
查看文件 @
9519575
...
...
@@ -90,4 +90,16 @@ recordInfoController.prototype.getRecordFileURL = async(ctx,next)=>{
}
}
recordInfoController
.
prototype
.
getOldRecordInfo
=
async
(
ctx
,
next
)
=>
{
try
{
const
meetingNumber
=
ctx
.
request
.
body
.
meetingNumber
;
let
recordInfo
=
await
recordInfoService
.
getOldRecordInfo
(
meetingNumber
)
return
recordInfo
;
}
catch
(
e
)
{
console
.
log
(
e
)
throw
e
}
}
module
.
exports
=
new
recordInfoController
()
\ No newline at end of file
...
...
routes/RecordInfo.js
查看文件 @
9519575
...
...
@@ -53,6 +53,15 @@ router.post('/tencentRecordInfo', async (ctx, next) => {
status
.
catchError
(
ctx
,
400
,
e
.
message
);
}
})
router
.
post
(
'/getOldRecordInfo'
,
async
(
ctx
,
next
)
=>
{
try
{
var
data
=
await
meetingContoller
.
getOldRecordInfo
(
ctx
,
next
);
status
.
successTemp
(
ctx
,
200
,
data
);
}
catch
(
e
){
console
.
error
(
e
)
status
.
catchError
(
ctx
,
400
,
e
.
message
);
}
})
router
.
post
(
'/getRecordFileURL'
,
async
(
ctx
,
next
)
=>
{
try
{
var
data
=
await
meetingContoller
.
getRecordFileURL
(
ctx
,
next
);
...
...
services/recordInfoService.js
查看文件 @
9519575
...
...
@@ -4,6 +4,7 @@ const callfile = require('child_process');
const
fs
=
require
(
'fs'
);
const
moment
=
require
(
'moment'
)
const
applacation
=
require
(
'../applacation'
)
const
sequelize
=
require
(
'../config'
);
function
recordInfoService
(){
...
...
@@ -47,8 +48,8 @@ recordInfoService.prototype.tencentRecordInfo = async(channelId)=>{
recordInfoService
.
prototype
.
getRecordFileURL
=
async
(
path
,
time
)
=>
{
try
{
let
onlinePath
=
'/netWorkSchool/Agora_Recording_SDK_for_Linux_FULL/samples/'
//let onlinePath = '/Users/fzy/Downloads/Agora_Recording_SDK_for_Linux_FULL/samples/'
//let onlinePath = '/netWorkSchool/Agora_Recording_SDK_for_Linux_FULL/samples/'
let
onlinePath
=
'/Users/fzy/Downloads/Agora_Recording_SDK_for_Linux_FULL/samples/'
var
backFile
=
[];
var
fileU
let
addrecord
=
await
recordInfo
.
findAll
({
where
:{
channel
:
path
}});
...
...
@@ -127,4 +128,23 @@ recordInfoService.prototype.getRecordFileURL = async(path,time)=>{
}
recordInfoService
.
prototype
.
getOldRecordInfo
=
async
(
meetingNumber
)
=>
{
try
{
let
sql
=
`
SELECT
*
FROM
3
m_meeting_current_info
WHERE
3
m_meeting_current_info
.
meeting_number
=
'`+meetingNumber+`'
ORDER
BY
3
m_meeting_current_info
.
create_time
DESC
`
console
.
log
(
sql
);
let
OldRecordInfo
=
await
sequelize
.
query
(
sql
);
return
OldRecordInfo
[
0
][
0
];
}
catch
(
error
)
{
throw
error
;
}
}
module
.
exports
=
new
recordInfoService
();
\ No newline at end of file
...
...
请
注册
或
登录
后发表评论