shellUtil.js
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const callfile = require('child_process');
const recordInfo =require( '../../../model/RecordInfoModel');
const recordStatus =require( '../../../model/RecordStatusModel')
const uuid = require('../../UuidUtil');
const moment = require('moment')
function shell(){
}
shell.prototype.Recording =async(appId,uid,channel,channelKey,body)=>{
// return new Promise((resolve, reject) =>{
try {
body.id = uuid.db32()
body.createTime = new Date().getTime();
var channelInfo = await recordStatus.findOne({where:{channel:channel}});
let r = await recordInfo.create(body);
if(channelInfo){
if(channelInfo.status == 0){
var channelInfo = await recordStatus.update({status:1},{where:{channel:channel}});
}else if(channelInfo.status == 1){
throw false ;
}
}else{
var channelInfo = await recordStatus.create({id:uuid.db32(),channel:channel,status:1});
}
let shell =`cd /netWorkSchool/Agora_Recording_SDK_for_Linux_FULL/samples/ && ./Recorder_local`+
` --appId ` +appId +
//` --uid ` +uid +
` --channel ` + channel +
//` --channelKey ` + channelKey +
" --appliteDir \`pwd\`/../bin";
console.log(shell)
await callfile.exec(shell)
return true
} catch (error) {
throw error
}
// })
}
module.exports = new shell();