1
0
Fork 0

style: Format code

pull/24/head v0.2.5
Ambrose Chua 2022-02-16 19:33:13 +08:00
parent 52b6fa5b91
commit 19eae703f4
2 changed files with 37 additions and 34 deletions

View File

@ -1,31 +1,32 @@
const assets = [
{
path: 'bootstrap',
modulePath: 'bootstrap/dist',
},
{
path: 'jquery',
modulePath: 'jquery/dist',
},
{
path: 'octicons',
modulePath: '@primer/octicons/build',
},
{
path: 'filesize',
modulePath: 'filesize/lib',
}, {
path: 'xterm',
modulePath: 'xterm',
}, {
path: 'xterm-addon-attach',
modulePath: 'xterm-addon-attach',
}, {
path: 'xterm-addon-fit',
modulePath: 'xterm-addon-fit',
}
{
path: "bootstrap",
modulePath: "bootstrap/dist",
},
{
path: "jquery",
modulePath: "jquery/dist",
},
{
path: "octicons",
modulePath: "@primer/octicons/build",
},
{
path: "filesize",
modulePath: "filesize/lib",
},
{
path: "xterm",
modulePath: "xterm",
},
{
path: "xterm-addon-attach",
modulePath: "xterm-addon-attach",
},
{
path: "xterm-addon-fit",
modulePath: "xterm-addon-fit",
},
];
module.exports = assets;

View File

@ -73,26 +73,28 @@ app.set("view engine", "handlebars");
app.use("/@assets", express.static(path.join(__dirname, "assets")));
// init assets
assets.forEach(asset => {
assets.forEach((asset) => {
const { path: url, modulePath } = asset;
app.use(
`/@assets/${url}`,
express.static(path.join(__dirname, `node_modules/${modulePath}`))
);
})
});
app.use(
session({
secret: process.env.SESSION_KEY || "meowmeow",
resave: false,
saveUninitialized: false
saveUninitialized: false,
})
);
app.use(flash());
app.use(busboy());
app.use(express.urlencoded({
extended: false
}));
app.use(
express.urlencoded({
extended: false,
})
);
// AUTH
const KEY = process.env.KEY
@ -385,7 +387,7 @@ app.get("/*@download", (req, res) => {
let files = null;
try {
files = JSON.parse(req.query.files);
} catch (e) { }
} catch (e) {}
if (!files || !files.map) {
req.flash("error", "No files selected.");
res.redirect("back");