#lang racket/base (require racket/list racket/contract racket/rerequire racket/file racket/format xml racket/match racket/set racket/string) (require web-server/http/xexpr web-server/dispatchers/dispatch) (require (only-in net/url url-query url->path url->string)) (require (only-in web-server/http/request-structs request-uri request-client-ip request?)) (require (only-in web-server/http/response-structs response?)) (require "world.rkt" "render.rkt" "readability.rkt" "predicates.rkt" "debug.rkt") (module+ test (require rackunit)) ;;; Routes for the server module ;;; separated out for ease of testing ;;; because it's tedious to start the server just to check a route. (provide route-dashboard route-raw route-xexpr route-default route-404) (define (logger req) (define client (request-client-ip req)) (define url-string (url->string (request-uri req))) (message "Request:" (string-replace url-string DASHBOARD_NAME " dashboard") "from" (if (equal? client "::1") "localhost" client))) (define/contract (route-wrapper route-proc) (procedure? . -> . procedure?) (λ(req . string-args) (logger req) (define path (apply build-path PROJECT_ROOT (flatten string-args))) (response/xexpr (route-proc path)))) ;; extract main xexpr from a path (define/contract (file->xexpr path #:render [wants-render #t]) ((complete-path?) (#:render boolean?) . ->* . tagged-xexpr?) (when wants-render (render path)) (dynamic-rerequire path) ; stores module mod date; reloads if it's changed (dynamic-require path 'main)) ;; todo: rewrite this test, obsolete since filename convention changed ;;(module+ test ;; (check-equal? (file->xexpr (build-path (current-directory) "tests/server-routes/foo.p") #:render #f) '(root "\n" "foo"))) ;; read contents of file to string ;; just file->string with a render option (define/contract (slurp path #:render [wants-render #t]) ((complete-path?) (#:render boolean?) . ->* . string?) (when wants-render (render path)) (file->string path)) (module+ test (check-equal? (slurp (build-path (current-directory) "tests/server-routes/bar.html") #:render #f) "

bar

")) ;; add a wrapper to tagged-xexpr that displays it as monospaced text ;; for "view source"ish functions ;; takes either a string or an xexpr (define/contract (format-as-code x) (xexpr? . -> . tagged-xexpr?) `(div ((style "white-space:pre-wrap;font-family:AlixFB,monospaced")) ,x)) (module+ test (check-equal? (format-as-code '(p "foo")) '(div ((style "white-space:pre-wrap;font-family:AlixFB,monospaced")) (p "foo")))) ;; server routes ;; these all produce an xexpr, which is handled upstream by response/xexpr ;; server route that returns html ;; todo: what is this for? (define/contract (route-html path) (complete-path? . -> . xexpr?) (file->xexpr path)) ;; server route that returns raw html, formatted as code ;; for viewing source without using "view source" (define/contract (raw path) (complete-path? . -> . xexpr?) (format-as-code (slurp path #:render #f))) ;; server route that returns xexpr (before conversion to html) (define/contract (xexpr path) (complete-path? . -> . xexpr?) (format-as-code (~v (file->xexpr path)))) (define (dashboard dir) (define empty-cell (cons #f #f)) (define (make-link-cell href+text) (match-define (cons href text) href+text) (filter-not void? `(td ,(when text (if href `(a ((href ,href)) ,text) text))))) (define (make-path-row fn) (define filename (->string fn)) (define (file-in-dir? fn) (file-exists? (build-path dir fn))) (define possible-sources (filter file-in-dir? (list (->preproc-source-path filename) (->pollen-source-path filename)))) (define source (and (not (empty? possible-sources)) (->string (car possible-sources)))) `(tr ,@(map make-link-cell (append (list ;; folder traversal cell (if (directory-exists? (build-path dir filename)) ; links subdir to its dashboard (cons (format "~a/~a" filename DASHBOARD_NAME) "dash") empty-cell) (cons filename filename) ; main cell (if source ; source cell (if needed) (cons source (format "~a source" (get-ext source))) empty-cell) (cond ; raw cell (if needed) [(directory-exists? (build-path dir filename)) (cons #f "(folder)")] [(has-binary-ext? filename) (cons #f "(binary)")] [else (cons (format "raw/~a" filename) "output")])) (if source (list (if (has-ext? source POLLEN_DECODER_EXT) ; xexpr cell for pollen decoder files (cons (format "xexpr/~a" source) "xexpr") empty-cell) (cons (format "force/~a" filename) filename)) ; force refresh cell (make-list 2 empty-cell)))))) (define (unique-sorted-output-paths xs) (sort (set->list (list->set (map ->output-path xs))) #:key ->string stringpath req) (request? . -> . path?) (reroot-path (url->path (request-uri req)) PROJECT_ROOT)) ; default route (define (route-default req) (logger req) (define force (equal? (get-query-value (request-uri req) 'force) "true")) (with-handlers ([exn:fail? (λ(e) (message "Render is skipping" (url->string (request-uri req)) "because of error\n" (exn-message e)))]) (render (req->path req) #:force force)) (next-dispatcher)) ; error route (define/contract (route-404 req) (request? . -> . response?) (define error-text (format "Can't find ~a" (->string (req->path req)))) (message error-text) ;`(html ,(slurp (build-path SERVER_EXTRAS_DIR "404.html"))) (response/xexpr `(html ,error-text))) (define route-dashboard (route-wrapper dashboard)) (define route-raw (route-wrapper raw)) (define route-xexpr (route-wrapper xexpr)) (module+ main )