Created
July 28, 2012 23:30
-
-
Save devniel/3195261 to your computer and use it in GitHub Desktop.
jRecorder's acceptfile script for Node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Module dependencies. | |
*/ | |
var express = require('express'), | |
url = require("url"), | |
fs = require("fs"), | |
routes = require('./routes'); | |
var app = module.exports = express.createServer(); | |
// Configuration | |
app.configure(function(){ | |
app.set('views', __dirname + '/views'); | |
app.set('view engine', 'jade'); | |
app.use(express.bodyParser()); | |
app.use(express.methodOverride()); | |
app.use(app.router); | |
app.use(express.static(__dirname + '/public')); | |
}); | |
app.configure('development', function(){ | |
app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); | |
}); | |
app.configure('production', function(){ | |
app.use(express.errorHandler()); | |
}); | |
// Routes | |
app.get('/', routes.index); | |
/* | |
* acceptfile.php translation starts here | |
*/ | |
app.post('/acceptfile',function(req,res){ | |
var query = url.parse(req.url,true).query; | |
console.log(query); | |
var data=''; | |
req.setEncoding('binary'); | |
req.on('data', function(chunk){ | |
data += chunk; | |
}); | |
req.on('end', function(){ | |
req.body = data; | |
console.log("Guardado"); | |
console.log(req.body.length/1024); | |
fs.writeFile("hola.mp3", req.body,"binary",function (err) { | |
if (err) throw err; | |
console.log('It\'s saved!'); | |
}); | |
}); | |
}) | |
app.listen(3000); | |
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment