-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
44 lines (32 loc) · 1.01 KB
/
app.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
var express = require('express')
, http = require('http')
, path = require('path')
, exec = require('child_process').exec
var app = express()
app.set('port', process.env.PORT || 3000)
app.set('views', path.join(__dirname, 'views'))
app.set('view engine', 'jade')
app.use(express.urlencoded())
app.use(express.methodOverride())
app.use(express.static(path.join(__dirname, 'public')))
app.use(express.bodyParser())
app.post('/', function (req, res) {
var options = req.body.options.split('\r\n')
, args = []
res.header('content-type', 'text/plain')
options.forEach(function (option) {
args.push('-o')
args.push(option)
})
args.push(req.files.file.path)
args.unshift('lp')
exec(args.join(' '), function (err, stdout, stderr) {
res.send('stdout:\n' + stdout + '\n\nstderr:\n' + stderr + '\n')
})
})
app.get('/', function (req, res) {
res.render('index')
})
http.createServer(app).listen(app.get('port'), function(){
console.log('Running on http://localhost:' + app.get('port'))
})