aboutsummaryrefslogtreecommitdiff
path: root/src/guile/cantius.scm
blob: 06e93b354b3d0891cc2b2acd62cd6727d0f6a5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
;; SPDX-License-Identifier: CC0-1.0
;;
;; Copyright (C) 2023 Wojtek Kosior <koszko@koszko.org>

(define-module (cantius)
  #:use-module ((srfi srfi-26) #:select (cut))
  #:use-module ((srfi srfi-34) #:select (guard raise))
  #:use-module ((srfi srfi-35) #:select (condition &error &message))
  #:use-module ((srfi srfi-39) #:select (with-parameters*))
  #:use-module ((srfi srfi-128) #:select (make-default-comparator))
  #:use-module ((srfi srfi-146) #:prefix s146:)
  #:use-module ((ice-9 format) #:select (format))
  #:use-module ((ice-9 control) #:select (let/ec))
  #:use-module ((ice-9 exceptions) #:select
                (exception-with-message? exception-message))
  #:use-module ((system repl debug) #:select (terminal-width))
  #:use-module ((web request) #:select (request-uri))
  #:use-module ((web uri) #:prefix uri:)
  #:use-module ((web response) #:select (build-response))
  #:use-module ((fibers web server) #:select (run-server))
  #:use-module ((de-paul-records) #:select
                (define-immutable-record-type* match match-let match-let*
                 match-lambda)))



