aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/web/util.scm
blob: 108c9ec1443507d7a8fbe70cbd4afa8095eef151 (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
;;; Guix Data Service -- Information about Guix over time
;;; Copyright © 2016, 2017  Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2014  David Thompson <davet@gnu.org>
;;; Copyright © 2019 Christopher Baines <mail@cbaines.net>
;;;
;;; This program is free software: you can redistribute it and/or
;;; modify it under the terms of the GNU Affero General Public License
;;; as published by the Free Software Foundation, either version 3 of
;;; the License, or (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;;; Affero General Public License for more details.
;;;
;;; You should have received a copy of the GNU Affero General Public
;;; License along with this program.  If not, see
;;; <http://www.gnu.org/licenses/>.

(define-module (guix-data-service web util)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-1)
  #:use-module (web request)
  #:use-module (web uri)
  #:export (most-appropriate-mime-type
            request->path-components-and-mime-type
            file-extension
            directory?

            hyphenate-words
            underscore-join-words))

(define (most-appropriate-mime-type accepted-mime-types
                                    supported-mime-types)
  (or
   ;; Pick the first supported mime-type
   (find (lambda (accepted-mime-type)
           (memq accepted-mime-type
                 supported-mime-types))
         accepted-mime-types)
   ;; Default to the first supported mime-type if none are accepted
   (first supported-mime-types)))

(define (request->path-components-and-mime-type request)
  (define extensions-to-mime-types
    '(("json" . application/json)
      ("html" . text/html)))

  (define (ends-with-recognised-extension? path)
    (any (lambda (extension)
           (string-suffix? (string-append "." extension)
                           path))
         (map car extensions-to-mime-types)))

  (match (split-and-decode-uri-path (uri-path (request-uri request)))
    (()
     (values '()
             (or (request-accept request)
                 (list 'text/html))))
    ((single-component)
     (if (ends-with-recognised-extension? single-component)
         (match (string-split single-component #\.)
           ((first-parts ... extension)
            (values (list (string-join first-parts "."))
                    (or (cons
                         (assoc-ref extensions-to-mime-types extension)
                         (or (request-accept request)
                             (list 'text/html)))))))
         (values (list single-component)
                 (or (request-accept request)
                     (list 'text/html)))))
    ((first-components ... last-component)
     (if (ends-with-recognised-extension? last-component)
         (match (string-split last-component #\.)
           ((first-parts ... extension)
            (values (append first-components
                            (list (string-join first-parts ".")))
                    (or (cons
                         (assoc-ref extensions-to-mime-types extension)
                         (or (request-accept request)
                             (list 'text/html)))))))
         (values (append first-components
                         (list last-component))
                 (or (request-accept request)
                     (list 'text/html)))))))

(define (file-extension file-name)
  (last (string-split file-name #\.)))

(define (directory? filename)
  (string=? filename (dirname filename)))

(define (hyphenate-words words)
  (string-join
   (string-split words #\space)
   "-"))

(define (underscore-join-words words)
  (string-join
   (string-split words #\space)
   "_"))