From 1f2a6245ab1e503dee017ab617aaeda816ecb383 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 18 Jun 2017 14:12:25 +0200 Subject: feat: add tags endpoint --- src/index.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/index.js') diff --git a/src/index.js b/src/index.js index f691930..e811be0 100644 --- a/src/index.js +++ b/src/index.js @@ -29,6 +29,22 @@ router.get('/post/:filename', async function (ctx) { }) }) +const tags = new Map() +for (let [, post] of posts) { + if (post.data.has('tags')) { + for (let tag of post.data.get('tags')) { + tags.set(tag, (tags.get(tag) || []).concat([post])) + } + } +} +router.get('/tags/:tag', async function (ctx) { + ctx.assert(tags.has(ctx.params.tag), 404, 'Tag not found') + await ctx.render('tag', { + tag: ctx.params.tag, + posts: tags.get(ctx.params.tag) + }) +}) + app.use(router.routes()).use(router.allowedMethods()) module.exports = app -- cgit 1.4.1