Compare commits

..

No commits in common. "f7971fef0fc0a2059e95f3bac59879a82890cabb" and "35b07880ebcd042de41b92f58b8b0e4d4e625987" have entirely different histories.

3 changed files with 44 additions and 57 deletions

13
.gitignore vendored
View File

@ -1,9 +1,6 @@
*
!/.vscode
!/.gitignore
!/qonq.js
!/discord-preloader.js
!/package.json
!/package-lock.json
!/README.md
files/*
node_modules
*.log
!.gitkeep
ecosystem.config.js
.env

View File

@ -1,5 +0,0 @@
{
"files.watcherExclude": {
"**/files/**": true
}
}

83
qonq.js
View File

@ -1,4 +1,5 @@
require("dotenv").config();
process.env.NODE_ENV = "production";
var colors = require("colors");
var express = require("express");
var formidable = require("formidable");
@ -13,10 +14,7 @@ if (process.env.HOSTNAMES) {
}
var app = express();
app.set("env", "production");
app.set('trust proxy', '127.0.0.1');
app.listen(process.env.PORT || 8568, process.env.ADDRESS);
app.enable('trust proxy', '127.0.0.1');
app.use((req, res, next)=>{
var d = new Date;
@ -27,56 +25,53 @@ app.use((req, res, next)=>{
next();
});
app.post("*", (req, res, next) => {
if (req.headers.authentication != process.env.AUTH_TOKEN) return void res.status(403).send("Unauthorized");
app.post("/upload", (req, res, next) => {
if (req.headers.authentication != process.env.AUTH_TOKEN) return res.status(403).send("Unauthorized");
var form = new formidable.IncomingForm({
maxFileSize: 2**30, // 1 GiB
maxFields: 1,
uploadDir: process.env.TMP_DIR
});
form.parse(req, function(err, fields, files) {
if (err) return void next(err);
if (err) return next(err);
var file = files.file;
if (!file) return void res.sendStatus(400);
(function trymkdir() {
if (!file) return res.sendStatus(400);
do {
var filecode = Math.random().toString(36).slice(2).substring(0,4);
var webroot = path.join(FILES_DIR, filecode);
fs.mkdir(webroot, function (error) {
if (error) if (error.code == "EEXIST") {
console.log("oof");
trymkdir();
} else next(error);
else {
fs.rename(file.path, path.join(webroot, file.name), function (error) {
if (error) return void next(error);
let url = `${req.protocol}://${filecode}.${randomHostname?.() || req.hostname}`;
res.send(url);
require("./discord-preloader.js")(url);
});
}
});
})();
} while ( fs.existsSync(path.join(FILES_DIR, filecode)) && !console.log("oof") );
try {
fs.mkdirSync(path.join(FILES_DIR, filecode));
fs.renameSync(file.path, path.join(FILES_DIR, filecode, file.name));
} catch(e) {
return next(e);
}
let url = `${req.protocol}://${filecode}.${randomHostname?.() || req.hostname}`;
res.send(url);
require("./discord-preloader.js")(url);
});
});
app.get("*", function(req, res, next){
var filecode = req.hostname.split('.')[0]; // for webroot of main domain i.e. qonq.gq, mkdir files/qonq
var webroot = path.join(FILES_DIR, filecode);
fs.readdir(webroot, function(error, webrootdirlist) {
if (error) return void next(error.code == "ENOENT" ? "route" : error);
if (webrootdirlist.length > 1) {
req.url = path.join(filecode, req.url);
next();
} else if (webrootdirlist.length == 1) {
res.sendFile(webrootdirlist[0], {
root: path.join(process.cwd(), webroot),
headers: {"Content-Disposition": `filename=${webrootdirlist[0]}`}
});
} else {
res.sendStatus(204);
}
});
}, express.static(FILES_DIR), serveIndex(FILES_DIR, {icons: true}));
let filecode = req.hostname.split('.')[0]; // for home page just create file in directory named as the last level of base hostname
let webroot = path.join(FILES_DIR, filecode);
let webrootdirlist = fs.readdirSync(webroot);
if (webrootdirlist.length > 1) {
req.url = path.join(filecode, req.url);
next();
} else if (webrootdirlist.length == 1) {
res.sendFile(webrootdirlist[0], {
root: path.join(process.cwd(), webroot),
headers: {"Content-Disposition": `filename=${webrootdirlist[0]}`}
});
} else {
res.sendStatus(204);
}
});
app.get("*", express.static(FILES_DIR), serveIndex(FILES_DIR, {icons: true}));
app.use(function (error, req, res, next) {
res.status(error.code == "ENOENT" ? 404 : console.error(error.stack) || 500).type("text/plain").send(error.toString());
});
app.listen(process.env.PORT || 8568, process.env.ADDRESS);