forked from noir-clojure/noir
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathserver.clj
More file actions
86 lines (76 loc) · 3.22 KB
/
Copy pathserver.clj
File metadata and controls
86 lines (76 loc) · 3.22 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
(ns noir.server
"A collection of functions to handle Noir's server and add middleware to the stack."
(:use compojure.core
[clojure.java.io :only [file]]
[clojure.string :only [join]]
[bultitude.core :only [namespaces-on-classpath]]
[ring.middleware.multipart-params])
(:require [compojure.handler :as compojure]
[noir.server.handler :as handler]))
(defn gen-handler
"Get a full Noir request handler for use with plugins like lein-ring or lein-beanstalk.
If used in a definition, this must come after views have been loaded to ensure that the
routes have already been added to the route table."
[& [opts]]
(-> (handler/base-handler opts)
(handler/wrap-noir-middleware opts)
(handler/wrap-spec-routes opts)
(compojure/api)
(wrap-multipart-params)))
(defn load-views
"Require all the namespaces in the given dirs so that the pages are loaded
by the server."
[& dirs]
(doseq [f (namespaces-on-classpath :classpath (map file dirs))]
(require f)))
(defn load-views-ns
"Require all the namespaces prefixed by the namespace symbol given so that the pages
are loaded by the server."
[& ns-syms]
(doseq [sym ns-syms
f (namespaces-on-classpath :prefix (name sym))]
(require f)))
(defn add-middleware
"Add a middleware function to the noir server. Func is a standard ring middleware
function, which will be passed the handler. Any extra args to be applied should be
supplied along with the function."
[func & args]
(apply handler/add-custom-middleware func args))
(defn wrap-route
"Add a middleware function to a specific route. Route is a standard route you would
use for defpage, func is a ring middleware function, and args are any additional args
to pass to the middleware function. You can wrap the resources and catch-all routes by
supplying the routes :resources and :catch-all respectively:
(wrap-route :resources some-caching-middleware)"
[route middleware & args]
(apply handler/wrap-route route middleware args))
(defn start
"Create a noir server bound to the specified port with a map of options and return it.
The available options are:
:mode - either :dev or :prod
:ns - the root namepace of your project
:jetty-options - any extra options you want to send to jetty like :ssl?
:base-url - the root url to prepend to generated links and resources
:resource-options - a map of options for the resources route (:root or :mime-types)
:session-store - an alternate store for session handling
:session-cookie-attrs - custom session cookie attributes"
[port & [opts]]
;; to allow for jetty to be excluded as a dependency, it is included
;; here inline.
(require 'ring.adapter.jetty)
(println "Starting server...")
(let [run-fn (resolve 'ring.adapter.jetty/run-jetty) ;; force runtime resolution of jetty
jetty-opts (merge {:port port :join? false} (:jetty-options opts))
server (run-fn (gen-handler opts) jetty-opts)]
(println (str "Server started on port [" port "]."))
(println (str "You can view the site at http://localhost:" port))
server))
(defn stop
"Stop a noir server"
[server]
(.stop server))
(defn restart
"Restart a noir server"
[server]
(stop server)
(.start server))