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 ++++++++++++++++ src/modules/posts.js | 10 ++++++---- src/views/tag.html | 3 +++ 3 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 src/views/tag.html (limited to 'src') 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 diff --git a/src/modules/posts.js b/src/modules/posts.js index 2d831af..834d45c 100644 --- a/src/modules/posts.js +++ b/src/modules/posts.js @@ -24,14 +24,16 @@ function canonicaliseMetadata (meta) { return meta } -function get (filename) { - return canonicaliseMetadata(matter.read(filename, grayMatterOptions)) -} - function getTitle (file) { return path.basename(file.path, path.extname(file.path)) } +function get (filename) { + const fileMatter = matter.read(filename, grayMatterOptions) + fileMatter.basename = getTitle(fileMatter) + return canonicaliseMetadata(fileMatter) +} + function getFolder (folder) { return new Map( fs diff --git a/src/views/tag.html b/src/views/tag.html new file mode 100644 index 0000000..7ff9871 --- /dev/null +++ b/src/views/tag.html @@ -0,0 +1,3 @@ +{% for post in posts %} + {{ post.data.get('title') }} +{% endfor %} -- cgit 1.4.1