aboutsummaryrefslogtreecommitdiff
path: root/gn3-guile/web/webserver.scm
blob: f5fedd7f0fd8af4ec0148178bf704b2450c96c33 (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
#!/usr/bin/env guile \
-e main -s
!#
;; Minimal web server can be started from command line. Current example routes:
;;
;;    localhost:8080/version.json
;;
;; Note that this is a single blocking thread server right now.

(use-modules (json)
             (web server)
             (web request)
             (web response)
             (web uri))

(define (get-version-str)
  "\"1.0\"")

(define info-list (scm->json-string '(
                                      ("name"."GeneNetwork REST API")
                                      ("version"."1.0")
                                      ("note"."work in progress (WIP)")
                                      )))

(define (get-gn-info-str)
  info-list
  )

(define (get-species-str)
  "{
\"Mus_musculus\": {
  \"id\": \"mouse\"
  },
\"Rattus_norvegicus\": {
  \"id\": \"rat\"
  }
}")

;; ---- REST API web server handler

(define (hello-world-handler request body)
  (let ((path (uri-path (request-uri request))))
    (cond
     ((member path (list "/version.json"))
      (values '((content-type . (application/json)))
              (get-version-str)
              ))
     ((member path (list "/species/"))
      (values '((content-type . (application/json)))
              (get-species-str)
              ))
     ((member path (list "/"))
      (values '((content-type . (application/json)))
              (get-gn-info-str)
              ))
     (else
      (not-found request)))))

(define (not-found request)
  (values (build-response #:code 404)
          (string-append "Resource not found: "
                         (uri->string (request-uri request)))))

(define (main args)
  (write "Starting Guile REST API server!")
  (write args)
  (newline)
  (let ((listen (inexact->exact (string->number (car (cdr args))))))
    (display `("listening on" ,listen))
    ;; (write listen)
    (run-server hello-world-handler 'http `(#:port ,listen))))