mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
swh: Handle absolute URLs being returned by the API.
* guix/swh.scm (swh-url): Don't prepend (%swh-base-url) if a domain is already present. This fixes the "guix lint: warning: while connecting to Software Heritage: host lookup failure: Name or service not known" error message.
This commit is contained in:
parent
5ce67a1c20
commit
6a3911b88f
1 changed files with 10 additions and 2 deletions
12
guix/swh.scm
12
guix/swh.scm
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -126,9 +127,16 @@ (define %swh-base-url
|
|||
(make-parameter "https://archive.softwareheritage.org"))
|
||||
|
||||
(define (swh-url path . rest)
|
||||
;; URLs returned by the API may be relative or absolute. This has changed
|
||||
;; without notice before. Handle both cases by detecting whether the path
|
||||
;; starts with a domain.
|
||||
(define root
|
||||
(if (string-prefix? "/" path)
|
||||
(string-append (%swh-base-url) path)
|
||||
path))
|
||||
|
||||
(define url
|
||||
(string-append (%swh-base-url) path
|
||||
(string-join rest "/" 'prefix)))
|
||||
(string-append root (string-join rest "/" 'prefix)))
|
||||
|
||||
;; Ensure there's a trailing slash or we get a redirect.
|
||||
(if (string-suffix? "/" url)
|
||||
|
|
Loading…
Reference in a new issue