Add basic pipeline plumbing

This commit is contained in:
Charlotte Allen 2020-02-12 16:36:35 -08:00
parent ef6922ab83
commit eea6a1e858
No known key found for this signature in database
GPG Key ID: 3A64C3A6C69860B0
8 changed files with 64 additions and 44 deletions

1
.gitignore vendored
View File

@ -18,3 +18,4 @@ profiles.clj
resources/posts/
/resources/author/
resources/index/
.eastwood

View File

@ -1,7 +1,6 @@
(ns shapey-shifty.index.index
(:require [clucy.core :as clucy]
[shapey-shifty.posts.posts-io :as post-io]
))
[shapey-shifty.posts.posts-io :as post-io]))
(def index-path (atom "resources/index"))

View File

@ -0,0 +1,24 @@
(ns shapey-shifty.pipeline.core)
(def pipelines (atom {:load-post []
:render-post []
:write-post []}))
(defn update-pipeline [k f]
(swap! pipelines #(update % k conj f)))
(defn add-load-post-step [f]
(update-pipeline :load-post f))
(defn add-render-post-step [f]
(update-pipeline :render-post f))
(defn add-write-post-step [f]
(update-pipeline :write-post f))
(defn execute-pipeline [k params]
(let [p (k @pipelines)]
((apply comp p) params)))
(defn add-pipeline [k v]
(swap! pipelines #(assoc % k v)))

View File

@ -2,7 +2,7 @@
(:require
[shapey-shifty.layout :as layout]
[clojure.java.io :as io]
[shapey-shifty.middleware :as middleware]
[shapey-shifty.middleware :as mid]
[ring.util.response]
[shapey-shifty.posts.core :as posts]
[shapey-shifty.posts.posts-io :as post-io]
@ -10,12 +10,11 @@
[shapey-shifty.authors.author-core :as author]
[ring.util.http-response :as response]))
(def middleware (atom [mid/wrap-csrf mid/wrap-formats]))
(defn home-page [request]
(layout/render request "home.html" {:docs (-> "docs/docs.md" io/resource slurp)}))
(defn test-view [request]
(layout/render request "post.html" {:post (-> (posts/create-empty-post) (posts/set-content "Hey there everyone!") (posts/set-name "Yolo") :properties)}))
(defn post-view [request]
(let [{:keys [path-params query-params body-params]} request
{:keys [year month day n]} path-params
@ -25,15 +24,12 @@
(defn about-page [request]
(layout/render request "h_card.html"
{
:card (:card (author/load-author (get-in request [:path-params :name])))
}))
{:card (:card (author/load-author (get-in request [:path-params :name])))}))
(defn home-routes []
[""
{:middleware [middleware/wrap-csrf
middleware/wrap-formats]}
{:middleware @middleware}
["/" {:get home-page}]
["/blog/:year/:month/:day/:n" {:get post-view}]
["/about/:name" {:get about-page}]])
["/about/:name" {:get about-page}]
["/:year/:month/:day/:n" {:get post-view}]])