-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.lisp
94 lines (70 loc) · 2.59 KB
/
helpers.lisp
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
87
88
89
90
91
92
93
94
;;
;; RoL-server - Rails on Lisp application server
;;
;; Copyright 2012-2015 Thomas de Grivel <[email protected]>
;;
;; Permission to use, copy, modify, and distribute this software for any
;; purpose with or without fee is hereby granted, provided that the above
;; copyright notice and this permission notice appear in all copies.
;;
;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
;; WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
;; MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
;; ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
;; WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
;; ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
;; OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
;;
(in-package :RoL-server)
(defun odd/even (list) ;; Rails cycle
(let (odd)
(mapcar (lambda (x)
(setf odd (not odd))
(list* :odd/even (if odd "odd" "even") x))
list)))
;; To URL
(defgeneric uri-for (thing)
(:documentation "Returns a URI used to access THING."))
(defmethod uri-for ((thing cons))
(route-reverse thing))
;; To HTML
(defgeneric h (thing)
(:documentation "Returns the HTML code for THING."))
(defmethod h ((thing null))
"")
(defmethod h ((thing string))
(quote-html thing))
(defmethod h ((thing symbol))
(h (string-downcase thing)))
(defmethod h ((thing number))
(h (atom-str thing)))
(defmethod h ((object json:fluid-object))
(h (j object)))
;; Markdown
(defgeneric markdown (destination input))
(defmethod markdown ((destination t) (input null))
nil)
(defmethod markdown ((destination stream) (input stream))
(3bmd:parse-and-print-to-stream input destination))
(defmethod markdown ((destination stream) (input string))
(3bmd:parse-string-and-print-to-stream input destination))
(defmethod markdown ((destination null) (input t))
(with-output-to-string (s)
(markdown s input)))
(defun print-markdown (input)
(markdown *reply-stream* input))
;; Convert URLs to links
(defun urls-to-links (text)
(cl-ppcre:regex-replace-all
"(^|\\s)(https?://\\S+)"
text
(lambda (s s1 s2 m1 m2 r1 r2)
(declare (ignore s1 s2 m1 m2))
(let ((space (subseq s (svref r1 0) (svref r2 0)))
(url (subseq s (svref r1 1) (svref r2 1))))
(str space "<a href=\"" (h url) "\">" (h url) "</a>")))))
;; Alert boxes
(define-template-var alerts)
(defmacro alert (level &rest message-parts)
`(push (list ,level (str ,@message-parts))
(template-var alerts)))