]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blobdiff - fetch.go
README: rename to README.adoc
[nsscash/nsscash.git] / fetch.go
index ba1bbc8f4bde2019503102a1100ea1cf01bcc0a0..16e8d902a1d3f179e35a07851650243c61c17abf 100644 (file)
--- a/fetch.go
+++ b/fetch.go
@@ -36,14 +36,17 @@ func init() {
        clients[""] = &http.Client{}
 }
 
-func fetchIfModified(url, ca string, lastModified *time.Time) (int, []byte, error) {
+func fetchIfModified(url, user, pass, ca string, lastModified *time.Time) (int, []byte, error) {
        req, err := http.NewRequest("GET", url, nil)
        if err != nil {
                return 0, nil, err
        }
+       if user != "" || pass != "" {
+               req.SetBasicAuth(user, pass)
+       }
        if !lastModified.IsZero() {
                req.Header.Add("If-Modified-Since",
-                       lastModified.Format(http.TimeFormat))
+                       lastModified.UTC().Format(http.TimeFormat))
        }
 
        client, ok := clients[ca]