Add account age and karma to autocomplete display.
[lw2-viewer.git] / lw2.lisp
blob199ce4400b949ab07072ed0ba9c1a5cb574c78ce
1 (uiop:define-package #:lw2-viewer
2 (:use #:cl #:sb-thread #:flexi-streams #:djula #:iterate
3 #:lw2-viewer.config #:lw2.utils #:lw2.lmdb #:lw2.backend #:lw2.links #:lw2.clean-html #:lw2.login #:lw2.context #:lw2.sites #:lw2.components #:lw2.html-reader #:lw2.fonts
4 #:lw2.csrf
5 #:lw2.graphql
6 #:lw2.conditions
7 #:lw2.routes
8 #:lw2.response
9 #:lw2.schema-type
10 #:lw2.interface-utils
11 #:lw2.user-context
12 #:lw2.web-push
13 #:lw2.data-viewers.post
14 #:lw2.data-viewers.comment
15 #:lw2.client-script
16 #:lw2.resources)
17 (:import-from #:alexandria #:with-gensyms #:once-only #:ensure-list #:when-let #:when-let* #:if-let #:alist-hash-table)
18 (:import-from #:collectors #:with-collector)
19 (:import-from #:ppcre #:regex-replace-all)
20 (:unintern
21 #:define-regex-handler #:*fonts-stylesheet-uri* #:generate-fonts-link
22 #:user-nav-bar #:*primary-nav* #:*secondary-nav* #:*nav-bars*
23 #:begin-html #:end-html
24 #:*fonts-stylesheet-uris* #:*fonts-redirect-data* #:*fonts-redirect-lock* #:*fonts-redirect-thread*
25 #:postprocess-conversation-title
26 #:map-output
27 #:*earliest-post*
28 #:*extra-external-scripts* #:*extra-inline-scripts*
29 #:site-stylesheets #:site-inline-scripts #:site-scripts #:site-external-scripts #:site-head-elements
30 #:unwrap-stream
31 #:sort-comments
32 #:*html-head*
33 #:with-open-tag)
34 (:recycle #:lw2-viewer #:lw2.backend))
36 (in-package #:lw2-viewer)
38 (named-readtables:in-readtable html-reader)
40 (add-template-directory (asdf:system-relative-pathname "lw2-viewer" "templates/"))
42 (define-cache-database 'backend-lw2-legacy
43 "auth-token-to-userid" "auth-token-to-username" "user-ignore-list")
45 (defvar *read-only-mode* nil)
46 (defvar *read-only-default-message* "Due to a system outage, you cannot log in or post at this time.")
48 (defparameter *default-prefs* (alist :items-per-page 20 :default-sort "new"))
49 (defvar *current-prefs* nil)
51 (defun get-post-sequences (post-id)
52 (when-let (sequence-ids (get-post-sequence-ids post-id))
53 (with-collector (col)
54 (dolist (sequence-id sequence-ids)
55 (let* ((sequence (get-sequence sequence-id))
56 (posts (sequence-post-ids sequence)))
57 (multiple-value-bind (prev next)
58 (loop for prev = nil then (car current)
59 for current on posts
60 when (string= (car current) post-id)
61 return (values prev (second current)))
62 (when (or prev next)
63 (col (list sequence
64 (and prev (get-sequence-post sequence prev))
65 (and next (get-sequence-post sequence next))))))))
66 (col))))
68 (defun rectify-post-relations (post-relations)
69 (remove-if-not (lambda (pr) (cdr (assoc :--id (cdr (first pr))))) post-relations))
71 (defun post-nav-links (post post-sequences)
72 <nav class="post-nav-links">
73 (schema-bind (:post post (target-post-relations source-post-relations) :context :body)
74 (let ((target-post-relations (rectify-post-relations target-post-relations))
75 (source-post-relations (rectify-post-relations source-post-relations)))
76 (when (or target-post-relations source-post-relations)
77 <div class="related-posts">
78 (dolist (relations `((,source-post-relations "Parent question")
79 (,target-post-relations "Sub-question")))
80 (destructuring-bind (related-posts relation-type) relations
81 (when related-posts
82 <div class="related-post-group">
83 <div class="related-post-type">("~A~A" relation-type (if (second related-posts) "s" ""))</div>
84 (dolist (post-relation related-posts)
85 (post-headline-to-html (or (cdr (assoc :source-post post-relation))
86 (cdr (assoc :target-post post-relation)))))
87 </div>)))
88 </div>)))
89 (loop for (sequence prev next) in post-sequences do
90 (progn
91 <div class="post-nav-item sequence">
92 <a class="post-nav sequence-title" href=("/s/~A" (cdr (assoc :--id sequence)))>
93 <span class="post-nav-label">Part of the sequence:</span>
94 <span class="post-nav-title">(safe (clean-text-to-html (cdr (assoc :title sequence))))</span>
95 </a>
96 (labels ((post-nav-link (direction post)
97 <a class=("post-nav ~A" (string-downcase direction)) href=(generate-item-link :post post)>
98 <span class="post-nav-label">(case direction (:prev "Previous: ") (:next "Next: "))</span>
99 <span class="post-nav-title">(safe (clean-text-to-html (cdr (assoc :title post))))</span>
100 </a>))
101 (when prev (post-nav-link :prev prev))
102 (when next (post-nav-link :next next)))
103 </div>))
104 </nav>)
106 (defun rectify-conversation (conversation)
107 (alist-bind ((title (or null string)))
108 conversation
109 (if (or (null title) (string= title ""))
110 (acons :title "[Untitled conversation]" conversation)
111 conversation)))
113 (defun conversation-message-to-html (out-stream message)
114 (alist-bind ((user-id string)
115 (created-at string)
116 (highlight-new boolean)
117 (conversation list)
118 (content list)
119 (contents list)
120 (html-body (or string null)))
121 message
122 (let ((conversation (rectify-conversation conversation)))
123 (multiple-value-bind (pretty-time js-time) (pretty-time created-at)
124 (format out-stream "<div class=\"comment private-message~A\"><div class=\"comment-meta\"><a class=\"author\" href=\"/users/~A\">~A</a> <span class=\"date\" data-js-date=\"~A\">~A~A</span><div class=\"comment-post-title\">Private message in: <a href=\"/conversation?id=~A\">~A</a></div></div><div class=\"body-text comment-body\">"
125 (if highlight-new " comment-item-highlight" "")
126 (encode-entities (get-user-slug user-id))
127 (encode-entities (get-username user-id))
128 js-time
129 pretty-time
130 (pretty-time-js)
131 (encode-entities (cdr (assoc :--id conversation)))
132 (encode-entities (cdr (assoc :title conversation)))))
133 (labels ((ws (html-body) (let ((*memoized-output-stream* out-stream)) (clean-html* html-body))))
134 (cond
135 (contents (ws (cdr (assoc :html contents))))
136 (html-body (ws html-body))
137 (t (format out-stream "~{<p>~A</p>~}" (loop for block in (cdr (assoc :blocks content)) collect (encode-entities (cdr (assoc :text block))))))))
138 (format out-stream "</div></div>"))))
140 (defun conversation-index-to-html (out-stream conversation)
141 (alist-bind ((conversation-id string :--id)
142 (title (or null string))
143 (created-at (or null string))
144 (participants list)
145 (messages-total fixnum))
146 (rectify-conversation conversation)
147 (multiple-value-bind (pretty-time js-time) (if created-at (pretty-time created-at) (values "[Error]" 0))
148 (format out-stream "<h1 class=\"listing\"><a href=\"/conversation?id=~A\">~A</a></h1><div class=\"post-meta\"><div class=\"conversation-participants\"><ul>~:{<li><a href=\"/users/~A\">~A</a></li>~}</ul></div><div class=\"messages-count\">~A</div><div class=\"date\" data-js-date=\"~A\">~A~A</div></div>"
149 (encode-entities conversation-id)
150 (encode-entities title)
151 (loop for p in participants
152 collect (list (encode-entities (cdr (assoc :slug p))) (encode-entities (cdr (assoc :display-name p)))))
153 (pretty-number messages-total "message")
154 js-time
155 pretty-time
156 (pretty-time-js)))))
158 (defun sequence-to-html (sequence)
159 (labels ((contents-to-html (contents &key title subtitle number)
160 (let ((html-body (cdr (assoc :html contents))))
161 (when (or html-body title subtitle)
162 <div class="body-text sequence-text">
163 (when title
164 <h1 class="sequence-chapter">(safe (format nil "~@[~A. ~]~A" number (clean-text-to-html title :hyphenation nil)))</h1>)
165 (when subtitle
166 <div class="sequence-subtitle">(clean-text-to-html subtitle)</div>)
167 (with-html-stream-output (:stream stream)
168 (when html-body
169 (let ((*memoized-output-stream* stream)) (clean-html* html-body))))
170 </div>)))
171 (chapter-to-html (chapter)
172 (alist-bind ((title (or string null))
173 (subtitle (or string null))
174 (number (or fixnum null))
175 (contents list)
176 (posts list))
177 chapter
178 <section>
179 (with-html-stream-output
180 (contents-to-html contents :title title :subtitle subtitle :number number)
181 <section>
182 (with-html-stream-output
183 (dolist (post posts)
184 (post-headline-to-html post)))
185 </section>)
186 </section>)))
187 (alist-bind ((sequence-id string :--id)
188 (title string)
189 (created-at string)
190 (user-id string)
191 (chapters list)
192 (contents list))
193 sequence
194 (multiple-value-bind (pretty-time js-time) (pretty-time created-at)
195 <article>
196 (if chapters
197 <h1 class="post-title">(safe (clean-text-to-html title :hyphenation nil))</h1>
198 <h1 class="listing"><a href=("/s/~A" sequence-id)>(safe (clean-text-to-html title :hyphenation nil))</a></h1>)
199 <div class="post-meta">
200 <a class=("author~{ ~A~}" (list-cond ((logged-in-userid user-id) "own-user-author")))
201 href=("/users/~A" (get-user-slug user-id))
202 data-userid=user-id>
203 (get-username user-id)
204 </a>
205 <div class="date" data-js-date=js-time>
206 (safe pretty-time)
207 (safe (pretty-time-js))
208 </div>
209 </div>
210 (with-html-stream-output
211 (when chapters
212 (contents-to-html contents)
213 (dolist (chapter chapters)
214 (chapter-to-html chapter))))
215 </article>))))
217 (defun abort-response ()
218 (throw 'abort-response nil))
220 (defun abort-response-if-unrecoverable (condition)
221 (when (html-output-stream-error-p condition)
222 (abort-response)))
224 (defmacro with-error-html-block (() &body body)
225 "If an error occurs within BODY, write an HTML representation of the
226 signaled condition to *HTML-OUTPUT*."
227 `(block with-error-html-block
228 (handler-bind ((serious-condition (lambda (c)
229 (abort-response-if-unrecoverable c)
230 (error-to-html c)
231 (return-from with-error-html-block nil))))
232 (log-conditions (progn ,@body)))))
234 (defun make-comment-parent-hash (comments)
235 (let ((existing-comment-hash (make-hash-table :test 'equal))
236 (hash (make-hash-table :test 'equal)))
237 (dolist (c comments)
238 (if-let (id (cdr (assoc :--id c)))
239 (setf (gethash id existing-comment-hash) t)))
240 (dolist (c comments)
241 (let* ((parent-id (cdr (assoc :parent-comment-id c)))
242 (old (gethash parent-id hash)))
243 (setf (gethash parent-id hash) (cons c old))
244 (when (and parent-id (not (gethash parent-id existing-comment-hash)))
245 (let ((placeholder (alist :--id parent-id :parent-comment-id nil :deleted t)))
246 (setf (gethash parent-id existing-comment-hash) t
247 (gethash nil hash) (cons placeholder (gethash nil hash)))))))
248 (maphash (lambda (k old)
249 (setf (gethash k hash) (nreverse old)))
250 hash)
251 (labels
252 ((count-children (parent)
253 (let ((children (gethash (cdr (assoc :--id parent)) hash)))
254 (+ (length children) (apply #'+ (map 'list #'count-children children)))))
255 (add-child-counts (comment-list)
256 (loop for c in comment-list
257 as id = (cdr (assoc :--id c))
258 do (setf (gethash id hash) (add-child-counts (gethash id hash)))
259 collecting (cons (cons :child-count (count-children c)) c))))
260 (setf (gethash nil hash) (add-child-counts (gethash nil hash))))
261 hash))
263 (defun comment-thread-to-html (out-stream emit-comment-item-fn)
264 (format out-stream "<ul class=\"comment-thread\">")
265 (funcall emit-comment-item-fn)
266 (format out-stream "</ul>"))
268 (defun comment-item-to-html (out-stream comment &key extra-html-fn with-post-title level level-invert)
269 (with-error-html-block ()
270 (let ((c-id (cdr (assoc :--id comment)))
271 (user-id (cdr (assoc :user-id comment))))
272 (format out-stream "<li id=\"comment-~A\" class=\"comment-item~{ ~A~}\">"
273 c-id
274 (list-cond
275 (t (if (let ((is-odd (or (not level) (evenp level)))) ;inverted because level counts from 0
276 (if level-invert (not is-odd) is-odd))
277 "depth-odd" "depth-even"))
278 ((and *current-ignore-hash* (gethash user-id *current-ignore-hash*)) "ignored")))
279 (unwind-protect
280 (comment-to-html out-stream comment :with-post-title with-post-title)
281 (if extra-html-fn (funcall extra-html-fn c-id))
282 (format out-stream "</li>")))))
284 (defun comment-tree-to-html (out-stream comment-hash &key (target nil) (level (if target 1 0)) level-invert)
285 (let ((comments (gethash target comment-hash)))
286 (when comments
287 (comment-thread-to-html out-stream
288 (lambda ()
289 (loop for c in comments do
290 (comment-item-to-html out-stream c
291 :level level
292 :level-invert level-invert
293 :extra-html-fn (lambda (c-id)
294 (if (and (= level 10) (gethash c-id comment-hash))
295 (format out-stream "<input type=\"checkbox\" id=\"expand-~A\"><label for=\"expand-~:*~A\" data-child-count=\"~A comment~:P\">Expand this thread</label>"
296 c-id
297 (cdr (assoc :child-count c))))
298 (comment-tree-to-html out-stream comment-hash :target c-id :level (1+ level) :level-invert level-invert)))))))))
300 (defun sort-items (items sort-by)
301 (multiple-value-bind (sort-fn key-fn)
302 (ecase sort-by
303 ((:old :new) (values (if (eq sort-by :old)
304 (lambda (a b) (ignore-errors (local-time:timestamp< a b)))
305 (lambda (a b) (ignore-errors (local-time:timestamp> a b))))
306 (lambda (c) (ignore-errors (local-time:parse-timestring (or (cdr (assoc :posted-at c))
307 (cdr (assoc :created-at c)))))))))
308 (sort items sort-fn :key key-fn)))
310 (defun comment-chrono-to-html (out-stream comments)
311 (let ((comment-hash (make-comment-parent-hash comments))
312 (comments (sort-items comments :old)))
313 (comment-thread-to-html out-stream
314 (lambda ()
315 (loop for c in comments do
316 (let* ((c-id (cdr (assoc :--id c)))
317 (new-c (acons :children (gethash c-id comment-hash) c)))
318 (comment-item-to-html out-stream new-c)))))))
320 (defun comment-post-interleave (list &key limit offset (sort-by :date))
321 (multiple-value-bind (sort-fn sort-key)
322 (ecase sort-by
323 (:date (values #'local-time:timestamp> (lambda (x) (local-time:parse-timestring (cdr (assoc :posted-at x))))))
324 (:date-reverse (values #'local-time:timestamp< (lambda (x) (local-time:parse-timestring (cdr (assoc :posted-at x))))))
325 (:score (values #'> (lambda (x) (cdr (assoc :base-score x))))))
326 (let ((sorted (sort list sort-fn :key sort-key)))
327 (loop for end = (if (or limit offset) (+ (or limit 0) (or offset 0)))
328 for x in sorted
329 for count from 0
330 until (and end (>= count end))
331 when (or (not offset) (>= count offset))
332 collect x))))
334 (defun identify-item (x)
335 (typecase x
336 (cons
337 (if-let (typename (cdr (assoc :----typename x)))
338 (find-symbol (string-upcase typename) (find-package :keyword))
339 (cond
340 ((assoc :message x)
341 :notification)
342 ((assoc :comment-count x)
343 :post)
345 :comment))))
346 (condition :condition)))
348 (defun write-index-items-to-html (out-stream items &key need-auth (empty-message "No entries.") skip-section)
349 (if items
350 (dolist (x items)
351 (with-error-html-block ()
352 (ecase (identify-item x)
353 (:condition
354 (error-to-html x))
355 (:notification
356 (format out-stream "<p>~A</p>" (cdr (assoc :message x))))
357 (:message
358 (format out-stream "<ul class=\"comment-thread\"><li class=\"comment-item depth-odd\">")
359 (unwind-protect
360 (conversation-message-to-html out-stream x)
361 (format out-stream "</li></ul>")))
362 (:conversation
363 (conversation-index-to-html out-stream x))
364 (:post
365 (post-headline-to-html x :need-auth need-auth :skip-section skip-section))
366 (:comment
367 (comment-thread-to-html out-stream
368 (lambda () (comment-item-to-html out-stream x :with-post-title t))))
369 (:sequence
370 (sequence-to-html x)))))
371 (format out-stream "<div class=\"listing-message\">~A</div>" empty-message)))
373 (defun write-index-items-to-rss (out-stream items &key title need-auth)
374 (let ((full-title (format nil "~@[~A - ~]~A" title (site-title *current-site*)))
375 (items (firstn (sort-items items :new) 20)))
376 (xml-emitter:with-rss2 (out-stream :encoding "UTF-8")
377 (xml-emitter:rss-channel-header full-title (site-uri *current-site*) :description full-title)
378 (labels ((emit-item (item &key title link (guid (cdr (assoc :--id item))) (author (get-username (cdr (assoc :user-id item))))
379 (date (pretty-time (cdr (assoc :posted-at item)) :format local-time:+rfc-1123-format+)) body)
380 (xml-emitter:rss-item
381 title
382 :link link
383 :author author
384 :pubDate date
385 :guid guid
386 :description body)))
387 (dolist (item items)
388 (ecase (identify-item item)
389 (:post
390 (let ((author (get-username (cdr (assoc :user-id item))))
391 (is-event (cdr (assoc :is-event item))))
392 (emit-item item
393 :title (clean-text (format nil "~A by ~A" (cdr (assoc :title item)) author))
394 :author author
395 :link (generate-post-auth-link item :absolute t :need-auth need-auth :item-subtype (if is-event "event" "post"))
396 :body (clean-html (or (cdr (assoc :html-body (get-post-body (cdr (assoc :--id item)) :revalidate nil))) "") :post-id (cdr (assoc :--id item))))))
397 (:comment
398 (schema-bind (:comment item (comment-id post-id user-id html-body))
399 (when post-id ; XXX fixme
400 (emit-item item
401 :title (format nil "Comment by ~A on ~A" (get-username user-id) (get-post-title post-id))
402 :link (generate-item-link :post post-id :comment-id comment-id :absolute t)
403 :body (clean-html html-body)))))))))))
405 (defun search-bar-to-html (out-stream)
406 (declare (special *current-search-query*))
407 (let ((query (and (boundp '*current-search-query*) (hunchentoot:escape-for-html *current-search-query*))))
408 (format out-stream "<form action=\"/search\" class=\"nav-inner\"><input name=\"q\" type=\"search\" ~@[value=\"~A\"~] autocomplete=\"off\" accesskey=\"s\" title=\"Search [s]~@[&#10;Tip: Paste a ~A URL here to jump to that page.~]\"><button>Search</button></form>" query (main-site-title *current-site*))))
410 (defun inbox-to-html (out-stream user-slug &optional new-messages)
411 (let* ((target-uri (format nil "/users/~A?show=inbox" user-slug))
412 (as-link (string= (hunchentoot:request-uri*) target-uri)))
413 (multiple-value-bind (nm-class nm-text)
414 (if new-messages (values "new-messages" "New messages") (values "no-messages" "Inbox"))
415 (format out-stream "<~:[a href=\"~A\"~;span~*~] id=\"inbox-indicator\" class=\"~A\" accesskey=\"o\" title=\"~A~:[ [o]~;~]\">~A</a>"
416 as-link target-uri nm-class nm-text as-link nm-text))))
418 (defmethod site-nav-bars ((site site))
419 '((:secondary-bar (("archive" "/archive" "Archive" :accesskey "r")
420 ("about" "/about" "About" :accesskey "t")
421 ("search" "/search" "Search" :html search-bar-to-html)
422 user-nav-item))
423 (:primary-bar (("home" "/" "Home" :description "Latest frontpage posts" :accesskey "h")
424 ("recent-comments" "/recentcomments" "<span>Recent </span>Comments" :description "Latest comments" :accesskey "c")))))
426 (defmethod site-nav-bars ((site lesswrong-viewer-site))
427 '((:secondary-bar (("archive" "/archive" "Archive" :accesskey "r")
428 ("sequences" "/library" "Sequences" :description "Sequences" :accesskey "q")
429 ("about" "/about" "About" :accesskey "t")
430 ("search" "/search" "Search" :html search-bar-to-html)
431 user-nav-item))
432 (:tertiary-bar (("questions" "/index?view=questions" "Questions")
433 ("events" "/index?view=events" "Events")
434 ("shortform" "/shortform" "Shortform" :description "Latest Shortform posts")
435 ("alignment-forum" "/index?view=alignment-forum" "Alignment Forum")
436 ("alignment-forum-comments" "/recentcomments?view=alignment-forum" "AF Comments")))
437 (:primary-bar (("home" "/" "Home" :description "Latest frontpage posts" :accesskey "h")
438 ("featured" "/index?view=featured" "Featured" :description "Latest featured posts" :accesskey "f")
439 ("all" "/index?view=all" "All" :description "Latest posts from all sections" :accesskey "a")
440 ("tags" "/tags" "Tags" :description "All tags" :accesskey "v")
441 ("recent-comments" "/recentcomments" "<span>Recent </span>Comments" :description "Latest comments" :accesskey "c")))))
443 (defmethod site-nav-bars ((site ea-forum-viewer-site))
444 '((:secondary-bar (("archive" "/archive" "Archive" :accesskey "r")
445 ("about" "/about" "About" :accesskey "t")
446 ("search" "/search" "Search" :html search-bar-to-html)
447 user-nav-item))
448 (:primary-bar (("home" "/" "Home" :description "Latest frontpage posts" :accesskey "h")
449 ("all" "/index?view=all" "All" :description "Latest posts from all sections" :accesskey "a")
450 ("tags" "/tags" "Wiki" :description "Wiki pages and tags" :accesskey "v")
451 ("shortform" "/shortform" "Shortform" :description "Latest Shortform posts")
452 ("recent-comments" "/recentcomments" "<span>Recent </span>Comments" :description "Latest comments" :accesskey "c")))))
454 (defun prepare-nav-bar (nav-bar current-uri)
455 (list (first nav-bar)
456 (map 'list (lambda (item) (if (listp item) item (funcall item current-uri)))
457 (second nav-bar))))
459 (defun nav-item-active (item current-uri)
460 (when item
461 (destructuring-bind (id uri name &key description html accesskey nofollow trailing-html override-uri) item
462 (declare (ignore id name description html accesskey nofollow trailing-html))
463 (string= (or override-uri uri) current-uri))))
465 (defun nav-bar-active (nav-bar current-uri)
466 (some (lambda (x) (nav-item-active x current-uri)) (second nav-bar)))
468 (defun nav-bar-inner (out-stream items &optional current-uri)
469 (maplist (lambda (items)
470 (let ((item (first items)))
471 (destructuring-bind (id uri name &key description html accesskey nofollow trailing-html override-uri) item
472 (declare (ignore override-uri))
473 (let* ((item-active (nav-item-active item current-uri))
474 (nav-class (format nil "nav-item ~:[nav-inactive~;nav-current~]~:[~; nav-item-last-before-current~]"
475 item-active (and (not item-active) (nav-item-active (cadr items) current-uri)))))
476 (format out-stream "<span id=\"nav-item-~A\" class=\"~A\" ~@[title=\"~A\"~]>"
477 id nav-class description)
478 (if html
479 (funcall html out-stream)
480 (link-if-not out-stream item-active uri "nav-inner" name :accesskey accesskey :nofollow nofollow))
481 (if trailing-html
482 (funcall trailing-html out-stream))
483 (format out-stream "</span>")))))
484 items))
486 (defun nav-bar-outer (out-stream class nav-bar &optional current-uri)
487 (format out-stream "<nav id=\"~A\" class=\"nav-bar~@[ ~A~]\">" (string-downcase (first nav-bar)) class)
488 (nav-bar-inner out-stream (second nav-bar) current-uri)
489 (format out-stream "</nav>"))
491 (defun nav-bar-to-html (out-stream class current-uri)
492 (let* ((nav-bars (map 'list (lambda (x) (prepare-nav-bar x current-uri)) (site-nav-bars *current-site*)))
493 (active-bar (or (find-if (lambda (x) (nav-bar-active x current-uri)) nav-bars) (car (last nav-bars))))
494 (inactive-bars (remove active-bar nav-bars)))
495 (dolist (bar inactive-bars)
496 (nav-bar-outer out-stream (format nil "~@[~A ~]inactive-bar" class) bar current-uri))
497 (nav-bar-outer out-stream (format nil "~@[~A ~]active-bar" class) active-bar current-uri)))
499 (defun user-nav-item (&optional current-uri)
500 (if *read-only-mode*
501 `("login" "/login" "Read Only Mode" :html ,(lambda (out-stream)
502 (format out-stream "<span class=\"nav-inner\" title=\"~A\">[Read Only Mode]</span>"
503 (typecase *read-only-mode*
504 (string *read-only-mode*)
505 (t *read-only-default-message*)))))
506 (if-let (username (logged-in-username))
507 (let ((user-slug (encode-entities (logged-in-user-slug))))
508 `("login" ,(format nil "/users/~A" user-slug) ,(plump:encode-entities username) :description "User page" :accesskey "u"
509 :trailing-html ,(lambda (out-stream) (inbox-to-html out-stream user-slug))))
510 `("login" "/login" "Log In"
511 :html ,(lambda (out-stream)
512 (write-string "<form action='/login' id='login-button-form'><input type='hidden' name='return' value='" out-stream)
513 (encode-entities current-uri out-stream)
514 (write-string "'></form><button class='nav-inner' form='login-button-form' accesskey='u'>Log In</button>" out-stream))))))
516 (defun sublevel-nav-to-html (options current &key default (base-uri (hunchentoot:request-uri*)) (param-name "show") (remove-params '("offset")) extra-class)
517 (declare (type (or null string) extra-class))
518 (let ((out-stream *html-output*))
519 (format out-stream "<nav class=\"sublevel-nav~@[ ~A~]\">" extra-class)
520 (loop for item in options
521 do (destructuring-bind (param-value &key (text (string-capitalize param-value)) description) (if (atom item) (list item) item)
522 (let* ((param-value (string-downcase param-value))
523 (selected (string-equal current param-value))
524 (class (if selected "sublevel-item selected" "sublevel-item")))
525 (link-if-not out-stream selected (apply #'replace-query-params base-uri param-name (unless (string-equal param-value default) param-value)
526 (loop for x in remove-params nconc (list x nil)))
527 class text :title description))))
528 (format out-stream "</nav>")))
530 (defmacro set-script-variables (&rest clauses)
531 (with-gensyms (out-stream name value)
532 `(with-html-stream-output (:stream ,out-stream)
533 ,.(loop for clause in clauses
534 collect (destructuring-bind (name-form value-form) clause
535 `(let ((,name ,name-form)
536 (,value ,value-form))
537 (declare (dynamic-extent ,name ,value))
538 (write-string ,name ,out-stream)
539 (write-string "=" ,out-stream)
540 (json:encode-json ,value ,out-stream)
541 (write-string #.(format nil ";~%") ,out-stream)))))))
543 (defun html-body (out-stream fn &key title description social-description current-uri content-class robots extra-head)
544 (macrolet ((for-resource-type ((resource-type &rest args) &body body)
545 (with-gensyms (resource)
546 `(dolist (,resource page-resources)
547 (when (eq (first ,resource) ,resource-type)
548 (destructuring-bind ,args (rest ,resource)
549 ,@body))))))
550 (with-html-stream-output
551 (let* ((session-token (hunchentoot:cookie-in "session-token"))
552 (csrf-token (and session-token (make-csrf-token session-token)))
553 (hide-nav-bars (truthy-string-p (hunchentoot:get-parameter "hide-nav-bars")))
554 (preview *preview*)
555 (page-resources (nreverse *page-resources*))
556 (site-domain (site-domain *current-site*)))
557 (setf *page-resources* nil)
558 (write-string "<!DOCTYPE html><html lang=\"en-US\"><head>
559 <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
560 <meta name=\"HandheldFriendly\" content=\"True\" />"
561 out-stream)
562 (with-delimited-writer (out-stream delimit :begin "<script>" :end "</script>")
563 (when site-domain
564 (delimit)
565 (set-script-variables ("document.domain" site-domain))) ; Requires origin-agent-cluster header, see below
566 (unless preview
567 (delimit)
568 (when (typep *current-site* 'login-site)
569 (set-script-variables
570 ("loggedInUserId" (or (logged-in-userid) ""))
571 ("loggedInUserDisplayName" (or (logged-in-username) ""))
572 ("loggedInUserSlug" (or (logged-in-user-slug) ""))))
573 (set-script-variables
574 ("applicationServerKey" (get-vapid-public-key))
575 ("GW" (alist "useFancyFeatures" (not (typep *current-site* 'arbital-site))
576 "secureCookies" (to-boolean (site-secure *current-site*))
577 "csrfToken" csrf-token
578 "assets" (alist "popup.svg" (generate-versioned-link "/assets/popup.svg"))
579 "sites" (if site-domain
580 (loop for site in *sites*
581 when (let ((sd (site-domain site))) (and sd (string-equal sd site-domain)))
582 collect (cons (site-host site) t))
583 (alist (site-host *current-site*) t)))))
584 (for-resource-type (:inline-script script-text)
585 (write-string ";" out-stream)
586 (write-string script-text out-stream))))
587 (unless preview
588 (funcall lw2.resources::*script-tags* out-stream)
589 (for-resource-type (:script uri)
590 (format out-stream "<script src=\"~A\"></script>" uri))
591 (funcall lw2.resources::*async-script-tags* out-stream)
592 (for-resource-type (:async-script uri)
593 (format out-stream "<script src=\"~A\" async></script>" uri)))
594 (funcall lw2.resources::*style-tags* out-stream)
595 (for-resource-type (:stylesheet uri &key media class)
596 (format out-stream "<link rel=\"stylesheet\" href=\"~A\"~@[ media=\"~A\"~]~@[ class=\"~A\"~]>" uri media class))
597 (generate-fonts-html-headers (site-fonts-source *current-site*))
598 (format out-stream "<link rel=\"shortcut icon\" href=\"~A\">"
599 (generate-versioned-link "/assets/favicon.ico"))
600 (format out-stream "<title>~@[~A - ~]~A</title>~@[<meta name=\"description\" content=\"~A\">~]~@[<meta name=\"robots\" content=\"~A\">~]"
601 (if title (encode-entities title))
602 (site-title *current-site*)
603 description
604 robots)
605 (unless preview
606 (when title
607 <meta property="og:title" content=title>)
608 (when social-description
609 <meta property="og:description" content=social-description>
610 <meta property="og:type" content="article">))
611 (with-delimited-writer (out-stream delimit :begin "<style>" :between #.(format nil "~%") :end "</style>")
612 (unless (and (typep *current-site* 'login-site) (logged-in-userid))
613 (delimit)
614 (write-string "button.vote { display: none }" out-stream))
615 (when *memoized-output-without-hyphens*
616 ;; The browser has been detected as having bugs related to soft-hyphen characters.
617 ;; But there is some hope that it could still do hyphenation by itself.
618 (delimit)
619 (write-string ".body-text { hyphens: auto; -ms-hyphens: auto; -webkit-hyphens: auto; }" out-stream)))
620 (when preview
621 (format out-stream "<base target='_top'>"))
622 (when extra-head (funcall extra-head))
623 (format out-stream "</head>")
624 (unwind-protect
625 (progn
626 (format out-stream "<body class=\"theme-~A\"><div id=\"content\"~@[ class=\"~{~A~^ ~}\"~]>"
627 (let ((theme (hunchentoot:cookie-in "theme")))
628 (if (and theme (> (length theme) 0))
629 theme
630 "default"))
631 (list-cond (content-class content-class)
632 (hide-nav-bars "no-nav-bars")
633 (preview "preview")))
634 (unless (or hide-nav-bars preview)
635 (nav-bar-to-html out-stream "nav-bar-top" (or current-uri (replace-query-params (hunchentoot:request-uri*) "offset" nil "sort" nil)))
636 (when (and (typep *current-site* 'login-site) (logged-in-userid))
637 (call-with-server-data 'process-user-status "/current-user-status")))
638 (activate-client-trigger "navBarLoaded")
639 (funcall fn))
640 (format out-stream "</div></body></html>"))))))
642 (defun replace-query-params (uri &rest params)
643 (let* ((quri (quri:uri uri))
644 (old-params (quri:uri-query-params quri))
645 (new-params (loop with out = old-params
646 for (param value) on params by #'cddr
647 do (if value
648 (if-let (old-cons (assoc param out :test #'equal))
649 (setf (cdr old-cons) value)
650 (setf out (nconc out (list (cons param value)))))
651 (setf out (remove-if (lambda (x) (equal (car x) param)) out)))
652 finally (return out))))
653 (if new-params
654 (setf (quri:uri-query-params quri) new-params)
655 (setf (quri:uri-query quri) nil))
656 (quri:render-uri quri)))
658 (defun pagination-nav-bars (&key offset total with-next (items-per-page (user-pref :items-per-page)))
659 (if *preview*
660 (lambda (out-stream fn)
661 (declare (ignore out-stream))
662 (funcall fn))
663 (lambda (out-stream fn)
664 (labels ((pages-to-end (n) (< (+ offset (* items-per-page n)) total)))
665 (let* ((with-next (if total (pages-to-end 1) with-next))
666 (next (if (and offset with-next) (+ offset items-per-page)))
667 (prev (if (and offset (>= offset items-per-page)) (- offset items-per-page)))
668 (request-uri (hunchentoot:request-uri*))
669 (first-uri (if (and prev (> prev 0)) (replace-query-params request-uri "offset" nil)))
670 (prev-uri (if prev (replace-query-params request-uri "offset" (if (= prev 0) nil prev))))
671 (next-uri (if next (replace-query-params request-uri "offset" next)))
672 (last-uri (if (and total offset (pages-to-end 2))
673 (replace-query-params request-uri "offset" (- total (mod (- total 1) items-per-page) 1)))))
674 (if (or next prev last-uri)
675 (labels ((write-item (uri class title accesskey)
676 (format out-stream "<a href=\"~A\" class=\"button nav-item-~A~:[ disabled~;~]\" title=\"~A [~A]\" accesskey=\"~A\"></a>"
677 (or uri "#") class uri title accesskey accesskey)))
678 (format out-stream "<nav id='top-nav-bar'>")
679 (write-item first-uri "first" "First page" "\\")
680 (write-item prev-uri "prev" "Previous page" "[")
681 (format out-stream "<span class='page-number'><span class='page-number-label'>Page</span> ~A</span>" (+ 1 (/ (or offset 0) items-per-page)))
682 (write-item next-uri "next" "Next page" "]")
683 (write-item last-uri "last" "Last page" "/")
684 (format out-stream "</nav>")))
685 (funcall fn)
686 (nav-bar-outer out-stream nil (list :bottom-bar
687 (list-cond
688 (first-uri `("first" ,first-uri "Back to first"))
689 (prev-uri `("prev" ,prev-uri "Previous" :nofollow t))
690 (t `("top" "#top" "Back to top"))
691 (next-uri `("next" ,next-uri "Next" :nofollow t))
692 (last-uri `("last" ,last-uri "Last" :nofollow t)))))
693 (format out-stream "<script>document.querySelectorAll('#bottom-bar').forEach(bb => { bb.classList.add('decorative'); });</script>"))))))
695 (defun decode-json-as-hash-table (json-source)
696 (let (current-hash-table current-key)
697 (declare (special current-hash-table current-key))
698 (json:bind-custom-vars
699 (:beginning-of-object (lambda () (setf current-hash-table (make-hash-table :test 'equal)))
700 :object-key (lambda (x) (setf current-key x))
701 :object-value (lambda (x) (setf (gethash current-key current-hash-table) x))
702 :end-of-object (lambda () current-hash-table)
703 :aggregate-scope '(current-hash-table current-key))
704 (json:decode-json-from-source json-source))))
706 (defun get-ignore-hash (&optional (user-id (logged-in-userid)))
707 (if-let (ignore-json (and user-id (cache-get "user-ignore-list" user-id)))
708 (decode-json-as-hash-table ignore-json)
709 (make-hash-table :test 'equal)))
711 (defmacro with-outputs ((out-stream) &body body)
712 (with-gensyms (stream-sym)
713 (let ((out-body (map 'list (lambda (x) `(princ ,x ,stream-sym)) body)))
714 `(let ((,stream-sym ,out-stream))
715 ,.out-body))))
717 (defun call-with-emit-page (out-stream fn &key title description social-description current-uri content-class (return-code 200) robots (pagination (pagination-nav-bars)) top-nav extra-head)
718 (declare (ignore return-code))
719 (ignore-errors
720 (log-conditions
721 (html-body out-stream
722 (lambda ()
723 (when top-nav (funcall top-nav))
724 (funcall pagination out-stream fn))
725 :title title :description description :social-description social-description :current-uri current-uri :content-class content-class :robots robots :extra-head extra-head))))
727 (defun set-cookie (key value &key (max-age (- (expt 2 31) 1)) (path "/"))
728 (hunchentoot:set-cookie key :value value :path path :max-age max-age :secure (site-secure *current-site*)))
730 (defun set-default-headers (return-code)
731 (setf (hunchentoot:content-type*) "text/html; charset=utf-8"
732 (hunchentoot:return-code*) return-code
733 (hunchentoot:header-out :link) (let ((output
734 (with-output-to-string (stream)
735 (with-delimited-writer (stream delimit :between ",")
736 (funcall lw2.resources::*link-header* stream delimit)))))
737 (when (> (length output) 0)
738 output)))
739 (unless lw2.resources::*push-option* (set-cookie "push" "t" :max-age (* 4 60 60))))
741 (defun user-pref (key)
742 (or (cdr (assoc key *current-prefs*))
743 (cdr (assoc key *default-prefs*))))
745 (defun set-user-pref (key value)
746 (assert (boundp 'hunchentoot:*reply*))
747 (if value
748 (setf *current-prefs* (remove-duplicates (acons key value *current-prefs*) :key #'car :from-end t))
749 (setf *current-prefs* (remove key *current-prefs* :key #'car)))
750 (set-cookie "prefs" (quri:url-encode (json:encode-json-to-string *current-prefs*))))
752 (defmacro emit-page ((out-stream &rest args &key (return-code 200) &allow-other-keys) &body body)
753 (once-only (return-code)
754 `(progn
755 (set-default-headers ,return-code)
756 (with-response-stream (,out-stream)
757 (dynamic-flet ((fn () ,@body))
758 (call-with-emit-page ,out-stream
759 #'fn
760 ,@args))))))
762 (defmethod call-with-backend-context ((backend backend-token-login) (request (eql t)) fn)
763 (let ((*current-auth-status* (safe-decode-json (hunchentoot:cookie-in "lw2-status"))))
764 (multiple-value-bind (*current-auth-token* *current-userid* *current-username*)
765 (let* ((auth-token (hunchentoot:cookie-in "lw2-auth-token"))
766 (expires (cdr (assoc :expires *current-auth-status*))))
767 (when (and (nonempty-string auth-token)
768 (not *read-only-mode*)
769 (or (null expires)
770 (and (integerp expires) (<= (get-unix-time) (- expires (* 60 60 24))))))
771 (with-cache-readonly-transaction
772 (values
773 auth-token
774 (cache-get "auth-token-to-userid" auth-token)
775 (cache-get "auth-token-to-username" auth-token)))))
776 (let ((*current-user-slug* (and *current-userid* (get-user-slug *current-userid*))))
777 (funcall fn)))))
779 (defmethod call-with-site-context ((site ignore-list-site) (request (eql t)) fn)
780 (call-next-method
781 site request
782 (lambda ()
783 (let ((*current-ignore-hash* (get-ignore-hash)))
784 (funcall fn)))))
786 (defun call-with-error-page (fn)
787 (with-response-context ()
788 (let* ((*current-prefs* (safe-decode-json (hunchentoot:cookie-in "prefs")))
789 (*preview* (string-equal (hunchentoot:get-parameter "format") "preview")))
790 (multiple-value-bind (*revalidate-default* *force-revalidate-default*)
791 (cond ((ppcre:scan "(?:^|,?)\\s*(?:no-cache|max-age=0)(?:$|,)" (hunchentoot:header-in* :cache-control))
792 (values t t))
793 (*preview*
794 (values nil nil))
796 (values t nil)))
797 (when (not *revalidate-default*)
798 (setf (hunchentoot:header-out :cache-control) (format nil "public, max-age=~A" (* 5 60))))
799 (when (site-domain *current-site*)
800 (setf (hunchentoot:header-out :origin-agent-cluster) "?0")) ; Allow document.domain in Chrome: https://developer.chrome.com/blog/immutable-document-domain/
801 (let ((*memoized-output-without-hyphens*
802 ;; Soft hyphen characters mess up middle-click paste and screen readers, so try to identify whether they are necessary.
803 ;; See https://caniuse.com/?search=hyphens
804 (if-let ((ua (hunchentoot:header-in* :user-agent)))
805 (regex-case ua
806 (" Chrome/(\\d+)"
807 (declare (regex-groups-min 1))
808 (or (> (parse-integer (reg 0)) 87)
809 (ppcre:scan "Macintosh|Android" ua)))
810 (" Edge/(\\d+)"
811 (declare (regex-groups-min 1))
812 (> 19 (parse-integer (reg 0))))
813 (t t))
814 t)))
815 (with-page-resources
816 (catch 'abort-response
817 (handler-bind
818 ((fatal-error (lambda (condition)
819 (abort-response-if-unrecoverable condition)
820 (let ((error-html (with-output-to-string (*html-output*) (error-to-html condition))))
821 (emit-page (out-stream :title "Error" :return-code (condition-http-return-code condition) :content-class "error-page")
822 (write-string error-html out-stream)
823 (when (eq (hunchentoot:request-method*) :post)
824 <form method="post" class="error-retry-form">
825 (loop for (key . value) in (hunchentoot:post-parameters*)
826 do <input type="hidden" name=key value=value>)
827 <input type="submit" value="Retry">
828 </form>))
829 (return-from call-with-error-page)))))
830 (log-conditions
831 (if (or (eq (hunchentoot:request-method*) :post)
832 (not (and (boundp '*test-acceptor*) (boundp '*hunchentoot-taskmaster*)))) ; TODO fix this hack
833 (funcall fn)
834 (sb-sys:with-deadline (:seconds (expt 1.3
835 (min (round (log 30 1.3))
836 (- (hunchentoot:taskmaster-max-thread-count (symbol-value '*hunchentoot-taskmaster*))
837 (hunchentoot:acceptor-requests-in-progress (symbol-value '*test-acceptor*))))))
838 (funcall fn))))))))))))
840 (defmacro with-error-page (&body body)
841 `(dynamic-flet ((fn () ,@body)) (call-with-error-page #'fn)))
843 (defun output-form (out-stream method action id heading csrf-token fields button-label &key textarea end-html)
844 (format out-stream "<form method=\"~A\" action=\"~A\" id=\"~A\"><h1>~A</h1>" method action id heading)
845 (loop for (id label type . params) in fields
846 do (format out-stream "<label for=\"~A\">~A:</label>" id label)
847 do (cond
848 ((string= type "select")
849 (destructuring-bind (option-list &optional default) params
850 (format out-stream "<select name=\"~A\">" id)
851 (loop for (value label) in option-list
852 do (format out-stream "<option value=\"~A\"~:[~; selected~]>~A</option>" value (string= default value) label))
853 (format out-stream "</select>")))
855 (destructuring-bind (&optional (autocomplete "off") default) params
856 (format out-stream "<input type=\"~A\" name=\"~A\" autocomplete=\"~A\"~@[ value=\"~A\"~]>" type id autocomplete (and default (encode-entities default))))))
857 do (format out-stream ""))
858 (if textarea
859 (destructuring-bind (ta-name ta-contents) textarea
860 (format out-stream "<div class=\"textarea-container\"><textarea name=\"~A\">~A</textarea><span class='markdown-reference-link'>You can use <a href='http://commonmark.org/help/' target='_blank'>Markdown</a> here.</span></div>" ta-name (encode-entities ta-contents))))
861 (format out-stream "<input type=\"hidden\" name=\"csrf-token\" value=\"~A\"><input type=\"submit\" value=\"~A\">~@[~A~]</form>"
862 csrf-token button-label end-html))
864 (defun page-toolbar-to-html (&key title new-post new-conversation logout (rss t) ignore enable-push-notifications)
865 (unless *preview*
866 (let ((out-stream *html-output*)
867 (liu (logged-in-userid)))
868 (format out-stream "<div class=\"page-toolbar~@[ hide-until-init~]\">" enable-push-notifications)
869 (when logout
870 (format out-stream "<form method=\"post\" action=\"/logout\"><input type=\"hidden\" name=\"csrf-token\" value=\"~A\"><button class=\"logout-button button\" name=\"logout\">Log out</button></form>"
871 (make-csrf-token)))
872 (when ignore
873 (funcall ignore))
874 (when enable-push-notifications
875 (format out-stream "<script>document.currentScript.outerHTML='<button id=\"enable-push-notifications\" class=\"button\" style=\"display: none\" data-enabled=\"~:[~;true~]\">~:*~:[En~;Dis~]able push notifications</button>'</script>"
876 (find-subscription *current-auth-token*)))
877 (when (and new-conversation liu)
878 (multiple-value-bind (text to)
879 (typecase new-conversation (string (values "Send private message" new-conversation)) (t "New conversation"))
880 (format out-stream "<a class=\"new-private-message button\" href=\"/conversation~@[?to=~A~]\">~A</a>"
881 to text)))
882 (when (and new-post liu)
883 (format out-stream "<a class=\"new-post button\" href=\"/edit-post~@[?section=~A~]\" accesskey=\"n\" title=\"Create new post [n]\">New post</a>"
884 (typecase new-post (string new-post) (t nil))))
885 (when (and title rss)
886 (format out-stream "<a class=\"rss\" rel=\"alternate\" type=\"application/rss+xml\" title=\"~A RSS feed\" href=\"~A\">RSS</a>"
887 title (replace-query-params (hunchentoot:request-uri*) "offset" nil "format" "rss")))
888 (format out-stream "</div>"))))
890 (defun view-items-index (items &key section title current-uri hide-title need-auth extra-head (pagination (pagination-nav-bars)) (top-nav (lambda () (page-toolbar-to-html :title title))) (content-class "index-page") alternate-html)
891 (alexandria:switch ((hunchentoot:get-parameter "format") :test #'string=)
892 ("rss"
893 (setf (hunchentoot:content-type*) "application/rss+xml; charset=utf-8")
894 (with-response-stream (out-stream)
895 (write-index-items-to-rss out-stream items :title title)))
897 (emit-page (out-stream :title (if hide-title nil title) :description (site-description *current-site*) :content-class content-class
898 :current-uri current-uri :robots (if (hunchentoot:get-parameter :offset) "noindex, nofollow")
899 :pagination pagination :top-nav top-nav :extra-head extra-head)
900 (if alternate-html
901 (funcall alternate-html)
902 (write-index-items-to-html out-stream items
903 :need-auth need-auth
904 :skip-section section))))))
906 (defun link-if-not (stream linkp url class text &key accesskey nofollow title)
907 (declare (dynamic-extent linkp url text))
908 (if (not linkp)
909 (format stream "<a href=\"~A\" class=\"~A\"~@[ accesskey=\"~A\"~]~:[~; rel=\"nofollow\"~]~@[ title=\"~A\"~]>~A</a>" url class accesskey nofollow title text)
910 (format stream "<span class=\"~A\"~@[ title=\"~A\"~]>~A</span>" class title text)))
912 (defgeneric main-site-link (site item-type item-designator &key)
913 (:method ((site lw2-frontend-site) (item-type (eql :post)) (post-id string) &key slug comment-id direct-comment-link)
914 (merge-uris
915 (format nil "/posts/~A/~A~[~;#~A~;?commentId=~A~]" post-id slug (if comment-id (if direct-comment-link 2 1) 0) comment-id)
916 (main-site-uri *current-site*)))
917 (:method ((site lw2-frontend-site) (item-type (eql :tag)) (slug string) &key comment-id direct-comment-link)
918 (when (not (and comment-id direct-comment-link))
919 (merge-uris
920 (format nil "/tag/~A~@[/discussion#~A~]" slug comment-id)
921 (main-site-uri *current-site*)))))
923 (defun postprocess-markdown (markdown)
924 (if (typep *current-site* 'alternate-frontend-site)
925 (regex-replace-body
926 ((concatenate 'string (regex-replace-all "\\." (site-uri *current-site*) "\\.") "posts/([^/ ]{17})/([^/# ]*)(?:(#comment-|/comment/|/answer/)([^/ ]{17}))?")
927 markdown)
928 (main-site-link *current-site*
929 :post (reg 0) :slug (reg 1) :comment-id (reg 3)
930 :direct-comment-link (and (reg 3) (reg 2) (string= "/" (reg 2) :end2 1))))
931 markdown))
933 (defun redirect (uri &key (type :see-other) preserve-query)
934 (setf (hunchentoot:return-code*) (ecase type (:see-other 303) (:permanent 301))
935 (hunchentoot:header-out "Location") (if-let ((query (and preserve-query (hunchentoot:query-string*))))
936 (quri:render-uri (quri:make-uri :defaults uri :query query))
937 uri)))
939 (defun main-site-redirect (uri &key (type :see-other))
940 (redirect (merge-uris uri (main-site-uri *current-site*)) :type type))
942 (defmacro request-method (&body method-clauses)
943 (with-gensyms (request-method)
944 `(let ((,request-method (hunchentoot:request-method*)))
945 (cond
946 ,.(loop for method-body in method-clauses
947 collect (destructuring-bind (method args &body inner-body) method-body
948 `(,(if (eq method :get) `(member ,request-method '(:get :head)) `(eq ,request-method ,method))
949 ,(make-binding-form (mapcar (lambda (x) (append (ensure-list x) `(:request-type ,method))) args)
950 inner-body))))))))
952 (defmacro define-page (name path-specifier additional-vars &body body)
953 (labels ((make-lambda (args)
954 (loop for a in args
955 collect (if (atom a) a (first a)))))
956 (multiple-value-bind (path-specifier-form path-bindings-wrapper specifier-vars)
957 (if (stringp path-specifier)
958 (values path-specifier #'identity)
959 (destructuring-bind (specifier-type specifier-body &rest specifier-args) path-specifier
960 (ecase specifier-type
961 (:function
962 (values `(lambda (r) (funcall ,specifier-body (hunchentoot:request-uri r)))
963 (if specifier-args
964 (lambda (body) `(ignorable-multiple-value-bind ,(make-lambda specifier-args) (funcall ,specifier-body (hunchentoot:request-uri*)) ,body))
965 #'identity)
966 specifier-args))
967 (:regex
968 (let ((fn `(lambda (r) (ppcre:scan-to-strings ,specifier-body (hunchentoot:request-uri r)))))
969 (values fn
970 (lambda (body)
971 (with-gensyms (result-vector)
972 `(let ((,result-vector (nth-value 1 (funcall ,fn hunchentoot:*request*))))
973 (declare (type simple-vector ,result-vector)
974 (ignorable ,result-vector))
975 (let
976 ,(loop for v in (make-lambda specifier-args) as x from 0 collecting `(,v (if (> (length ,result-vector) ,x) (aref ,result-vector ,x))))
977 ,body))))
978 specifier-args))))))
979 `(hunchentoot:define-easy-handler (,name :uri ,path-specifier-form) ()
980 (with-error-page
981 (block nil
982 ,(funcall path-bindings-wrapper
983 (make-binding-form (append (mapcar (lambda (x) (append (ensure-list x) '(:passthrough t))) specifier-vars) additional-vars)
984 body))))))))
986 (define-component sort-widget (&key (sort-options '((:new :description "Sort by date posted")
987 (:hot :description "Sort by time-weighted score")
988 (:active :description "Sort by date posted or last comment")
989 (:old :description "Sort by date posted, oldest first")))
990 (pref :default-sort) (param-name "sort") (html-class "sort"))
991 (:http-args ((sort :real-name param-name :member (mapcar (lambda (x) (if (listp x) (first x) x)) sort-options))
992 (sortedby :real-name "sortedBy" :type string)
993 &without-csrf-check))
994 (if sortedby
995 (progn
996 (renderer () nil)
997 sortedby)
998 (let ((sort-string (if sort (string-downcase sort))))
999 (if sort-string
1000 (set-user-pref :default-sort sort-string))
1001 (renderer ()
1002 (sublevel-nav-to-html sort-options
1003 (user-pref pref)
1004 :param-name param-name
1005 :extra-class html-class))
1006 (or sort-string (user-pref pref)))))
1008 (define-component view-index ()
1009 (:http-args ((view :member '(:all :new :frontpage :featured :alignment-forum :questions :nominations :reviews :events) :default :frontpage)
1010 before after
1011 (offset :type fixnum)
1012 (limit :type fixnum :default (user-pref :items-per-page))
1013 (karma-threshold :type fixnum)
1014 &without-csrf-check))
1015 (when (eq view :new) (redirect (replace-query-params (hunchentoot:request-uri*) "view" "all" "all" nil) :type :permanent) (return))
1016 (component-value-bind ((sort-string sort-widget))
1017 (multiple-value-bind (posts total)
1018 (get-posts-index :view (string-downcase view) :before before :after after :offset offset :limit (1+ limit) :sort sort-string :karma-threshold karma-threshold)
1019 (let ((page-title (format nil "~@(~A posts~)" view)))
1020 (renderer ()
1021 (view-items-index (firstn posts limit)
1022 :section view :title page-title :hide-title (eq view :frontpage)
1023 :pagination (pagination-nav-bars :offset (or offset 0) :total total :with-next (and (not total) (> (length posts) limit)))
1024 :content-class (format nil "index-page ~(~A~)-index-page" view)
1025 :top-nav (lambda ()
1026 (page-toolbar-to-html :title page-title
1027 :new-post (if (eq view :meta) "meta" t))
1028 (funcall sort-widget))))))))
1030 (defmacro route-component (name lambda-list &rest args)
1031 `(lambda ,lambda-list
1032 (with-error-page
1033 (component-value-bind ((() (,name ,@args)))
1034 (when ,name
1035 (funcall ,name))))))
1037 (defmacro define-component-routes (site-class &rest clauses)
1038 `(progn
1039 ,@(iter
1040 (for clause in clauses)
1041 (destructuring-bind (name (route-class &rest route-args) route-bindings (component-name &rest component-args)) clause
1042 (collect `(define-route ',site-class ',route-class
1043 :name ',name ,@route-args
1044 :handler (route-component ,component-name ,route-bindings ,@component-args)))))))
1046 (define-component-routes forum-site
1047 (view-root (standard-route :uri "/") () (view-index))
1048 (view-index (standard-route :uri "/index") () (view-index)))
1050 (hunchentoot:define-easy-handler
1051 (view-site-routes
1052 :uri (lambda (req)
1053 (declare (ignore req))
1054 (with-site-context ((let ((host (or (hunchentoot:header-in* :x-forwarded-host) (hunchentoot:header-in* :host))))
1055 (or (find-site host)
1056 (error "Unknown site: ~A" host))))
1057 (call-route-handler *current-site* (hunchentoot:script-name*)))))
1058 nil)
1060 (define-page view-post "/post" ((id :required t))
1061 (redirect (generate-item-link :post id) :type :permanent))
1063 (define-page view-post-lw1-link (:function #'match-lw1-link) ()
1064 (redirect (convert-lw1-link (hunchentoot:script-name*)) :preserve-query t :type :permanent))
1066 (define-page view-post-ea1-link (:function #'match-ea1-link) ()
1067 (redirect (convert-ea1-link (hunchentoot:script-name*)) :preserve-query t :type :permanent))
1069 (define-page view-post-lw2-slug-link (:function #'match-lw2-slug-link) ()
1070 (redirect (convert-lw2-slug-link (hunchentoot:request-uri*)) :type :see-other))
1072 (define-page view-post-lw2-sequence-link (:function #'match-lw2-sequence-link) ()
1073 (redirect (convert-lw2-sequence-link (hunchentoot:request-uri*)) :type :see-other))
1075 (define-page view-feed "/feed" ()
1076 (redirect "/?format=rss" :type :permanent))
1078 (define-page view-allposts "/allPosts" ()
1079 (redirect (format nil "/index~@[?~A~]" (hunchentoot:query-string*)) :type :see-other))
1081 (define-page view-nominations "/nominations" ()
1082 (redirect "/index?view=nominations" :type :see-other))
1084 (define-page view-reviews "/reviews" ()
1085 (redirect "/index?view=reviews" :type :see-other))
1087 (define-page view-review-voting "/reviewVoting" ()
1088 (redirect "https://www.lesswrong.com/reviewVoting" :type :see-other))
1090 (define-page view-coronavirus-link-database "/coronavirus-link-database" ()
1091 (redirect "https://www.lesswrong.com/coronavirus-link-database" :type :see-other))
1093 (defun post-comment (&key need-auth ((:post-id post-id-real)) ((:tag-id tag-id-real)) shortform)
1094 (request-method
1095 (:post (text answer nomination nomination-review af post-id tag-id parent-answer-id parent-comment-id edit-comment-id retract-comment-id unretract-comment-id delete-comment-id)
1096 (let ((lw2-auth-token *current-auth-token*))
1097 (assert lw2-auth-token)
1098 (let* ((post-id (or post-id-real post-id))
1099 (tag-id (or tag-id-real tag-id))
1100 (question (when post-id (cdr (assoc :question (get-post-body post-id :auth-token lw2-auth-token)))))
1101 (new-comment-result
1102 (cond
1103 (text
1104 (let ((comment-data
1105 (list-cond
1106 (t :body (postprocess-markdown text))
1107 ((and post-id (not (or edit-comment-id (and shortform (not parent-comment-id))))) :post-id post-id)
1108 ((and tag-id (not edit-comment-id)) :tag-id tag-id)
1109 (parent-comment-id :parent-comment-id parent-comment-id)
1110 (answer :answer t)
1111 (nomination :nominated-for-review "2020")
1112 (nomination-review :reviewing-for-review "2020")
1113 (parent-answer-id :parent-answer-id parent-answer-id)
1114 (af :af t)
1115 ((and shortform (not parent-comment-id)) :shortform t))))
1116 (if edit-comment-id
1117 (do-lw2-comment-edit lw2-auth-token edit-comment-id comment-data)
1118 (do-lw2-comment lw2-auth-token comment-data))))
1119 (retract-comment-id
1120 (do-lw2-comment-edit lw2-auth-token retract-comment-id '((:retracted . t))))
1121 (unretract-comment-id
1122 (do-lw2-comment-edit lw2-auth-token unretract-comment-id '((:retracted . :false))))
1123 (delete-comment-id
1124 (do-lw2-comment-remove lw2-auth-token delete-comment-id :reason "Comment deleted by its author.")
1125 nil))))
1126 (when post-id
1127 (ignore-errors
1128 (get-post-comments post-id :force-revalidate t)
1129 (when question
1130 (get-post-answers post-id :force-revalidate t))))
1131 (when text
1132 (alist-bind ((new-comment-id simple-string :--id)
1133 (new-comment-html simple-string :html-body))
1134 new-comment-result
1135 (mark-comment-replied (alist* :parent-comment-id parent-comment-id :user-id *current-userid* new-comment-result))
1136 (setf (markdown-source :comment new-comment-id new-comment-html) text)
1137 (redirect (merge-uris (quri:make-uri :fragment (format nil "comment-~A" new-comment-id)
1138 :query (list-cond (need-auth "need-auth" "y")))
1139 (hunchentoot:request-uri*))))))))))
1141 (defun output-comments (out-stream id comments target &key overcomingbias-sort preview chrono replies-open)
1142 (labels ((output-comments-inner ()
1143 (with-error-html-block ()
1144 (if target
1145 (comment-thread-to-html out-stream
1146 (lambda ()
1147 (comment-item-to-html
1148 out-stream
1149 target
1150 :level-invert preview
1151 :extra-html-fn (lambda (c-id)
1152 (let ((*comment-individual-link* nil))
1153 (comment-tree-to-html out-stream (make-comment-parent-hash comments)
1154 :target c-id
1155 :level-invert preview))))))
1156 (if comments
1157 (progn #|<div class="comments-empty-message">(safe (pretty-number (length comments) id))</div>|#
1158 (if chrono
1159 (comment-chrono-to-html out-stream comments)
1160 (let ((parent-hash (make-comment-parent-hash comments)))
1161 (when overcomingbias-sort
1162 (setf (gethash nil parent-hash)
1163 (sort-items (gethash nil parent-hash) :old)))
1164 (comment-tree-to-html out-stream parent-hash))))
1165 <div class="comments-empty-message">("No ~As." id)</div>)))))
1166 (if preview
1167 (output-comments-inner)
1168 (progn (format out-stream "<div id=\"~As\" class=\"comments~:[~; replies-open~]\">" id (and *enable-voting* replies-open))
1169 (unless target
1170 <script>initializeCommentControls\(\)</script>)
1171 (output-comments-inner)
1172 (format out-stream "</div>")))))
1174 (define-json-endpoint (view-karma-vote-post forum-site "/karma-vote/post")
1175 (let ((auth-token *current-auth-token*))
1176 (request-method
1177 (:get (post-id)
1178 (hash-cond (make-hash-table)
1179 (post-id "Post" (sethash (make-hash-table) post-id (get-post-vote post-id auth-token)))
1180 (post-id "Comment" (get-post-comments-votes post-id auth-token))
1181 (post-id "Tag" (get-post-tag-votes post-id auth-token)))))))
1183 (define-page view-post-lw2-link (:function #'match-lw2-link post-id comment-id * comment-link-type post-type)
1184 (need-auth
1185 chrono
1186 (show-comments :real-name "comments" :type boolean :default t)
1187 (format :type string))
1188 (request-method
1189 (:get ()
1190 (when (hunchentoot:get-parameter "commentId")
1191 (redirect (format nil "~A/comment/~A" (generate-item-link :post post-id) comment-id))
1192 (return))
1193 (let* ((lw2-auth-token *current-auth-token*)
1194 (preview (string-equal format "preview"))
1195 (show-comments (and (not preview) show-comments))
1196 (*enable-voting* (not (null (logged-in-userid)))))
1197 (multiple-value-bind (post title condition)
1198 (handler-case (nth-value 0 (get-post-body post-id :auth-token (and need-auth lw2-auth-token)))
1199 (serious-condition (c)
1200 (setf *enable-voting* nil)
1201 (values nil "[missing post]" c))
1202 (:no-error (post)
1203 (values post (cdr (assoc :title post)) nil)))
1204 (let* ((is-event (cdr (assoc :is-event post)))
1205 (correct-subtype (if is-event "event" "post")))
1206 (when (string/= post-type correct-subtype)
1207 (redirect (generate-item-link :post post :comment-id comment-id :item-subtype correct-subtype))
1208 (return)))
1209 (labels ((extra-head ()
1210 (when-let (canonical-source (or (and (not comment-id)
1211 (cdr (assoc :canonical-source post)))
1212 (and (always-canonical *current-site*)
1213 (main-site-link *current-site* :post post-id :slug (cdr (assoc :slug post))
1214 :comment-id comment-id :direct-comment-link t))))
1215 <link rel="canonical" href=canonical-source>)
1216 <script>postId=(with-html-stream-output (:stream stream) (json:encode-json post-id stream))</script>
1217 <script>alignmentForumPost=(if (cdr (assoc :af post)) "true" "false")</script>
1218 (when (logged-in-userid)
1219 (call-with-server-data 'process-vote-data (format nil "/karma-vote/post?post-id=~A" post-id))))
1220 (retrieve-individual-comment (comment-thread-type)
1221 (let* ((comments (case comment-thread-type
1222 (:comment (get-post-comments post-id))
1223 (:answer (get-post-answers post-id))))
1224 (target-comment (find comment-id comments :key (lambda (c) (cdr (assoc :--id c))) :test #'string=)))
1225 (values comments target-comment))))
1226 (if comment-id
1227 (let ((comment-thread-type (if (string= comment-link-type "answer") :answer :comment)))
1228 (multiple-value-bind (comments target-comment) (retrieve-individual-comment comment-thread-type)
1229 (unless target-comment
1230 ;; If the comment was not found, try as an answer, or vice versa.
1231 (setf comment-thread-type (if (eq comment-thread-type :comment) :answer :comment)
1232 (values comments target-comment) (retrieve-individual-comment comment-thread-type))
1233 (unless target-comment
1234 (error 'lw2-not-found-error)))
1235 (let* ((*comment-individual-link* t)
1236 (display-name (get-username (cdr (assoc :user-id target-comment))))
1237 (verb-phrase (cond
1238 ((and (eq comment-thread-type :answer)
1239 (not (cdr (assoc :parent-comment-id target-comment))))
1240 "answers")
1241 (t "comments on"))))
1242 (emit-page (out-stream :title (format nil "~A ~A ~A" display-name verb-phrase title)
1243 :content-class "individual-thread-page comment-thread-page"
1244 :social-description (when-let (x (cdr (assoc :html-body target-comment))) (extract-excerpt x))
1245 :extra-head #'extra-head)
1246 (unless preview
1247 (format out-stream "<h1 class=\"post-title\">~A ~A <a href=\"~A\">~A</a></h1>"
1248 (encode-entities display-name)
1249 verb-phrase
1250 (generate-item-link :post post-id)
1251 (clean-text-to-html title :hyphenation nil)))
1252 (output-comments out-stream "comment" comments target-comment :chrono chrono :preview preview)))))
1253 (let ((post-sequences (get-post-sequences post-id)))
1254 (emit-page (out-stream :title title
1255 :content-class (format nil "post-page comment-thread-page~{ ~A~}"
1256 (list-cond ((cdr (assoc :question post)) "question-post-page")
1257 (post-sequences "in-sequence")
1258 ((not show-comments) "no-comments")))
1259 :social-description (when-let (x (cdr (assoc :html-body post))) (extract-excerpt x))
1260 :extra-head #'extra-head)
1261 (cond
1262 (condition
1263 (error-explanation-case (error-to-html condition)
1264 (lw2-not-allowed-error
1265 <p>This probably means the post has been deleted or moved back to the author's drafts.</p>)))
1267 (post-body-to-html post)))
1268 (when (and lw2-auth-token (equal (logged-in-userid) (cdr (assoc :user-id post))))
1269 (format out-stream "<div class=\"post-controls\"><a class=\"edit-post-link button\" href=\"/edit-post?post-id=~A\" accesskey=\"e\" title=\"Edit post [e]\">Edit post</a></div>"
1270 (cdr (assoc :--id post))))
1271 (alist-bind (fm-crosspost foreign-post) post
1272 (alist-bind (is-crosspost hosted-here) fm-crosspost
1273 (when is-crosspost
1274 (if-let (crosspost-site-host (backend-magnum-crosspost-site *current-backend*))
1275 (let* ((*current-site* (find-site crosspost-site-host))
1276 (crosspost-site-title (main-site-title *current-site*)))
1277 (alist-bind (comment-count base-score) foreign-post
1278 <a class="crosspost" href=(generate-item-link :post foreign-post :absolute t)>Crossposted (if hosted-here "to" "from") (progn crosspost-site-title)
1279 \ \((safe (pretty-number (or base-score 0) "point")), (safe (pretty-number (or comment-count 0) "comment"))\)</a>))
1280 (error "Could not retrieve crossposted post. magnum-crosspost-site not configured.")))))
1281 (post-nav-links post post-sequences)
1282 (activate-client-trigger "postLoaded")
1283 (when show-comments
1284 (write-string "<script> </script>" out-stream)
1285 (finish-output out-stream)
1286 (with-error-html-block ()
1287 ;; Temporary hack to support nominations
1288 (let* ((real-comments (get-post-comments post-id))
1289 (answers (when (cdr (assoc :question post))
1290 (get-post-answers post-id)))
1291 (posted-at (and (typep *current-backend* 'backend-lw2)
1292 (cdr (assoc :posted-at post))))
1293 (posted-timestamp (and posted-at (local-time:parse-timestring posted-at)))
1294 (now (local-time:now))
1295 (nominations-open nil)
1296 (reviews-eligible (timerange "2020-01-01" posted-timestamp "2021-01-01"))
1297 (reviews-open (and reviews-eligible (timerange "2021-12-14" now "2022-01-11"))))
1298 (labels ((top-level-property (comment property)
1299 (or (cdr (assoc property comment))
1300 (cdr (assoc property (cdr (assoc :top-level-comment comment)))))))
1301 (multiple-value-bind (normal-comments nominations reviews)
1302 (loop for comment in real-comments
1303 if (top-level-property comment :nominated-for-review)
1304 collect comment into nominations
1305 else if (top-level-property comment :reviewing-for-review)
1306 collect comment into reviews
1307 else
1308 collect comment into normal-comments
1309 finally (return (values normal-comments nominations reviews)))
1310 (loop for (name comments open) in (list-cond ((or nominations nominations-open)
1311 (list "nomination" nominations nominations-open))
1312 ((or reviews reviews-open)
1313 (list "review" reviews reviews-open))
1314 ((cdr (assoc :question post))
1315 (list "answer" answers t))
1317 (list "comment" normal-comments t)))
1318 do (output-comments out-stream name comments nil
1319 :replies-open open
1320 :overcomingbias-sort (cdr (assoc :comment-sort-order post)) :chrono chrono :preview preview))))))))))))))
1321 (:post ()
1322 (post-comment :post-id post-id :need-auth need-auth))))
1324 (defparameter *edit-post-template* (compile-template* "edit-post.html"))
1326 (define-page view-edit-post "/edit-post" (title url section tags post-id link-post)
1327 (request-method
1328 (:get ()
1329 (let* ((csrf-token (make-csrf-token))
1330 (post-body (if post-id (get-post-body post-id :auth-token (hunchentoot:cookie-in "lw2-auth-token"))))
1331 (section (or section (loop for (sym . sec) in '((:draft . "drafts") (:meta . "meta") (:frontpage-date . "frontpage"))
1332 if (cdr (assoc sym post-body)) return sec
1333 finally (return "all")))))
1334 (emit-page (out-stream :title (if post-id "Edit Post" "New Post") :content-class "edit-post-page")
1335 (render-template* *edit-post-template* out-stream
1336 :csrf-token csrf-token
1337 :title (cdr (assoc :title post-body))
1338 :url (cdr (assoc :url post-body))
1339 :question (cdr (assoc :question post-body))
1340 :tags-supported (typep *current-backend* 'backend-accordius)
1341 :tags (when (and post-id (typep *current-backend* 'backend-accordius)) (do-wl-rest-query (format nil "posts/~a/update_tagset/" post-id) '()))
1342 :post-id post-id
1343 :section-list (loop for (name desc) in '(("all" "All") ("meta" "Meta") ("frontpage" "Frontpage") ("drafts" "Drafts"))
1344 when (or (string= name section) (member name '("drafts" "all") :test #'string=))
1345 collect (alist :name name :desc desc :selected (string= name section)))
1346 :lesswrong-misc (typep *current-backend* 'backend-lw2-misc-features)
1347 :submit-to-frontpage (if post-id (cdr (assoc :submit-to-frontpage post-body)) t)
1348 :markdown-source (or (and post-id (markdown-source :post post-id (cdr (assoc :html-body post-body)))) "")))))
1349 (:post (text question submit-to-frontpage)
1350 (let ((lw2-auth-token *current-auth-token*)
1351 (url (if (string= url "") nil url)))
1352 (assert lw2-auth-token)
1353 (let* ((post-data
1354 (list-cond
1355 (t :body (postprocess-markdown text))
1356 (t :title (or (nonempty-string title) "Untitled"))
1357 (link-post :url url)
1358 (t :meta (or (string= section "meta") :false))
1359 ((not post-id) :is-event nil)
1360 (t :draft (or (string= section "drafts") :false))
1361 ((typep *current-backend* 'backend-lw2-misc-features) :submit-to-frontpage (and submit-to-frontpage t))
1362 ((not post-id) :question (if question t :false))))
1363 (post-unset
1364 (list-cond
1365 ((not link-post) :url t)))
1366 (new-post-data
1367 (if post-id
1368 (do-lw2-post-edit lw2-auth-token post-id post-data post-unset)
1369 (do-lw2-post lw2-auth-token post-data)))
1370 (new-post-id (cdr (assoc :--id new-post-data))))
1371 (assert new-post-id)
1372 (when (typep *current-backend* 'backend-accordius)
1373 (do-wl-rest-mutate :post
1374 (format nil "posts/~a/update_tagset/" post-id)
1375 (alist "tags" tags)
1376 lw2-auth-token))
1377 (setf (markdown-source :post new-post-id (cdr (assoc :html-body new-post-data))) text)
1378 (ignore-errors (get-post-body post-id :force-revalidate t))
1379 (redirect (if (js-true (cdr (assoc :draft post-data)))
1380 (concatenate 'string (generate-item-link :post new-post-data) "?need-auth=y")
1381 (generate-item-link :post new-post-data))))))))
1383 (define-json-endpoint (view-karma-vote forum-site "/karma-vote")
1384 (let ((auth-token *current-auth-token*))
1385 (request-method
1386 (:post (target target-type (vote-json :real-name "vote"))
1387 (let ((vote (safe-decode-json vote-json)))
1388 (multiple-value-bind (current-vote result)
1389 (do-lw2-vote auth-token target-type target vote)
1390 (alist-bind (vote-count base-score af af-base-score extended-score all-votes) result
1391 (let ((vote-buttons (vote-buttons base-score
1392 :as-text t
1393 :af-score (and af af-base-score)
1394 :vote-count (+ vote-count (if (member (cdr (assoc :karma current-vote)) '(nil "neutral") :test #'equal)
1397 :extended-score extended-score
1398 :all-votes all-votes))
1399 (out (make-hash-table)))
1400 (loop for (axis . axis-vote) in current-vote
1401 do (setf (gethash axis out) (list* axis-vote (gethash axis vote-buttons))))
1402 out))))))))
1404 (delete-easy-handler 'view-karma-vote)
1406 (define-json-endpoint (view-user-status login-site "/current-user-status")
1407 (let ((auth-token *current-auth-token*))
1408 (request-method
1409 (:get ()
1410 (if (lw2-graphql-query (graphql-query-string "currentUser" nil '(:--id)) :auth-token auth-token)
1411 (sethash (make-hash-table)
1412 "notifications" (check-notifications (logged-in-userid) auth-token)
1413 "alignmentForumAllowed" (member "alignmentForum" (cdr (assoc :groups (get-user :user-id (logged-in-userid)))) :test #'string=))
1414 (with-cache-transaction
1415 (cache-del "auth-token-to-userid" auth-token)
1416 (cache-del "auth-token-to-username" auth-token)))))))
1418 (hunchentoot:define-easy-handler (view-check-notifications :uri "/check-notifications") (format)
1419 (with-error-page
1420 (setf (hunchentoot:content-type*) "application/json")
1421 (if *current-auth-token*
1422 (let ((notifications-status (check-notifications (logged-in-userid) *current-auth-token* :full (string= format "push"))))
1423 (json:encode-json-to-string notifications-status)))))
1425 (hunchentoot:define-easy-handler (view-ignore-user :uri "/ignore-user") ((csrf-token :request-type :post) (target-id :request-type :post) (state :request-type :post) return)
1426 (with-error-page
1427 (check-csrf-token csrf-token)
1428 (let ((user-id (logged-in-userid)))
1429 (unless user-id (error "Not logged in."))
1430 (with-cache-transaction
1431 (let ((ignore-hash (get-ignore-hash user-id)))
1432 (if (string= state "ignore")
1433 (setf (gethash target-id ignore-hash) t)
1434 (remhash target-id ignore-hash))
1435 (cache-put "user-ignore-list" user-id ignore-hash :value-type :json))))
1436 (when return
1437 (redirect return))))
1439 (client-defun comment-controls (&key standalone parent-comment-id parent-answer-id edit-comment-id)
1440 (flet ((inner ()
1441 <form method="post" id="conversation-form" class="aligned-form">
1442 <div class="textarea-container">
1443 <textarea name="text" oninput="enableBeforeUnload();"></textarea>
1444 <span class="markdown-reference-link">You can use <a href="http://commonmark.org/help/" target="_blank">Markdown</a> here.</span>
1445 <button type="button" class="guiedit-mobile-auxiliary-button guiedit-mobile-help-button">Help</button>
1446 <button type="button" class="guiedit-mobile-auxiliary-button guiedit-mobile-exit-button">Exit</button>
1447 </div>
1448 <div>
1449 (macrolet ((hidden-var (name)
1450 `(when ,name <input type="hidden" name=,(string-downcase name) value=,name>)))
1451 (hidden-var parent-comment-id)
1452 (hidden-var parent-answer-id)
1453 (hidden-var edit-comment-id))
1454 <input name="csrf-token" value=(make-csrf-token) type="hidden">
1455 <input value="Submit" type="submit">
1456 </div>
1457 </form>))
1458 (if standalone
1459 <div class="posting-controls standalone with-markdown-editor" onsubmit="disableBeforeUnload();">(with-html-stream-output (inner))</div>
1460 (inner))))
1462 (define-json-endpoint (view-karma-vote-shortform shortform-site "/karma-vote/shortform")
1463 (let ((auth-token *current-auth-token*))
1464 (request-method
1465 (:get ((offset :type fixnum :default 0))
1466 (sethash (make-hash-table)
1467 "Comment" (get-shortform-votes auth-token :offset offset))))))
1469 (define-component view-comments-index (index-type)
1470 (:http-args ((offset :type fixnum)
1471 (limit :type fixnum)
1472 (view :member '(nil :alignment-forum))))
1473 (request-method
1474 (:get ()
1475 (let* ((want-total (not (or (typep *current-backend* 'backend-lw2) (typep *current-backend* 'backend-ea-forum)))) ; LW2/EAF can't handle total queries. TODO: handle this in backend.
1476 (shortform (eq index-type :shortform))
1477 (with-voting (not (null (and shortform (logged-in-userid))))))
1478 (multiple-value-bind (title query-view top-nav)
1479 (cond
1480 (shortform (values "Shortform" "shortform" (if (logged-in-userid) (lambda () (comment-controls :standalone t)))))
1481 (t (values (case view (:alignment-forum "Alignment Forum recent comments") (t "Recent comments")) "allRecentComments" nil)))
1482 (multiple-value-bind (recent-comments total)
1483 (if (or (not (eq index-type :recent-comments)) offset limit view (/= (user-pref :items-per-page) 20))
1484 (let ((*use-alignment-forum* (eq view :alignment-forum)))
1485 (lw2-graphql-query (lw2-query-string :comment :list
1486 (remove nil (alist :view query-view
1487 :limit (or limit (user-pref :items-per-page)) :offset offset)
1488 :key #'cdr)
1489 :context (if shortform :shortform :index)
1490 :with-total want-total)))
1491 (get-recent-comments :with-total want-total))
1492 (renderer ()
1493 (view-items-index recent-comments
1494 :title title
1495 :extra-head (lambda ()
1496 (when with-voting
1497 (call-with-server-data 'process-vote-data (format nil "/karma-vote/shortform?offset=~A" (or offset 0)))))
1498 :content-class (if shortform "index-page shortform-index-page comment-thread-page" "index-page comment-index-page")
1499 :pagination (pagination-nav-bars :offset (or offset 0) :with-next (not want-total) :total (if want-total total))
1500 :top-nav (lambda () (page-toolbar-to-html :title title) (when top-nav (funcall top-nav)))
1501 :alternate-html (if (eq index-type :shortform)
1502 (lambda ()
1503 (let ((*enable-voting* with-voting))
1504 <div class="comments">
1505 (comment-tree-to-html *html-output*
1506 (make-comment-parent-hash
1507 (flatten-shortform-comments recent-comments)))
1508 </div>)))))))))
1509 (:post ()
1510 (post-comment :shortform t))))
1512 (define-component-routes forum-site (view-recent-comments (standard-route :uri "/recentcomments") () (view-comments-index :recent-comments)))
1513 (define-component-routes shortform-site (view-shortform (standard-route :uri "/shortform") () (view-comments-index :shortform)))
1515 (delete-easy-handler 'view-recent-comments)
1517 (defun tag-to-html (tag &key skip-headline)
1518 (schema-bind (:tag tag :auto :context :body)
1519 (alist-bind (edited-at html user-id) description
1520 (unless skip-headline
1521 <h1 class="post-title">(safe (clean-text-to-html name))</h1>
1522 <div class="post-meta">
1523 <span>(if core "Core ")(if wiki-only "Wiki" "Tag")</span>
1524 (when (and (nonempty-string edited-at) (nonempty-string user-id))
1525 <span>Last edit: (pretty-time-html edited-at)
1526 \ by <a class="author" href=("/users/~A" (get-user-slug user-id))>(get-username user-id)</a>
1527 </span>)
1528 </div>)
1529 (when html
1530 <div class="tag-description body-text">(with-html-stream-output (:stream stream) (let ((*memoized-output-stream* stream)) (clean-html* html)))</div>))))
1532 (defun tag-list-to-html (tags)
1533 <ul class="tag-list">
1534 (iter (for tag in tags)
1535 (schema-bind (:tag tag :auto :context :index)
1536 <li><a class="post-title-link" href=("/tag/~A" slug)>(safe (clean-text-to-html name))(if wiki-only
1537 " (wiki)"
1538 (if post-count (format nil " (~A)" post-count)))</a></li>))
1539 </ul>)
1541 (define-json-endpoint (view-user-autocomplete forum-site "/-user-autocomplete")
1542 (request-method
1543 (:get (q)
1544 (lw2-search-query q :indexes '("test_users")))))
1546 (define-json-endpoint (view-karma-vote-tag forum-site "/karma-vote/tag")
1547 (let ((auth-token *current-auth-token*))
1548 (request-method
1549 (:get (tag-id post-id)
1550 (hash-cond (make-hash-table)
1551 (tag-id "Post" (get-tag-post-votes tag-id auth-token))
1552 (tag-id "Comment" (get-tag-comments-votes tag-id auth-token))
1553 (post-id "Tag" (get-post-tag-votes post-id auth-token)))))))
1555 (define-component view-tag (slug tail)
1556 (:http-args ((sort :default :relevant :member '(:relevant :new :old))))
1557 (when (nonempty-string tail)
1558 (redirect (format nil "/tag/~A" slug))
1559 (return))
1560 (let ((tag (first (lw2-graphql-query (lw2-query-string :tag :list (alist :view "tagBySlug" :slug slug) :context :body)))))
1561 (unless tag
1562 (error 'lw2-not-found-error))
1563 (request-method
1564 (:get ()
1565 (let* ((posts (get-tag-posts slug))
1566 (posts (if (eq sort :relevant) posts (sort-items posts sort))))
1567 (schema-bind (:tag tag :auto :context :body)
1568 (renderer ()
1569 (view-items-index posts
1570 :title (format nil "~A tag" name)
1571 :extra-head (lambda ()
1572 (when-let (canonical-source (and (always-canonical *current-site*)
1573 (main-site-link *current-site* :tag slug)))
1574 <link rel="canonical" href=canonical-source>)
1575 (when (logged-in-userid)
1576 (call-with-server-data 'process-vote-data (format nil "/karma-vote/tag?tag-id=~A" tag-id))))
1577 :top-nav (lambda ()
1578 (page-toolbar-to-html :title name :rss (not wiki-only))
1579 (tag-to-html tag)
1580 (when (and posts (not *preview*))
1581 (sublevel-nav-to-html '(:relevant :new :old)
1582 sort
1583 :default :relevant
1584 :param-name "sort"
1585 :extra-class "sort")))
1586 :content-class "index-page tag-index-page"
1587 :alternate-html (lambda ()
1588 (unless wiki-only
1589 (write-index-items-to-html *html-output* posts))
1590 (when (typep *current-backend* 'backend-lw2-tags-comments)
1591 (finish-output *html-output*)
1592 (let ((*enable-voting* (not (null (logged-in-userid))))
1593 (comments (lw2-graphql-query (lw2-query-string :comment :list (alist :view "tagDiscussionComments" :tag-id tag-id)))))
1594 (output-comments *html-output* "comment" comments nil :replies-open t)))))))))
1595 (:post ()
1596 (schema-bind (:tag tag (tag-id))
1597 (renderer ()
1598 (post-comment :tag-id tag-id)))))))
1600 (define-component-routes forum-site (view-tag (regex-route :regex "^/(?:tag|topics)/([^/?]+)(/[^/?]*)?") (slug tail) (view-tag slug tail)))
1602 (define-route 'ea-forum-viewer-site 'regex-route :name 'view-tags-redirect :regex "^/tag/" :handler (lambda () (redirect (ppcre:regex-replace "^/tag/" (hunchentoot:request-uri*) "/topics/"))))
1604 (define-component view-tags-index ()
1605 (:http-args ())
1606 (multiple-value-bind (all-tags portal)
1607 (lw2-graphql-query-multi
1608 (list (lw2-query-string* :tag :list (alist :view "allTagsAlphabetical"))
1609 (lw2-query-string* :tag :list (alist :view "tagBySlug" :slug "portal") :context :body)))
1610 (let ((core-tags
1611 (iter (for tag in all-tags)
1612 (schema-bind (:tag tag (core))
1613 (when core (collect tag)))))
1614 (title (if (typep *current-site* 'lesswrong-viewer-site) "Concepts Portal" "Tags Portal")))
1615 (renderer ()
1616 (emit-page (out-stream :title title)
1617 <article>
1618 <h1 class="post-title">(safe title)</h1>
1619 (tag-to-html (first portal) :skip-headline t)
1620 </article>
1621 (iter (for (title . tags) in (alist "Core Tags" core-tags "All Tags" all-tags))
1622 (progn
1623 <h1>(safe title)</h1>
1624 (tag-list-to-html tags))))))))
1626 (define-component-routes forum-site (view-tags-index (standard-route :uri "/tags") () (view-tags-index)))
1627 (define-component-routes forum-site (view-tags-index-alt (standard-route :uri "/topics") () (view-tags-index)))
1629 (define-route 'forum-site 'standard-route :name 'view-tags-index-redirect :uri "/tags/all" :handler (lambda () (redirect "/tags")))
1630 (define-route 'forum-site 'standard-route :name 'view-tags-index-redirect :uri "/topics/all" :handler (lambda () (redirect "/topics")))
1632 (define-route 'alternate-frontend-site 'standard-route :name 'view-tags-voting-redirect :uri "/tagVoting" :handler (lambda () (main-site-redirect "/tagVoting")))
1633 (define-route 'alternate-frontend-site 'standard-route :name 'view-tags-dashboard-redirect :uri "/tags/dashboard" :handler (lambda () (main-site-redirect "/tags/dashboard")))
1635 (hunchentoot:define-easy-handler (view-push-register :uri "/push/register") ()
1636 (with-error-page
1637 (let* ((data (call-with-safe-json (lambda ()
1638 (json:decode-json-from-string
1639 (hunchentoot:raw-post-data :force-text t :external-format :utf-8)))))
1640 (subscription (cdr (assoc :subscription data)))
1641 (cancel (cdr (assoc :cancel data))))
1642 (cond
1643 (subscription
1644 (make-subscription *current-auth-token*
1645 (cdr (assoc :endpoint subscription))
1646 (cdr (assoc :expires *current-auth-status*)))
1647 (send-notification (cdr (assoc :endpoint subscription)) :ttl 120))
1648 (cancel
1649 (delete-subscription *current-auth-token*)))
1650 nil)))
1652 (hunchentoot:define-easy-handler (view-inbox-redirect :uri "/push/go-inbox") ()
1653 (with-error-page
1654 (redirect (format nil "/users/~A?show=inbox" *current-user-slug*))))
1656 (define-page view-user (:regex "^/users/(.*?)(?:$|\\?)|^/user" user-slug) (id
1657 (offset :type fixnum :default 0)
1658 (show :member '(:all :posts :comments :drafts :conversations :inbox) :default :all)
1659 (sort :member '(:top :new :old) :default :new))
1660 (let* ((auth-token (if (eq show :inbox) *current-auth-token*))
1661 (user-info
1662 (let ((ui (get-user (cond (user-slug :user-slug) (id :user-id)) (or user-slug id) :auth-token auth-token)))
1663 (if (and (not (cdr (assoc :deleted ui))) (cdr (assoc :--id ui)))
1665 (error 'lw2-user-not-found-error))))
1666 (user-id (cdr (assoc :--id user-info)))
1667 (own-user-page (logged-in-userid user-id))
1668 (display-name (if user-slug (cdr (assoc :display-name user-info)) user-id))
1669 (show-text (if (not (eq show :all)) (string-capitalize show)))
1670 (title (format nil "~A~@['s ~A~]" display-name show-text))
1671 (sort-type (case sort (:top :score) (:new :date) (:old :date-reverse))))
1672 (multiple-value-bind (items total)
1673 (case show
1674 (:posts
1675 (get-user-page-items user-id :posts :offset offset :limit (+ 1 (user-pref :items-per-page)) :sort-type sort-type))
1676 (:comments
1677 (get-user-page-items user-id :comments :offset offset :limit (+ 1 (user-pref :items-per-page)) :sort-type sort-type))
1678 (:drafts
1679 (get-user-page-items user-id :posts :drafts t :offset offset :limit (+ 1 (user-pref :items-per-page)) :auth-token (hunchentoot:cookie-in "lw2-auth-token")))
1680 (:conversations
1681 (let ((conversations
1682 (lw2-graphql-query (lw2-query-string :conversation :list
1683 (alist :view "userConversations" :limit (+ 1 (user-pref :items-per-page)) :offset offset :user-id user-id)
1684 :fields '(:--id :created-at :title (:participants :display-name :slug) :----typename))
1685 :auth-token (hunchentoot:cookie-in "lw2-auth-token"))))
1686 (lw2-graphql-query-map
1687 (lambda (c)
1688 (lw2-query-string* :message :total (alist :view "messagesConversation" :conversation-id (cdr (assoc :--id c)))))
1689 conversations
1690 :postprocess (lambda (c result)
1691 (acons :messages-total result c))
1692 :auth-token (hunchentoot:cookie-in "lw2-auth-token"))))
1693 (:inbox
1694 (error-explanation-case
1695 (prog1
1696 (let ((notifications (get-notifications :user-id user-id :offset offset :auth-token (hunchentoot:cookie-in "lw2-auth-token")))
1697 (last-check (ignore-errors (local-time:parse-timestring (cdr (assoc :last-notifications-check user-info))))))
1698 (labels ((check-new (key obj)
1699 (if (ignore-errors (local-time:timestamp< last-check (local-time:parse-timestring (cdr (assoc key obj)))))
1700 (acons :highlight-new t obj)
1701 obj))
1702 (check-replied (comment)
1703 (let* ((post-id (cdr (assoc :post-id comment)))
1704 (comment-id (cdr (assoc :--id comment)))
1705 (reply-comment-id (check-comment-replied comment-id user-id)))
1706 (if reply-comment-id
1707 (acons :replied (list :post post-id :comment-id reply-comment-id) comment)
1708 comment))))
1709 (lw2-graphql-query-map
1710 (lambda (n)
1711 (alexandria:switch ((cdr (assoc :document-type n)) :test #'string=)
1712 ("comment"
1713 (lw2-query-string* :comment :single
1714 (alist :document-id (cdr (assoc :document-id n)))
1715 :context :index))
1716 ("post"
1717 (lw2-query-string* :post :single (alist :document-id (cdr (assoc :document-id n)))))
1718 ("message"
1719 (lw2-query-string* :message :single (alist :document-id (cdr (assoc :document-id n)))
1720 :fields *messages-index-fields*))
1722 (values n t))))
1723 notifications
1724 :postprocess (lambda (n result)
1725 (if result
1726 (funcall (if (string= (cdr (assoc :document-type n)) "comment") #'check-replied #'identity)
1727 (check-new
1728 (alexandria:switch ((cdr (assoc :document-type n)) :test #'string=)
1729 ("comment" :posted-at)
1730 ("post" :posted-at)
1731 ("message" :created-at))
1732 result))
1734 :auth-token auth-token)))
1735 (do-user-edit
1736 (hunchentoot:cookie-in "lw2-auth-token")
1737 user-id
1738 (alist :last-notifications-check (timestamp-to-graphql (local-time:now)))))
1739 (lw2-not-allowed-error
1740 <p>This may mean your login token has expired or become invalid. You can try <a href="/login">logging in again</a>.</p>)))
1742 (get-user-page-items user-id :both :offset offset :limit (+ 1 (user-pref :items-per-page)) :sort-type sort-type)))
1743 (let ((with-next (> (length items) (+ (if (eq show :all) offset 0) (user-pref :items-per-page))))
1744 (interleave (if (eq show :all) (comment-post-interleave items :limit (user-pref :items-per-page) :offset (if (eq show :all) offset nil) :sort-by sort-type) (firstn items (user-pref :items-per-page))))) ; this destructively sorts items
1745 (view-items-index interleave :title title
1746 :content-class (format nil "user-page~@[ ~A-user-page~]~:[~; own-user-page~]" (string-downcase show) own-user-page)
1747 :current-uri (format nil "/users/~A" user-slug)
1748 :section :personal
1749 :pagination (pagination-nav-bars :offset offset :total total :with-next (if (not total) with-next))
1750 :need-auth (eq show :drafts) :section (if (eq show :drafts) "drafts" nil)
1751 :top-nav (lambda ()
1752 (page-toolbar-to-html :title title
1753 :enable-push-notifications (eq show :inbox)
1754 :rss (not (member show '(:drafts :conversations :inbox)))
1755 :new-post (if (eq show :drafts) "drafts" t)
1756 :new-conversation (if own-user-page t user-slug)
1757 :ignore (if (and (logged-in-userid) (not own-user-page))
1758 (lambda ()
1759 (let ((ignored (gethash user-id *current-ignore-hash*)))
1760 <form method="post" action="/ignore-user">
1761 <button class=("button ~A" (if ignored "unignore-button" "ignore-button"))>(if ignored "Unignore user" "Ignore user")</button>
1762 <input type="hidden" name="csrf-token" value=(make-csrf-token)>
1763 <input type="hidden" name="target-id" value=user-id>
1764 <input type="hidden" name="state" value=(if ignored "unignore" "ignore")>
1765 <input type="hidden" name="return" value=(hunchentoot:request-uri*)>
1766 </form>)))
1767 :logout own-user-page)
1768 (alist-bind ((actual-id string :--id)
1769 (actual-slug string :slug)
1770 (karma (or null fixnum))
1771 (af-karma (or null fixnum)))
1772 user-info
1773 <h1 class="page-main-heading"
1774 (when (not own-user-page)
1775 (format nil "data-~:[~;anti-~]~:*kibitzer-redirect=~:[/users/~*~A~;/user?id=~A~]"
1776 user-slug actual-id actual-slug))>
1777 (progn display-name)
1778 (let ((full-name (get-user-full-name user-id)))
1779 (when (and user-slug (stringp full-name) (> (length full-name) 0))
1780 <span class="user-full-name">\((progn full-name)\)</span>))
1781 </h1>
1782 <div class="user-stats">
1783 Karma:
1784 <span class="karma-type">
1785 <span class="karma-total">(if user-slug (pretty-number (or karma 0)) "##")</span>(if af-karma " (LW),")
1786 </span>\
1787 (when af-karma
1788 <span class="karma-type">
1789 <span class="karma-total af-karma-total">(if user-slug (pretty-number (or af-karma 0)) "##")</span> \(AF\)
1790 </span>)
1791 </div>
1792 (when-let (html-bio (cdr (assoc :html-bio user-info)))
1793 <div class="user-bio body-text">
1794 (with-html-stream-output (:stream stream)
1795 (let ((*memoized-output-stream* stream))
1796 (clean-html* html-bio)))
1797 </div>))
1798 (sublevel-nav-to-html `(:all :posts :comments
1799 ,@(if own-user-page
1800 '(:drafts :conversations :inbox)))
1801 show
1802 :default :all)
1803 (when (member show '(:all :posts :comments))
1804 (sublevel-nav-to-html '(:new :top :old)
1805 sort
1806 :default :new
1807 :param-name "sort"
1808 :extra-class "sort"))))))))
1810 (defparameter *conversation-template* (compile-template* "conversation.html"))
1812 (define-page view-conversation "/conversation" (id to subject)
1813 (request-method
1814 (:get ()
1815 (cond
1816 ((and id to) (error "This is an invalid URL."))
1818 (multiple-value-bind (conversation messages)
1819 (get-conversation-messages id (hunchentoot:cookie-in "lw2-auth-token"))
1820 (let ((conversation (rectify-conversation conversation)))
1821 (view-items-index (nreverse messages) :content-class "conversation-page" :need-auth t :title (encode-entities (cdr (assoc :title conversation)))
1822 :top-nav (lambda () (render-template* *conversation-template* *html-output*
1823 :conversation conversation :csrf-token (make-csrf-token)))))))
1825 (emit-page (out-stream :title "New conversation" :content-class "conversation-page")
1826 (render-template* *conversation-template* out-stream
1827 :to to
1828 :subject subject
1829 :csrf-token (make-csrf-token))))))
1830 (:post ((text :required t))
1831 (let* ((id (or id
1832 (let ((participant-ids (list (logged-in-userid) (cdar (lw2-graphql-query (lw2-query-string :user :single (alist :slug to) :fields '(:--id)))))))
1833 (do-create-conversation (hunchentoot:cookie-in "lw2-auth-token") (alist :participant-ids participant-ids :title subject))))))
1834 (do-create-message (hunchentoot:cookie-in "lw2-auth-token") id text)
1835 (redirect (format nil "/conversation?id=~A" id))))))
1837 (defun search-result-markdown-to-html (item)
1838 (cons (cons :html-body
1839 (handler-case (nth-value 1 (cl-markdown:markdown (cdr (assoc :body item)) :stream nil))
1840 (serious-condition () "[Error while processing search result]")))
1841 item))
1843 (define-page view-search "/search" ((q :required t))
1844 (let ((*current-search-query* q)
1845 (link (presentable-link q :search))
1846 (title (format nil "~@[~A - ~]Search" q)))
1847 (declare (special *current-search-query*))
1848 (if link
1849 (redirect link)
1850 (multiple-value-bind (tags posts comments) (lw2-search-query q)
1851 (let ((tags (map 'list (lambda (tag)
1852 (alist* :----typename "Tag" tag))
1853 tags)))
1854 (view-items-index (nconc
1855 (map 'list (lambda (post) (if (cdr (assoc :comment-count post)) post (alist* :comment-count 0 post))) posts)
1856 (map 'list #'search-result-markdown-to-html comments))
1857 :top-nav (lambda ()
1858 (page-toolbar-to-html :title title :rss t)
1859 (when tags
1860 <h1>Tags</h1>
1861 (tag-list-to-html tags)))
1862 :content-class "search-results-page" :current-uri "/search"
1863 :title title))))))
1865 (define-page view-login "/login" (return cookie-check
1866 (login-username :request-type :post) (login-password :request-type :post)
1867 (signup-username :request-type :post) (signup-email :request-type :post) (signup-password :request-type :post) (signup-password2 :request-type :post))
1868 (labels
1869 ((emit-login-page (&key error-message)
1870 (let ((csrf-token (make-csrf-token)))
1871 (emit-page (out-stream :title "Log in" :current-uri "/login" :content-class "login-page" :robots "noindex, nofollow")
1872 (when error-message
1873 (format out-stream "<div class=\"error-box\">~A</div>" error-message))
1874 (with-outputs (out-stream) "<div class=\"login-container\">")
1875 (output-form out-stream "post" (format nil "/login~@[?return=~A~]" (if return (url-rewrite:url-encode return))) "login-form" "Log in" csrf-token
1876 '(("login-username" "Username" "text" "username")
1877 ("login-password" "Password" "password" "current-password"))
1878 "Log in"
1879 :end-html (when (typep *current-backend* 'backend-websocket-login) ;other backends not supported yet
1880 "<a href=\"/reset-password\">Forgot password</a>"))
1881 (output-form out-stream "post" (format nil "/login~@[?return=~A~]" (if return (url-rewrite:url-encode return))) "signup-form" "Create account" csrf-token
1882 '(("signup-username" "Username" "text" "username")
1883 ("signup-email" "Email" "text" "email")
1884 ("signup-password" "Password" "password" "new-password")
1885 ("signup-password2" "Confirm password" "password" "new-password"))
1886 "Create account")
1887 (when-let (main-site-title (main-site-title *current-site*))
1888 (when (typep *current-site* 'ea-forum-viewer-site)
1889 <div class="error-box"><span style="font-weight:bold">WARNING:</span> EA Forum recently switched to a new single sign-on system. Accounts created with the new system do not currently work with GreaterWrong.\
1890 Accounts created before the new system and accounts created through GreaterWrong continue to work.</div>)
1891 (format out-stream "<div class=\"login-tip\"><span>Tip:</span> You can log in with the same username and password that you use on ~A~:*. Creating an account here also creates one on ~A.</div>"
1892 main-site-title))
1893 (format out-stream "</div>"))))
1894 (finish-login (username user-id auth-token error-message &optional expires)
1895 (cond
1896 (auth-token
1897 (set-cookie "lw2-auth-token" auth-token :max-age (if expires (+ (- expires (get-unix-time)) (* 24 60 60)) (1- (expt 2 31))))
1898 (if expires (set-cookie "lw2-status" (json:encode-json-to-string (alist :expires expires))))
1899 (cache-put "auth-token-to-userid" auth-token user-id)
1900 (cache-put "auth-token-to-username" auth-token username)
1901 (redirect (if (and return (ppcre:scan "^/[^/]" return)) return "/")))
1903 (emit-login-page :error-message error-message)))))
1904 (cond
1905 ((not (or cookie-check (hunchentoot:cookie-in "session-token")))
1906 (set-cookie "session-token" (base64:usb8-array-to-base64-string (ironclad:make-random-salt)))
1907 (redirect (format nil "/login?~@[return=~A&~]cookie-check=y" (if return (url-rewrite:url-encode return)))))
1908 (cookie-check
1909 (if (hunchentoot:cookie-in "session-token")
1910 (redirect (format nil "/login~@[?return=~A~]" (if return (url-rewrite:url-encode return))))
1911 (emit-page (out-stream :title "Log in" :current-uri "/login")
1912 (format out-stream "<h1>Enable cookies</h1><p>Please enable cookies in your browser and <a href=\"/login~@[?return=~A~]\">try again</a>.</p>" (if return (url-rewrite:url-encode return))))))
1913 (login-username
1914 (cond
1915 ((or (string= login-username "") (string= login-password "")) (emit-login-page :error-message "Please enter a username and password"))
1916 ((lw2.dnsbl:dnsbl-check (hunchentoot:real-remote-addr)) (emit-login-page :error-message "Your IP address is blacklisted."))
1917 (t (multiple-value-call #'finish-login login-username (do-login login-username login-password)))))
1918 (signup-username
1919 (cond
1920 ((not (every (lambda (x) (not (string= x ""))) (list signup-username signup-email signup-password signup-password2)))
1921 (emit-login-page :error-message "Please fill in all fields"))
1922 ((not (string= signup-password signup-password2))
1923 (emit-login-page :error-message "Passwords do not match"))
1924 ((lw2.dnsbl:dnsbl-check (hunchentoot:real-remote-addr)) (emit-login-page :error-message "Your IP address is blacklisted."))
1925 (t (multiple-value-call #'finish-login signup-username (do-lw2-create-user signup-username signup-email signup-password)))))
1927 (emit-login-page)))))
1929 (define-page view-logout "/logout" ()
1930 (request-method
1931 (:post ()
1932 (set-cookie "lw2-auth-token" "" :max-age 0)
1933 (do-logout *current-auth-token*)
1934 (redirect "/"))))
1936 (defparameter *reset-password-template* (compile-template* "reset-password.html"))
1938 (define-page view-reset-password "/reset-password" ((email :request-type :post) (reset-link :request-type :post) (password :request-type :post) (password2 :request-type :post))
1939 (labels ((emit-rpw-page (&key message message-type step)
1940 (let ((csrf-token (make-csrf-token)))
1941 (emit-page (out-stream :title "Reset password" :content-class "reset-password" :robots "noindex, nofollow")
1942 (render-template* *reset-password-template* out-stream
1943 :csrf-token csrf-token
1944 :reset-link reset-link
1945 :message message
1946 :message-type message-type
1947 :step step)))))
1948 (cond
1949 (email
1950 (multiple-value-bind (ret error)
1951 (do-lw2-forgot-password email)
1952 (declare (ignore ret))
1953 (if error
1954 (emit-rpw-page :step 1 :message error :message-type "error")
1955 (emit-rpw-page :step 1 :message "Password reset email sent." :message-type "success"))))
1956 (reset-link
1957 (ppcre:register-groups-bind (reset-token) ("(?:reset-password/|^)([^/#]+)$" reset-link)
1958 (cond
1959 ((not reset-token)
1960 (emit-rpw-page :step 2 :message "Invalid password reset link." :message-type "error"))
1961 ((not (string= password password2))
1962 (emit-rpw-page :step 2 :message "Passwords do not match." :message-type "error"))
1964 (multiple-value-bind (user-id auth-token error-message) (do-lw2-reset-password reset-token password)
1965 (declare (ignore user-id auth-token))
1966 (cond
1967 (error-message (emit-rpw-page :step 2 :message error-message :message-type "error"))
1969 (with-error-page (emit-page (out-stream :title "Reset password" :content-class "reset-password")
1970 (format out-stream "<h1>Password reset complete</h1><p>You can now <a href=\"/login\">log in</a> with your new password.</p>"))))))))))
1972 (emit-rpw-page)))))
1974 (define-page view-sequences "/library"
1975 ((view :member '(:featured :community) :default :featured))
1976 (let ((sequences
1977 (lw2-graphql-query
1978 (lw2-query-string :sequence :list
1979 (alist :view (case view
1980 (:featured "curatedSequences")
1981 (:community "communitySequences")))
1982 :fields '(:--id :created-at :user-id :title :----typename)))))
1983 (view-items-index
1984 sequences
1985 :title "Sequences Library"
1986 :content-class "sequences-page"
1987 :current-uri "/library"
1988 :top-nav (lambda ()
1989 (sublevel-nav-to-html '(:featured :community)
1990 view
1991 :default :featured
1992 :param-name "view"
1993 :extra-class "sequences-view")))))
1995 (define-page view-sequence (:regex "^/s(?:equences)?/([^/?#]+)(?:/?$|\\?)" sequence-id) ()
1996 (let ((sequence (get-sequence sequence-id)))
1997 (alist-bind ((title string))
1998 sequence
1999 (emit-page (out-stream
2000 :title title
2001 :content-class "sequence-page")
2002 (sequence-to-html sequence)))))
2004 (define-page view-archive (:regex "^/archive(?:/(\\d{4})|/?(?:$|\\?.*$))(?:/(\\d{1,2})|/?(?:$|\\?.*$))(?:/(\\d{1,2})|/?(?:$|\\?.*$))"
2005 (year :type (mod 10000))
2006 (month :type (integer 1 12))
2007 (day :type (integer 1 31)))
2008 ((offset :type fixnum :default 0))
2009 (local-time:with-decoded-timestamp (:day current-day :month current-month :year current-year :timezone local-time:+utc-zone+) (local-time:now)
2010 (local-time:with-decoded-timestamp (:day earliest-day :month earliest-month :year earliest-year :timezone local-time:+utc-zone+) (earliest-post-time)
2011 (labels ((url-elements (&rest url-elements)
2012 (declare (dynamic-extent url-elements))
2013 (format nil "/~{~A~^/~}" url-elements))
2014 (archive-nav ()
2015 (let ((out-stream *html-output*))
2016 (with-outputs (out-stream) "<div class=\"archive-nav\"><div class=\"archive-nav-years\">")
2017 (link-if-not out-stream (not (or year month day)) (url-elements "archive") "archive-nav-item-year" "All")
2018 (loop for y from earliest-year to current-year
2019 do (link-if-not out-stream (eq y year) (url-elements "archive" y) "archive-nav-item-year" y))
2020 (format out-stream "</div>")
2021 (when year
2022 (format out-stream "<div class=\"archive-nav-months\">")
2023 (link-if-not out-stream (not month) (url-elements "archive" year) "archive-nav-item-month" "All")
2024 (loop for m from (if (= (or year current-year) earliest-year) earliest-month 1) to (if (= (or year current-year) current-year) current-month 12)
2025 do (link-if-not out-stream (eq m month) (url-elements "archive" (or year current-year) m) "archive-nav-item-month" (elt local-time:+short-month-names+ m)))
2026 (format out-stream "</div>"))
2027 (when month
2028 (format out-stream "<div class=\"archive-nav-days\">")
2029 (link-if-not out-stream (not day) (url-elements "archive" year month) "archive-nav-item-day" "All")
2030 (loop for d from (if (and (= (or year current-year) earliest-year) (= (or month current-month) earliest-month)) earliest-day 1)
2031 to (if (and (= (or year current-year) current-year) (= (or month current-month) current-month)) current-day (local-time:days-in-month (or month current-month) (or year current-year)))
2032 do (link-if-not out-stream (eq d day) (url-elements "archive" (or year current-year) (or month current-month) d) "archive-nav-item-day" d))
2033 (format out-stream "</div>"))
2034 (format out-stream "</div>"))))
2035 (multiple-value-bind (posts total)
2036 (lw2-graphql-query (lw2-query-string :post :list
2037 (alist :view (if day "new" "top") :limit 51 :offset offset
2038 :after (if (and year (not day)) (format nil "~A-~A-~A" (or year earliest-year) (or month 1) (or day 1)))
2039 :before (if year (format nil "~A-~A-~A" (or year current-year) (or month 12)
2040 (or day (local-time:days-in-month (or month 12) (or year current-year))))))))
2041 (emit-page (out-stream :title "Archive" :current-uri "/archive" :content-class "archive-page"
2042 :top-nav #'archive-nav
2043 :pagination (pagination-nav-bars :items-per-page 50 :offset offset :total total :with-next (if total nil (> (length posts) 50))))
2044 (write-index-items-to-html out-stream (firstn posts 50) :empty-message "No posts for the selected period.")))))))
2046 (define-page view-about "/about" ()
2047 (emit-page (out-stream :title "About" :current-uri "/about" :content-class "about-page")
2048 (alexandria:with-input-from-file (in-stream "www/about.html" :element-type '(unsigned-byte 8))
2049 (alexandria:copy-stream in-stream out-stream))))
2051 (define-page misc-pages (:regex "^/misc-pages/.+") ()
2052 (let ((pathname (hunchentoot:request-pathname)))
2053 (unless (probe-file pathname)
2054 (error 'lw2-not-found-error))
2055 (emit-page (out-stream :title "Misc page" :content-class "misc-page")
2056 (alexandria:with-input-from-file (in-stream pathname :element-type '(unsigned-byte 8))
2057 (alexandria:copy-stream in-stream out-stream)))))
2059 (define-page view-generated-script (:regex "^/generated/([^/]+)\\.js" (name :type string)) ()
2060 (when-let ((package (find-package (string-upcase name))))
2061 (setf (hunchentoot:header-out "Content-Type") "text/javascript")
2062 (let ((stream (make-flexi-stream (hunchentoot:send-headers) :external-format :utf-8)))
2063 (write-package-client-scripts package stream))))
2065 (hunchentoot:define-easy-handler
2066 (view-proxy-asset
2067 :uri (lambda (r)
2068 (with-error-page
2069 (multiple-value-bind (match? strings) (ppcre:scan-to-strings "^/proxy-assets/([0-9A-Za-z]+)(-inverted)?$" (hunchentoot:script-name r) :sharedp t)
2070 (when-let* ((base-filename (and match? (svref strings 0)))
2071 (image-data (cache-get "cached-images" base-filename :value-type :json)))
2072 (let ((inverted (svref strings 1)))
2073 (alist-bind ((mime-type simple-string)) image-data
2074 (setf (hunchentoot:header-out "X-Content-Type-Options") "nosniff"
2075 (hunchentoot:header-out "Cache-Control") #.(format nil "public, max-age=~A, immutable" 600))
2076 (hunchentoot:handle-static-file (concatenate 'string "www/proxy-assets/" base-filename (if inverted "-inverted" "")) mime-type)
2077 t)))))))
2078 nil)