drop.chapril.org-firefoxsend/app.js

73 lines
2.1 KiB
JavaScript
Raw Normal View History

const express = require("express")
var busboy = require("connect-busboy"); //middleware for form/file upload
var path = require("path"); //used for file path
var fs = require("fs-extra"); //File System - for file manipulation
const app = express()
var redis = require("redis"),
client = redis.createClient();
client.on("error", function(err) {
console.log(err);
})
2017-05-30 18:24:16 +02:00
app.use(busboy());
app.use(express.static(path.join(__dirname, "public")));
app.get("/", function (req, res) {
res.send("Hello World!")
2017-05-30 18:24:16 +02:00
})
app.get("/download/:id", function(req, res) {
res.sendFile(path.join(__dirname + "/public/download.html"));
});
app.get("/assets/download/:id", function(req, res) {
2017-05-30 18:24:16 +02:00
let id = req.params.id;
2017-05-30 18:24:16 +02:00
client.hget(id, "filename", function(err, reply) { // maybe some expiration logic too
if (!reply) {
2017-05-31 18:57:02 +02:00
res.sendStatus(404);
} else {
res.setHeader("Content-Disposition", "attachment; filename=" + reply);
res.setHeader("Content-Type", "application/octet-stream");
2017-05-31 18:57:02 +02:00
res.download(__dirname + "/static/" + id, reply, function(err) {
2017-05-31 18:57:02 +02:00
if (!err) {
client.del(id);
fs.unlinkSync(__dirname + "/static/" + id);
2017-05-31 18:57:02 +02:00
}
});
}
})
2017-05-30 18:24:16 +02:00
});
app.route("/upload/:id")
2017-05-30 18:24:16 +02:00
.post(function (req, res, next) {
2017-05-30 18:24:16 +02:00
var fstream;
req.pipe(req.busboy);
req.busboy.on("file", function (fieldname, file, filename) {
2017-05-30 18:24:16 +02:00
console.log("Uploading: " + filename);
//Path where image will be uploaded
fstream = fs.createWriteStream(__dirname + "/static/" + req.params.id);
2017-05-30 18:24:16 +02:00
file.pipe(fstream);
fstream.on("close", function () {
let id = req.params.id;
2017-05-30 18:24:16 +02:00
client.hset(id, "filename", filename, redis.print);
client.hset(id, "expiration", 0, redis.print);
client.expire(id, 86400000);
console.log("Upload Finished of " + filename);
2017-05-30 23:41:31 +02:00
res.send(id);
2017-05-30 18:24:16 +02:00
});
});
});
app.listen(3000, function () {
console.log("Portal app listening on port 3000!")
})