feat(ticket_boxing): fix getVideo
gitea/salix/pipeline/head This commit is unstable Details

This commit is contained in:
Alex Moreno 2022-08-03 14:57:39 +02:00
parent 8a08b6f399
commit b4b6d61460
2 changed files with 45 additions and 34 deletions

View File

@ -1,4 +1,5 @@
const axios = require('axios');
const https = require('https');
module.exports = Self => {
Self.remoteMethod('getVideo', {
@ -16,23 +17,16 @@ module.exports = Self => {
type: 'number',
required: false,
description: 'Time to add'
}
],
returns: [
{
arg: 'body',
type: 'file',
root: true
},
{
arg: 'Content-Type',
type: 'String',
http: {target: 'header'}
arg: 'req',
type: 'object',
http: {source: 'req'}
},
{
arg: 'Content-Disposition',
type: 'String',
http: {target: 'header'}
arg: 'res',
type: 'object',
http: {source: 'res'}
}
],
http: {
@ -41,42 +35,59 @@ module.exports = Self => {
},
});
Self.getVideo = async(id, time, options) => {
Self.getVideo = async(id, time, req, res, options) => {
const models = Self.app.models;
const myOptions = {};
console.log('ENTRY');
// console.log('ENTRY');
if (typeof options == 'object')
Object.assign(myOptions, options);
const expedition = await models.Expedition.findById(id, null, myOptions);
const packingSiteConfig = await models.PackingSiteConfig.findOne({}, myOptions);
const monitorId = 'VbiUcajdaT';
console.log(packingSiteConfig);
const monitorId = 'Xme2hiqz1f';
// console.log(packingSiteConfig);
const addTime = (time ? time : packingSiteConfig.avgBoxingTime) * 1000;
const start = new Date(expedition.created);// '2022-07-27T09:00:00';// new Date('2022-07-27'); //
const end = new Date(start.getTime() + addTime);
console.log(addTime);
console.log(start.toISOString().split('.')[0]);
console.log(end.toISOString().split('.')[0]);
// console.log(addTime);
// console.log(start.toString().split('.')[0]);
// console.log(end.toString().split('.')[0]);
const videoUrl = `/${packingSiteConfig.shinobiToken}/videos/${packingSiteConfig.shinobiGroupKey}/${monitorId}`;
const timeUrl = `?start=${start.toISOString().split('.')[0]}&end=${end.toISOString().split('.')[0]}`;
const timeUrl = `?start=${start.toString().split('.')[0]}&end=${end.toString().split('.')[0]}`;
const url = `${packingSiteConfig.shinobiUrl}${videoUrl}${timeUrl}&endIsStartTo`;
console.log(url);
// console.log(url);
const videoList = await axios.post(url);
console.log(videoList.data);
const lastVideo = videoList.data.videos[videoList.data.videos.length - 1].href;
console.log(lastVideo);
const stream = await axios({
method: 'get',
url: `${packingSiteConfig.shinobiUrl}${lastVideo}`,
responseType: 'stream'
}).then(response => {
return response.data;
});
// console.log('videoList.data', videoList.data);
// console.log(videoList.data.videos);
// console.log(videoList.data.videos.length);
const length = videoList.data.videos.length;
// console.log(length);
if (!length) return [];
return [stream, 'video/mp4', `filename="${id}.mp4"`];
const lastVideo = videoList.data.videos[length - 1].href;
const headers = Object.assign({}, req.headers, {
host: 'shinobi.verdnatura.es'
});
const httpOptions = {
host: 'shinobi.verdnatura.es',
path: '/BW4o7FZyJ85she1hlRDe6QnwW3jwEP/videos/xVqft9LFXg/Xme2hiqz1f/2022-08-02T11-45-01.mp4',
port: 443,
headers
};
return new Promise((resolve, reject) => {
const req = https.request(httpOptions,
shinobiRes => {
shinobiRes.pause();
res.writeHeader(shinobiRes.statusCode, shinobiRes.headers);
shinobiRes.pipe(res);
resolve();
});
req.end();
});
};
};

View File

@ -7,7 +7,7 @@ class Controller extends Section {
}
$onInit() {
// window.location.href = this.lilium('dashboard');
window.location.href = this.lilium(`ticket/${this.ticket.id}/boxing`);
}
lilium(route) {