-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfilepreview.js
More file actions
315 lines (256 loc) · 9.26 KB
/
filepreview.js
File metadata and controls
315 lines (256 loc) · 9.26 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
const logger = require('./util/logger');
const unoconv = require('unoconv-promise');
unoconv.listen();
const fetch = require('node-fetch');
const fs = require('fs');
const path = require('path');
const url = require('url');
const FormData = require('form-data');
const config = require('config');
import ThumbnailGenerator from 'video-thumbnail-generator';
const ffmpeg = require('fluent-ffmpeg');
const { createReadStream } = require('fs');
const admin_password = config.get('app_admin_password');
//logger.info("Using admin password = " + admin_password);
class FilePreview {
constructor() {
this.tempDir = './tmp/';
this.fcurlbase = '';
this.fcpath = '';
this.fcurl = '';
this.fileName = '';
this.callBack = '';
this.authToken = '';
}
supportFormats() {
unoconv
.formats()
.then(formats => {
// formats will be an array contains supports formats
formats.forEach(format => {
console.log(format['format']);
});
})
.catch(e => {
throw e;
});
}
/**
* Main entry point method, called by kafka consumer to begin conversion
* process
* @param furl : The URL to use to get to the file
* @param fName : Name of the file
* @param onSuccess : Callback method once this is all done
* @returns {Promise<void>}
*/
async generatePreview(furl,fName, onSuccess) {
this.fcurl = furl;
this.callBack = onSuccess;
this.fileName = fName;
let myURL = new URL(this.fcurl);
this.fcpath = myURL.searchParams.get('fspath');
this.fcurlbase = myURL.protocol+"//"+myURL.host;
await this.doAdminLogin();
}
/**
* Login using services admin credentials to get to files
*
* @returns {Promise<void>}
*/
async doAdminLogin() {
let url = this.fcurlbase + "/api/v1/admin.login";
let body = 'email=admin@airsend.io&password='+admin_password;
//logger.info(url + " " + body);
fetch(url, { method: 'POST',
body: body,
headers: { 'Content-Type': 'application/x-www-form-urlencoded' }})
.then(res => res.json()) // expecting a json response
.then((json) => {
//logger.info(JSON.stringify(json));
this.authToken = json.token;
this.download();
}
);
}
/**
* Downloads file to begin conversion. Auth should be ready at this point
* @returns {Promise<void>}
*/
async download() {
if (this.authToken == '') {
logger.error(" Auth failed. Not proceeding");
}
//logger.info(authToken);
this.fcurl = this.fcurl + "&token="+this.authToken;
fetch(this.fcurl)
.then(res => {
logger.info("Download Call Status = " + res.status);
if (res.status == 200) {
if (!fs.existsSync(this.tempDir)) {
fs.mkdirSync(this.tempDir);
}
const storePath = path.normalize(this.tempDir + this.fileName);
//logger.info(fcurl + " ===> [" + storePath + "]");
const dest = fs.createWriteStream(storePath);
res.body.pipe(dest);
// the finish event is emitted when all data has been flushed from the stream
dest.on('finish', () => {
logger.info('Completed file download. Starting thumb creation');
dest.close();
this.createThumb(storePath, this.fileName);
});
}
else {
logger.error("Failed downloading" );
}
});
}
/**
* Document file to jpg file conversion using uconv library and reupload back to airsend
*
* @param filePath
* @param fileName
* @returns {Promise<void>}
*/
async createThumb(filePath, fileName) {
let ext = fileName.substr(fileName.lastIndexOf('.') + 1).toLowerCase();
logger.info("Creating thumb for " + fileName);
if (this.isVideo(ext)) {
//this.extractThumb(filePath);
this.processVideo(filePath);
}
else {
let rc = false;
let rand = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
this.convPdf = path.normalize(this.tempDir + 'thumb_' + rand + '.pdf');
this.convJpg = path.normalize(this.tempDir + 'thumb_' + rand + '.jpg');
if (ext != 'pdf') {
rc = await this.convertToPdf(filePath);
if (!rc) {
logger.error("Failed pdf conversion of " + filePath);
this.callBack(false);
return;
}
logger.info("Deleting " + filePath);
fs.unlinkSync(filePath);
} else {
this.convPdf = filePath;
}
rc = await this.convertToJpg(this.convPdf);
if (!rc) {
logger.error("Failed Jpg conversion of " + this.convPdf);
this.callBack(false);
return;
}
fs.unlinkSync(this.convPdf);
// Upload the file now
await this.uploadSideCar(this.convJpg);
}
}
async convertToPdf(filePath) {
logger.info("Converting [" + filePath + "] ===> [" + this.convPdf + "]");
try {
await unoconv
.run({
file: filePath,
output: this.convPdf
})
} catch (e) {
logger.error(e);
return false;
}
return true;
}
async convertToJpg(filePath) {
logger.info("Converting [" + filePath + "] ===> [" + this.convJpg + "]");
try {
await unoconv
.run({
file: filePath,
output: this.convJpg
})
} catch (e) {
logger.error(e);
return false;
}
return true;
}
async uploadSideCar(convPng) {
let uploadUrl =this.fcurlbase + '/api/v1/internal/file.sidecarupload?fspath='+this.fcpath;
logger.info("Uploading " + uploadUrl);
const stream = createReadStream(convPng);
const form = new FormData();
form.append('file', stream);
uploadUrl = uploadUrl + "&token="+this.authToken;
fetch( uploadUrl,
{ method: 'POST',
body: form })
.then(res => res.json())
.then((json) => {
logger.info(JSON.stringify(json));
// Clean up. Delete the temp files in tmp folder.
logger.info("Deleting " + convPng);
fs.unlinkSync(convPng);
// Call back to indicate success
this.callBack(true);
});
}
isVideo(ext) {
return (ext == 'mp4' || ext == 'mov' || ext == 'avi')
}
processVideo(filePath) {
ffmpeg(filePath).ffprobe((error, videoInfo) => {
if (error) {
logger.error(" Error: " + error);
return;
}
let { duration, size } = videoInfo.format;
logger.info("Duration = " + duration);
// Snip 5 second video
if (duration > 4) {
duration = 4;
}
// Snip the video
this.snipVideo(filePath, duration);
});
}
snipVideo(filePath, fragmentDurationInSeconds) {
let ext = filePath.substr(filePath.lastIndexOf('.') + 1).toLowerCase();
let rand = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
let outputPath = './tmp/snipped_' + rand + '.' + ext;
ffmpeg(filePath).inputOptions('-ss 0')
.outputOptions([`-t ${fragmentDurationInSeconds}`])
.noAudio()
.output(outputPath)
.on('end', () => {
logger.info('Snipped video');
fs.unlinkSync(filePath);
this.extractThumb(outputPath);
})
.on('error', (error) => {
logger.error('Error: ' + error);
fs.unlinkSync(filePath);
})
.run();
}
extractThumb(filePath) {
let rand = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
let outName = 'thumb_' + rand + '.gif';
let tg = new ThumbnailGenerator({
sourcePath:filePath,
thumbnailPath: './tmp/',
logger: logger
});
tg.generateGifCb({scale: 320, fps: 16,speedMultiplier: 1, fileName: outName}, (err, result) => {
logger.info("Deleting " + filePath);
fs.unlinkSync(filePath);
if (err) {
logger.info("Error: " + err);
}
logger.info("Thumb generation complete");
// Upload the file now
this.uploadSideCar("./tmp/" + outName);
});
}
}
module.exports = FilePreview;