付智勇

no message

... ... @@ -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
... ...
... ... @@ -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);
... ...
... ... @@ -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
3m_meeting_current_info
WHERE
3m_meeting_current_info.meeting_number = '`+meetingNumber+`'
ORDER BY
3m_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
... ...