2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00
data-service/guix-data-service/web/util.scm
Christopher Baines d13a7187af Fix request->path-components-and-mime-type
Previously, it wouldn't pull the mime types out of the request properly, I
think it does a better job of that now.
2021-05-12 08:26:15 +01:00

106 lines
3.8 KiB
Scheme

;;; 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)
("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 (underscore-join-words words)
(string-join
(string-split words #\space)
"_"))