83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
|
package handlers
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
"strconv"
|
||
|
|
||
|
"github.com/docker/distribution/registry/api/errcode"
|
||
|
"github.com/gorilla/handlers"
|
||
|
)
|
||
|
|
||
|
const maximumReturnedEntries = 100
|
||
|
|
||
|
func catalogDispatcher(ctx *Context, r *http.Request) http.Handler {
|
||
|
catalogHandler := &catalogHandler{
|
||
|
Context: ctx,
|
||
|
}
|
||
|
|
||
|
return handlers.MethodHandler{
|
||
|
"GET": http.HandlerFunc(catalogHandler.GetCatalog),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type catalogHandler struct {
|
||
|
*Context
|
||
|
}
|
||
|
|
||
|
type catalogAPIResponse struct {
|
||
|
Repositories []string `json:"repositories"`
|
||
|
}
|
||
|
|
||
|
func (ch *catalogHandler) GetCatalog(w http.ResponseWriter, r *http.Request) {
|
||
|
q := r.URL.Query()
|
||
|
lastEntry := q.Get("last")
|
||
|
maxEntries, err := strconv.Atoi(q.Get("n"))
|
||
|
if err != nil || maxEntries < 0 {
|
||
|
maxEntries = maximumReturnedEntries
|
||
|
}
|
||
|
|
||
|
repos, moreEntries, err := ch.Catalog.Get(maxEntries, lastEntry)
|
||
|
if err != nil {
|
||
|
ch.Errors = append(ch.Errors, errcode.ErrorCodeUnknown.WithDetail(err))
|
||
|
return
|
||
|
}
|
||
|
|
||
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
||
|
|
||
|
// Add a link header if there are more entries to retrieve
|
||
|
if moreEntries {
|
||
|
urlStr, err := createLinkEntry(r.URL.String(), maxEntries, repos)
|
||
|
if err != nil {
|
||
|
ch.Errors = append(ch.Errors, errcode.ErrorCodeUnknown.WithDetail(err))
|
||
|
return
|
||
|
}
|
||
|
w.Header().Set("Link", urlStr)
|
||
|
}
|
||
|
|
||
|
enc := json.NewEncoder(w)
|
||
|
if err := enc.Encode(catalogAPIResponse{
|
||
|
Repositories: repos,
|
||
|
}); err != nil {
|
||
|
ch.Errors = append(ch.Errors, errcode.ErrorCodeUnknown.WithDetail(err))
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Use the original URL from the request to create a new URL for
|
||
|
// the link header
|
||
|
func createLinkEntry(origURL string, maxEntries int, repos []string) (string, error) {
|
||
|
calledURL, err := url.Parse(origURL)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
calledURL.RawQuery = fmt.Sprintf("n=%d&last=%s", maxEntries, repos[len(repos)-1])
|
||
|
calledURL.Fragment = ""
|
||
|
urlStr := fmt.Sprintf("<%s>; rel=\"next\"", calledURL.String())
|
||
|
|
||
|
return urlStr, nil
|
||
|
}
|