blob: 6c0caa7c030da6a1b809b094f6f2e60de3c37a32 (
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
|
;;; 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
remove-brackets
underscore-join-words
uri-encode-filename))
(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)
("txt" . text/plain)))
(define (ends-with-recognised-extension? path)
(any (lambda (extension)
(string-suffix? (string-append "." extension)
path))
(map car extensions-to-mime-types)))
(define accept-mime-types
(map car (request-accept request)))
(match (split-and-decode-uri-path (uri-path (request-uri request)))
(()
(values '()
(or accept-mime-types
(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 accept-mime-types
(list 'text/html)))))))
(values (list single-component)
(or accept-mime-types
(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 accept-mime-types
(list 'text/html)))))))
(values (append first-components
(list last-component))
(or accept-mime-types
(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 (remove-brackets s)
(string-filter
(lambda (c)
(not
(or (eq? #\( c)
(eq? #\) c))))
s))
(define (underscore-join-words words)
(string-join
(string-split words #\space)
"_"))
(define (uri-encode-filename s)
(string-join
(map uri-encode
(string-split s #\/))
"/"))
|