src/app.js (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | "use strict"; const Koa = require("koa"); const app = new Koa(); const helmet = require("koa-helmet"); const actions = require("./actions.js"); const responders = require("./responders.js"); const config = require("./modules/config.js"); const Router = require("koa-router"); const router = new Router(); app.context.getURL = router.url.bind(router); module.exports = async function() { const Posts = await require("./domain/posts.js")(config.posts, basename => router.url("post", basename) ); router.get("home", "/", actions.home(config, responders.home, Posts.posts)); router.get( "posts", "/post", actions.posts(config, responders.list, Posts.posts) ); router.get( "highlight-theme", "/css/code.css", actions.highlightTheme(config) ); router.get( "post", "/post/:filename", actions.post(config, responders.post, Posts.posts) ); for (let [term, items] of Posts.taxonomies) { router.get( `taxon-${term}`, `/${term}/:value`, actions.taxonGenerator(config, responders.list, term, items) ); } app.use( helmet({ hsts: { setIf: ctx => ctx.secure } }) ); app.use(router.routes()).use(router.allowedMethods()); app.use(actions.serveFiles); return app; }; |