-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
121 lines (104 loc) · 3.18 KB
/
index.js
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
var express = require('express'),
exec = require('child_process').exec,
fs = require('fs'),
https = require('https'),
jade = require('jade'),
less = require('less-middleware'),
app = express();
app.use(less({
src: __dirname + '/public',
compress: true
}));
app.use(express['static']('public'));
app.use(express.logger());
app.engine('jade', jade.__express);
app.get('/', function (req, res) {
res.render('index.jade');
});
app.get('/v/:id', function (req, res) {
res.render('show.jade', { id: req.params.id });
});
app.get('/gif/:id', function (req, res) {
function send_gif(data) {
console.log('GIF ' + data.id + ': streaming GIF');
res.sendfile(data.gifpath);
}
function clean_files(data) {
var command = 'rm -f ' + data.tmpdir + data.id + '*.png ' + data.videopath;
console.log('GIF ' + data.id + ': removing temporary PNGs');
exec(command, function (error, stdout, stderr) {
send_gif(data);
});
}
function generate_gif(data) {
var command = 'convert -colors 16 ' + data.tmpdir + data.id + '*.png ' + data.gifpath;
console.log('GIF ' + data.id + ': creating GIF');
exec(command, function (error, stdout, stderr) {
clean_files(data);
});
}
function extract_thumbnails(data) {
var command = 'ffmpeg -i ' + data.videopath + ' -r 10 ' + data.tmpdir + data.id + '%05d.png';
console.log('GIF ' + data.id + ': creating PNGs');
exec(command, function (error, stdout, stderr) {
generate_gif(data);
});
}
function fetch_video(data, url) {
var file = fs.createWriteStream(data.videopath);
console.log('GIF ' + data.id + ': downloading video');
https.get(url, function (response) {
response.pipe(file);
response.on('end', function () {
extract_thumbnails(data);
});
});
}
function get_vine_url(data) {
console.log('GIF ' + data.id + ': fetching video URL');
https.get('https://vine.co/v/' + data.id + '/card', function (response) {
var url,
chunks = [],
file;
response.on('data', function (chunk) {
chunks.push(chunk);
});
response.on('end', function () {
try {
url = chunks.join('').match(/<source src="([^"]*)"/)[1];
fetch_video(data, url);
}
catch (e) {
res.redirect('/');
}
});
});
}
function serve_gif(data) {
fs.exists(data.gifpath, function (exists) {
console.log('GIF ' + data.id + ': checking if we already have it');
if (exists) {
console.log('GIF ' + data.id + ': bingo! We have it, streaming...');
res.sendfile(data.gifpath);
}
else {
console.log('GIF ' + data.id + ': shoot.. apparently this is the first time someone wants this gif');
get_vine_url(data);
}
});
}
var data = {};
data.id = req.params.id;
data.tmpdir = 'tmp/';
data.gifdir = 'gif/';
data.gifpath = data.gifdir + data.id + '.gif';
data.videopath = data.tmpdir + data.id + '.mp4';
if (data.id.match(/^\w+$/)) {
serve_gif(data);
}
else {
console.log('[WARNING] invalid id: ', data.id);
res.redirect(301, '/');
}
});
app.listen(4000);