blob: ecd2a5012a9ebd82e3295dd73cbe9dfc7f0d3073 [file] [log] [blame]
package client
import (
"fmt"
"io"
"net/http"
"net/url"
"path"
"strconv"
"strings"
)
type HTTPRemoteOptions struct {
MetadataPath string
TargetsPath string
UserAgent string
}
func HTTPRemoteStore(baseURL string, opts *HTTPRemoteOptions) (RemoteStore, error) {
if !strings.HasPrefix(baseURL, "http") {
return nil, ErrInvalidURL{baseURL}
}
if opts == nil {
opts = &HTTPRemoteOptions{}
}
if opts.TargetsPath == "" {
opts.TargetsPath = "targets"
}
return &httpRemoteStore{baseURL, opts}, nil
}
type httpRemoteStore struct {
baseURL string
opts *HTTPRemoteOptions
}
func (h *httpRemoteStore) GetMeta(name string) (io.ReadCloser, int64, error) {
return h.get(path.Join(h.opts.MetadataPath, name))
}
func (h *httpRemoteStore) GetTarget(name string) (io.ReadCloser, int64, error) {
return h.get(path.Join(h.opts.TargetsPath, name))
}
func (h *httpRemoteStore) get(s string) (io.ReadCloser, int64, error) {
u := h.url(s)
req, err := http.NewRequest("GET", u, nil)
if err != nil {
return nil, 0, err
}
if h.opts.UserAgent != "" {
req.Header.Set("User-Agent", h.opts.UserAgent)
}
res, err := http.DefaultClient.Do(req)
if err != nil {
return nil, 0, err
}
if res.StatusCode == http.StatusNotFound {
res.Body.Close()
return nil, 0, ErrNotFound{s}
} else if res.StatusCode != http.StatusOK {
res.Body.Close()
return nil, 0, &url.Error{
Op: "GET",
URL: u,
Err: fmt.Errorf("unexpected HTTP status %d", res.StatusCode),
}
}
size, err := strconv.ParseInt(res.Header.Get("Content-Length"), 10, 0)
if err != nil {
return res.Body, -1, nil
}
return res.Body, size, nil
}
func (h *httpRemoteStore) url(path string) string {
if !strings.HasPrefix(path, "/") {
path = "/" + path
}
return h.baseURL + path
}