mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
658 B
33 lines
658 B
8 years ago
|
"use strict";
|
||
|
|
||
|
var express = require('express');
|
||
|
var router = express.Router();
|
||
|
var _ = require('lodash');
|
||
|
|
||
|
var validPathRe = new RegExp("^([a-z0-9\\/-]+\\.[a-z0-9]+)$");
|
||
|
|
||
|
// ==========================================
|
||
|
// SERVE UPLOADS FILES
|
||
|
// ==========================================
|
||
|
|
||
|
router.get('/*', (req, res, next) => {
|
||
|
|
||
|
let fileName = req.params[0];
|
||
|
if(!validPathRe.test(fileName)) {
|
||
|
return res.sendStatus(404).end();
|
||
|
}
|
||
|
|
||
|
//todo: Authentication-based access
|
||
|
|
||
|
res.sendFile(fileName, {
|
||
|
root: git.getRepoPath() + '/uploads/',
|
||
|
dotfiles: 'deny'
|
||
|
}, (err) => {
|
||
|
if (err) {
|
||
|
res.status(err.status).end();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
module.exports = router;
|