(export find-resource-file)
(define* (find-resource-file file #:optional (root-path (%resource-root-path)))
  (let loop ((paths root-path))
    (match paths
      (()
       #f)
      (((= (cut format #f "~a/~a" <> file) file-path)
        . paths-rest)
       (or (and (stat file-path #f) file-path)
           (loop paths-rest))))))



(define-public %current-path
  (make-parameter #f))

(define-public %current-path-string
  (make-parameter #f))

(define-public %resource-root-path
  (make-parameter '()))

(define-public %redirect/normalize-path?
  (make-parameter #t))

(define-public %redirect/remove-query?
  (make-parameter #t))

(define-public %default-handler
  (make-parameter (lambda (request body . _)
                    (values (build-response* #:code 404)
                            "There's no page with this address :("))))

(define-public %default-headers
  (make-parameter '((content-type . (text/plain (charset . "utf-8"))))))



(define-immutable-record-type* endpoint
  (handler #:default (lambda _ (raise (condition (&error)))))
  (path #:default '())
  (parameters #:default '())
  #:export? yes,of-course)

(define-immutable-record-type* endpoint-tree-node
  (direct-match #:default #f)
  (any-match #:default #f)
  (children #:default (s146:mapping (make-default-comparator))))

(define-immutable-record-type* endset
  (endpoints #:default (endpoint-tree-node))
  (parameters #:default '())
  #:export? sure,why-not)

(define (endpoint-tree-+ tree path what)
  (let recurse ((segments path)
                (tree-node tree))
    (define (processed-segments)
      (list-head path (- (length path) (length segments))))

    (match-let ((($* endpoint-tree-node direct-match any-match children)
                 tree-node))
      (when (endset? direct-match)
        (raise (condition
                (&error)
                (&message (message (format #f "Endset already registered for ~s"
                                           (processed-segments)))))))

      (match segments
        (()
         (cond (direct-match
                (raise (condition
                        (&error)
                        (&message (message (format #f "Endpoint already registered for ~s"
                                                   path))))))
               ((and (endset? what) (not (s146:mapping-empty? children)))
                (raise (condition
                        (&error)
                        (&message (message (format #f "Endpoints already registered under ~s"
                                                   path))))))
               (#t
                (endpoint-tree-node
                 #:<- tree-node
                 (direct-match what)))))

        ('any
         (cond (any-match
                (raise (condition
                        (&error)
                        (&message (message (format #f "\"any\" endpoint already registered for ~s"
                                                   path))))))
               ((endset? what)
                (raise (condition
                        (&error)
                        (&message (message (format #f "endset should be registered at normal path, not ~s"
                                                   path))))))
               (#t
                (endpoint-tree-node
                 #:<- tree-node
                 (any-match what)))))

        (((? string? current-segment) . segments-rest)
         (endpoint-tree-node
          #:<- tree-node
          (children (s146:mapping-update/default
                     children current-segment (cut recurse segments-rest <>)
                     %null-endpoint-tree-node))))))))

(define-public (endset-+ endset-obj path what)
  (endset
   #:<- endset-obj
   (endpoints (endpoint-tree-+ (endset-endpoints endset-obj) path what))))

(eval-when (compile load eval)
  (define-immutable-record-type* path-spec
    (path-syntax)
    (extra-handler-args-syntax))

  (define (syntax->path-spec x)
    (let loop ((path-segments '())
               (path-syntax x))
      (syntax-case path-syntax (unquote unquote-splicing)
        (()
         (path-spec (path-syntax #``(#,@(reverse path-segments)))
                    (extra-handler-args-syntax #'())))
        (rest-arg
         (identifier? #'rest-arg)
         (path-spec (path-syntax #``(#,@(reverse path-segments) . any))
                    (extra-handler-args-syntax #'(rest-arg))))
        ((unquote list-expression)
         (path-spec (path-syntax #``(#,@(reverse path-segments)
                                     . ,list-expression))
                    (extra-handler-args-syntax #'())))
        ((segment-arg . rest)
         (identifier? #'segment-arg)
         (raise (condition
                 (&error)
                 (&message (message "Binding identifiers to path segments not yet supported")))))
        (((unquote segment-expression) . rest)
         (loop (cons #',segment-expression path-segments) #'rest))
        (((unquote-splicing segments-expression) . rest)
         (loop (cons #',@segments-expression path-segments) #'rest))
        ((segment . rest)
         (string? (syntax->datum #'segment))
         (loop (cons #'segment path-segments) #'rest))))))

(export define-endpoint)
(define-syntax define-endpoint
  (lambda (x)
    (syntax-case x ()
      ((_ endset-identifier handler-identifier path parameters-list
          handler-body handler-body-rest ...)
       (and (identifier? #'webservice-identifier)
            (identifier? #'handler-identifier))
       (match (syntax->path-spec #'path)
         (($* path-spec path-syntax extra-handler-args-syntax)
          #`(begin
              (define (handler-identifier
                       #,(datum->syntax #'handler-identifier 'request)
                       #,(datum->syntax #'handler-identifier 'body)
                       . #,extra-handler-args-syntax)
                handler-body handler-body-rest ...)

              (define endset-identifier
                (endset-+ endset-identifier #,path-syntax
                          (endpoint (parameters parameters-list)
                                    (handler handler-identifier)))))))))))

(define-immutable-record-type* endpoint-ref-result
  (path-tail)
  (endpoint)
  (parameters)
  #:finalize (match-lambda
               ((and result ($* endpoint-ref-result (parameters #f) endpoint))
                (let ((parameters (match endpoint
                                    (($* endpoint parameters)
                                     parameters)
                                    (($* endset parameters)
                                     parameters))))
                  (endpoint-ref-result #:<- result parameters)))
               (result
                result)))

(define (default-endpoint)
  (endpoint (handler (%default-handler))
            (parameters `((,%redirect/normalize-path? . #f)
                          (,%redirect/remove-query? . #f)))))

(define* (endpoint-tree-ref tree path #:key
          (default-endpoint (default-endpoint)))
  (let loop ((segments path)
             (tree-node tree)
             (best-any-match-endpoint default-endpoint)
             (best-any-match-path #f))
    (define (default-result)
      (endpoint-ref-result (path-tail best-any-match-path)
                           (endpoint best-any-match-endpoint)))

    (match segments
      (()
       (match tree-node
         (($* endpoint-tree-node (direct-match (? identity endpoint)))
          (endpoint-ref-result (path-tail #f) endpoint))
         (_
          (default-result))))

      ((current-segment . segments-rest)
       (match-let* (((best-any-match-endpoint best-any-match-path)
                     (or (and=> (endpoint-tree-node-any-match tree-node)
                                (cut list <> segments))
                         (list best-any-match-endpoint best-any-match-path)))
                    (children (endpoint-tree-node-children tree-node))
                    (subnode (s146:mapping-ref/default children current-segment
                                                       #f)))
         (cond (subnode
                (loop segments-rest subnode
                      best-any-match-endpoint best-any-match-path))
               (best-any-match-endpoint
                (endpoint-ref-result (path-tail best-any-match-path)
                                     (endpoint best-any-match-endpoint)))
               (#t
                (default-result))))))))

(define* (query-endset endset path #:optional (default #f))
  (match-let loop ((($* endset endpoints (parameters endset-parameters)) endset)
                   (path path)
                   (parameters-lists '()))
    (match (endpoint-tree-ref endpoints path)
      (($* endpoint-ref-result
           path-tail
           (endpoint (? endset? next-endset)))
       (loop next-endset path-tail (cons endset-parameters parameters-lists)))
      (result
       (endpoint-ref-result
        #:<- result
        (parameters #:-> (apply append (reverse (cons* parameters
                                                       endset-parameters
                                                       parameters-lists)))))))))



(export build-response*)
(define* (build-response* #:key (redirect-to #f) (headers (%default-headers))
          (code #f) #:rest args)
  (define code*
    (or code (if redirect-to 301 200)))

  (define redirect-to*
    (if (string? redirect-to)
        (uri:string->uri redirect-to)
        redirect-to))

  (define headers*
    (if redirect-to*
        `((location . ,redirect-to*) . ,headers)
        headers))

  (let loop ((to-filter args)
             (filtered '()))
    (match to-filter
      (()
       (apply build-response #:code code* #:headers headers*
              (reverse filtered)))
      (((? (cut memq <> '(#:code #:headers #:redirect-to))) _ . rest)
       (loop rest filtered))
      ((keyword keyword-arg . rest)
       (loop rest (cons* keyword-arg keyword filtered))))))

(define (%catchall-ref-result)
  (endpoint-ref-result (path-tail #f)
                       (endpoint (endpoint (handler (%default-handler))))))

(define %ugly-uri-path-regex
  (make-regexp ".+/(/|$)"))

(define (exception->msg ex)
  (format #f "~a~%~a~%"
          (if (exception-with-message? ex)
              (format #f "Error: ~a." (exception-message ex))
              "Error occured.")
          ex))

(define (handler request body root-endset)
  (define (bt-string)
    (call-with-output-string (lambda (port)
                               (terminal-width 10000)
                               (display-backtrace (make-stack #t 6 0) port))))

  (match-let* ((uri (request-uri request))
               (path-string (uri:uri-path uri))
               (path (uri:split-and-decode-uri-path path-string))
               (($* endpoint-ref-result path-tail endpoint parameters)
                (query-endset root-endset path (%catchall-ref-result))))
    (with-parameters* (map car parameters) (map cdr parameters)
      (lambda ()
        (define (normalized-path-string)
          (format #f "/~a" (uri:encode-and-join-uri-path path)))

        (define (redirect-path)
          (if (%redirect/normalize-path?)
              (normalized-path-string)
              (uri:uri-path (request-uri request))))

        (define (redirect-query)
          (if (%redirect/remove-query?)
              #f
              (uri:uri-query uri)))

        (if (or (and (%redirect/normalize-path?)
                     (regexp-exec %ugly-uri-path-regex path-string))
                (and (%redirect/remove-query?)
                     (uri:uri-query uri)))
            (values (build-response* #:redirect-to (uri:build-relative-ref
                                                    #:path (redirect-path)
                                                    #:query (redirect-query)))
                    "Redirect...")
            (let/ec escape
              (with-exception-handler
                  (lambda (ex)
                    (define msg
                      (exception->msg ex))

                    (display msg (current-error-port))

                    (escape (build-response* #:code 500)
                            (string-append msg "\nBacktrace:\n\n" (bt-string))))
                (lambda ()
                  (parameterize ((%current-path path)
                                 (%current-path-string path-string))
                    (start-stack 'cantius-request
                      (apply (endpoint-handler endpoint) request body
                             (or (and=> path-tail list) '()))))))))))))

(define-public (run-cantius endset . server-args)
  (apply run-server (cut handler <> <> endset) server-args))