From efe09d414a7a8e71974dde57833ebbe97e997146 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 5 Mar 2016 19:03:32 -0500 Subject: refactor blog-handler --- src/guff.cr | 60 ------------------------------------------------------------ 1 file changed, 60 deletions(-) (limited to 'src/guff.cr') diff --git a/src/guff.cr b/src/guff.cr index e62ff1f..2bec70d 100644 --- a/src/guff.cr +++ b/src/guff.cr @@ -2,66 +2,6 @@ require "http/server" require "./guff/*" module Guff - class BlogHandler < Handler - MATCHES = [%r{ - ^/ - - # match YYYY/MM/DD/SLUG.html - (?\d{4}) - / - (?\d{2}) - / - (?\d{2}) - / - (?[a-z0-9._-]+) - \.html - - $ - }x, %r{ - ^/ - - # match YYYY/MM/DD - (?\d{4}) - / - (?\d{2}) - / - (?\d{2}) - /? - - $ - }x, %r{ - ^/ - - # match YYYY/MM - (?\d{4}) - / - (?\d{2}) - /? - - $ - }x, %r{ - ^/ - - # match YYYY - (?\d{4}) - /? - - $ - }x, %r{ - # match index - ^/$ - }x] - - def call(context : HTTP::Server::Context) - path = context.request.path || "" - if md = MATCHES.reduce(nil) { |r, m| r || m.match(path) } - context.response.puts "blog match: %s" % [md.to_s] - else - call_next(context) - end - end - end - class SlugHandler < Handler MOCK_SLUGS = { "foo": "test slug foo", -- cgit v1.2.3