2015-09-16 13:42:17 -04:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2015-12-04 16:55:15 -05:00
|
|
|
"github.com/docker/docker/reference"
|
2015-12-29 19:27:12 -05:00
|
|
|
"github.com/docker/go-connections/tlsconfig"
|
2015-09-16 13:42:17 -04:00
|
|
|
)
|
|
|
|
|
2015-11-18 17:20:54 -05:00
|
|
|
func (s *Service) lookupV2Endpoints(repoName reference.Named) (endpoints []APIEndpoint, err error) {
|
2015-09-16 13:42:17 -04:00
|
|
|
var cfg = tlsconfig.ServerDefault
|
|
|
|
tlsConfig := &cfg
|
2015-12-11 14:00:13 -05:00
|
|
|
nameString := repoName.FullName()
|
2015-11-18 17:20:54 -05:00
|
|
|
if strings.HasPrefix(nameString, DefaultNamespace+"/") {
|
2015-09-16 13:42:17 -04:00
|
|
|
// v2 mirrors
|
|
|
|
for _, mirror := range s.Config.Mirrors {
|
|
|
|
mirrorTLSConfig, err := s.tlsConfigForMirror(mirror)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
|
|
|
URL: mirror,
|
|
|
|
// guess mirrors are v2
|
|
|
|
Version: APIVersion2,
|
|
|
|
Mirror: true,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: mirrorTLSConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
// v2 registry
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
|
|
|
URL: DefaultV2Registry,
|
|
|
|
Version: APIVersion2,
|
|
|
|
Official: true,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: tlsConfig,
|
|
|
|
})
|
|
|
|
|
|
|
|
return endpoints, nil
|
|
|
|
}
|
|
|
|
|
2015-11-18 17:20:54 -05:00
|
|
|
slashIndex := strings.IndexRune(nameString, '/')
|
2015-09-16 13:42:17 -04:00
|
|
|
if slashIndex <= 0 {
|
2015-11-18 17:20:54 -05:00
|
|
|
return nil, fmt.Errorf("invalid repo name: missing '/': %s", nameString)
|
2015-09-16 13:42:17 -04:00
|
|
|
}
|
2015-11-18 17:20:54 -05:00
|
|
|
hostname := nameString[:slashIndex]
|
2015-09-16 13:42:17 -04:00
|
|
|
|
|
|
|
tlsConfig, err = s.TLSConfig(hostname)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoints = []APIEndpoint{
|
|
|
|
{
|
2015-12-04 16:42:33 -05:00
|
|
|
URL: "https://" + hostname,
|
|
|
|
Version: APIVersion2,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: tlsConfig,
|
2015-09-16 13:42:17 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if tlsConfig.InsecureSkipVerify {
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
|
|
|
URL: "http://" + hostname,
|
|
|
|
Version: APIVersion2,
|
|
|
|
TrimHostname: true,
|
|
|
|
// used to check if supposed to be secure via InsecureSkipVerify
|
2015-12-04 16:42:33 -05:00
|
|
|
TLSConfig: tlsConfig,
|
2015-09-16 13:42:17 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return endpoints, nil
|
|
|
|
}
|