forked from sergiusd/docker-ffmpeg-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
405 lines (363 loc) · 14.5 KB
/
app.js
File metadata and controls
405 lines (363 loc) · 14.5 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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
const fs = require('fs');
const express = require('express');
const app = express();
const Busboy = require('busboy');
const compression = require('compression');
const ffmpeg = require('fluent-ffmpeg');
const uniqueFilename = require('unique-filename');
const consts = require(__dirname + '/app/constants.js');
const endpoints = require(__dirname + '/app/endpoints.js');
const winston = require('winston');
const uploadsDir = './uploads';
if (!fs.existsSync(uploadsDir)) {
fs.mkdirSync(uploadsDir);
}
app.use(compression());
winston.remove(winston.transports.Console);
winston.add(winston.transports.Console, {'timestamp': true});
function runFfmpegConversion(createFfmpegCommand, outputFile, res, ffmpegOutputOptions, cleanupInput, fromLabel) {
let ffmpegConvertCommand = createFfmpegCommand();
winston.info(JSON.stringify({
action: 'begin conversion',
from: fromLabel,
to: outputFile,
}));
ffmpegConvertCommand
.renice(15)
.outputOptions(ffmpegOutputOptions)
.on('error', function(err) {
let log = JSON.stringify({
type: 'ffmpeg',
message: err.message || err.toString(),
command: 'ffmpeg ' + ffmpegConvertCommand._getArguments().join(' '),
});
winston.error(log);
if (cleanupInput) {
try {
cleanupInput();
} catch (cleanupErr) {
winston.error(JSON.stringify({
type: 'cleanup',
message: cleanupErr.message || cleanupErr.toString(),
}));
}
}
res.writeHead(500, {'Connection': 'close'});
res.end(log);
})
.on('end', function() {
if (cleanupInput) {
try {
cleanupInput();
} catch (cleanupErr) {
winston.error(JSON.stringify({
type: 'cleanup',
message: cleanupErr.message || cleanupErr.toString(),
}));
}
}
winston.info(JSON.stringify({
action: 'starting download to client',
file: outputFile,
}));
res.download(outputFile, null, function(err) {
if (err) {
winston.error(JSON.stringify({
type: 'download',
message: err.message || err.toString(),
}));
}
winston.info(JSON.stringify({
action: 'deleting',
file: outputFile,
}));
fs.unlinkSync(outputFile);
winston.info(JSON.stringify({
action: 'deleted',
file: outputFile,
}));
});
})
.save(outputFile);
}
for (let prop in endpoints.types) {
if (endpoints.types.hasOwnProperty(prop)) {
let ffmpegParams = endpoints.types[prop];
let bytes = 0;
app.post('/' + prop, function(req, res) {
const contentType = req.headers['content-type'] || '';
if (contentType.indexOf('application/json') !== -1) {
let body = '';
req.on('data', (chunk) => {
body += chunk.toString();
});
req.on('end', () => {
try {
const data = JSON.parse(body);
const sourceUrl = data.playlistUrl || data.url;
if (!sourceUrl) {
res.writeHead(400, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error: 'playlistUrl or url is required'}));
return;
}
let outputOptions = ffmpegParams.outputOptions.slice();
if (data.outputOptions && typeof data.outputOptions === 'string') {
const overridden = data.outputOptions.split(';');
winston.info(JSON.stringify({
event: 'found outputOptions to override the existing ones',
existing: ffmpegParams.outputOptions,
new: overridden,
}));
outputOptions = overridden;
}
if (data.extraOutputOptions && typeof data.extraOutputOptions === 'string') {
const extra = data.extraOutputOptions.split(';');
winston.info(JSON.stringify({
event: 'appending extraOutputOptions',
extra: extra,
}));
outputOptions = outputOptions.concat(extra);
}
const outputFile = uniqueFilename(__dirname + '/uploads/') + '.' + ffmpegParams.extension;
let inputOptions = [];
if (data.userAgent) {
inputOptions.push('-user_agent');
inputOptions.push(data.userAgent);
}
winston.info(JSON.stringify({
action: 'url conversion request',
url: sourceUrl,
userAgent: data.userAgent || 'none',
}));
runFfmpegConversion(
() => {
let command = ffmpeg(sourceUrl);
if (inputOptions.length) {
command = command.inputOptions(inputOptions);
}
return command;
},
outputFile,
res,
outputOptions,
null,
sourceUrl
);
} catch (err) {
winston.error(JSON.stringify({
type: 'parse error',
message: err.message || err.toString(),
}));
res.writeHead(400, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error: 'Invalid JSON: ' + err.message}));
}
});
return;
}
let hitLimit = false;
let fileName = '';
let savedFile = uniqueFilename(__dirname + '/uploads/');
let requestOutputOptions = null;
let requestExtraOutputOptions = [];
let busboy = new Busboy({
headers: req.headers,
limits: {
files: 1,
fileSize: consts.fileSizeLimit,
},
});
busboy.on('filesLimit', function() {
winston.error(JSON.stringify({
type: 'filesLimit',
message: 'Upload file size limit hit',
}));
});
busboy.on('file', function(
fieldname,
file,
filename,
encoding,
mimetype
) {
file.on('limit', function(file) {
hitLimit = true;
let err = {file: filename, error: 'exceeds max size limit'};
err = JSON.stringify(err);
winston.error(err);
res.writeHead(500, {'Connection': 'close'});
res.end(err);
});
let log = {
file: filename,
encoding: encoding,
mimetype: mimetype,
};
winston.info(JSON.stringify(log));
file.on('data', function(data) {
bytes += data.length;
});
file.on('end', function(data) {
log.bytes = bytes;
winston.info(JSON.stringify(log));
});
fileName = filename;
winston.info(JSON.stringify({
action: 'Uploading',
name: fileName,
}));
let written = file.pipe(fs.createWriteStream(savedFile));
if (written) {
winston.info(JSON.stringify({
action: 'saved',
path: savedFile,
}));
}
});
busboy.on('field', (name, val, info) => {
if (name === 'outputOptions' && val) {
requestOutputOptions = val.split(';');
winston.info(JSON.stringify({
event: 'found outputOptions to override the existing ones',
existing: ffmpegParams.outputOptions,
new: requestOutputOptions,
}));
}
if (name === 'extraOutputOptions' && val) {
requestExtraOutputOptions = val.split(';');
winston.info(JSON.stringify({
event: 'appending extraOutputOptions',
extra: requestExtraOutputOptions,
}));
}
});
busboy.on('finish', function() {
if (hitLimit) {
fs.unlinkSync(savedFile);
return;
}
winston.info(JSON.stringify({
action: 'upload complete',
name: fileName,
}));
let outputFile = savedFile + '.' + ffmpegParams.extension;
let opts = (requestOutputOptions !== null ? requestOutputOptions : ffmpegParams.outputOptions).slice();
opts = opts.concat(requestExtraOutputOptions);
runFfmpegConversion(
() => ffmpeg(savedFile),
outputFile,
res,
opts,
function() {
fs.unlinkSync(savedFile);
},
savedFile
);
});
return req.pipe(busboy);
});
}
}
app.post('/screenshot', function(req, res) {
let body = '';
req.on('data', (chunk) => {
body += chunk.toString();
});
req.on('end', () => {
try {
const data = JSON.parse(body);
const sourceUrl = data.url || data.playlistUrl;
if (!sourceUrl || !data.timestamp) {
res.writeHead(400, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error: 'url and timestamp are required'}));
return;
}
const outputFile = uniqueFilename(__dirname + '/uploads/') + '.jpg';
winston.info(JSON.stringify({
action: 'screenshot conversion request',
url: sourceUrl,
timestamp: data.timestamp,
userAgent: data.userAgent || 'none',
}));
let ffmpegCommand = ffmpeg(sourceUrl);
let inputOptions = ['-ss', data.timestamp];
if (data.userAgent) {
inputOptions.push('-user_agent');
inputOptions.push(data.userAgent);
}
ffmpegCommand
.inputOptions(inputOptions)
.outputOptions(['-frames:v', '1'])
.renice(15)
.on('start', function(commandLine) {
winston.info('FFmpeg command: ' + commandLine);
})
.on('error', function(err) {
let log = JSON.stringify({
type: 'ffmpeg',
message: err.message || err.toString(),
});
winston.error(log);
res.writeHead(500, {'Connection': 'close'});
res.end(log);
})
.on('end', function() {
winston.info(JSON.stringify({
action: 'screenshot created',
file: outputFile,
}));
res.download(outputFile, 'screenshot.jpg', function(err) {
if (err) {
winston.error(JSON.stringify({
type: 'download',
message: err.message || err.toString(),
}));
}
winston.info(JSON.stringify({
action: 'deleting',
file: outputFile,
}));
fs.unlink(outputFile, (unlinkErr) => {
if (!unlinkErr) {
winston.info(JSON.stringify({
action: 'deleted',
file: outputFile,
}));
}
});
});
})
.save(outputFile);
} catch (err) {
winston.error(JSON.stringify({
type: 'parse error',
message: err.message || err.toString(),
}));
res.writeHead(400, {'Content-Type': 'application/json'});
res.end(JSON.stringify({error: 'Invalid JSON: ' + err.message}));
}
});
});
require('express-readme')(app, {
filename: 'README.md',
routes: ['/', '/readme'],
});
const server = app.listen(consts.port, function() {
let host = server.address().address;
let port = server.address().port;
winston.info(JSON.stringify({
action: 'listening',
url: 'http://' + host + ':' + port,
}));
});
server.on('connection', function(socket) {
winston.info(JSON.stringify({
action: 'new connection',
timeout: consts.timeout,
}));
socket.setTimeout(consts.timeout);
socket.server.timeout = consts.timeout;
server.keepAliveTimeout = consts.timeout;
});
app.use(function(req, res, next) {
res.status(404).send(JSON.stringify({error: 'route not available'}) + '\n');
});