2015-09-16 13:42:17 -04:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
2016-02-17 19:53:25 -05:00
|
|
|
"net/url"
|
2015-09-16 13:42:17 -04:00
|
|
|
"strings"
|
|
|
|
|
2015-12-29 19:27:12 -05:00
|
|
|
"github.com/docker/go-connections/tlsconfig"
|
2015-09-16 13:42:17 -04:00
|
|
|
)
|
|
|
|
|
2016-05-21 10:00:28 -04:00
|
|
|
func (s *DefaultService) lookupV2Endpoints(hostname string) (endpoints []APIEndpoint, err error) {
|
2016-09-02 21:27:20 -04:00
|
|
|
tlsConfig := tlsconfig.ServerDefault()
|
2016-11-05 18:53:11 -04:00
|
|
|
if hostname == DefaultNamespace || hostname == IndexHostname {
|
2015-09-16 13:42:17 -04:00
|
|
|
// v2 mirrors
|
2016-03-08 16:03:37 -05:00
|
|
|
for _, mirror := range s.config.Mirrors {
|
2016-02-17 19:53:25 -05:00
|
|
|
if !strings.HasPrefix(mirror, "http://") && !strings.HasPrefix(mirror, "https://") {
|
|
|
|
mirror = "https://" + mirror
|
|
|
|
}
|
|
|
|
mirrorURL, err := url.Parse(mirror)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
mirrorTLSConfig, err := s.tlsConfigForMirror(mirrorURL)
|
2015-09-16 13:42:17 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
2016-02-17 19:53:25 -05:00
|
|
|
URL: mirrorURL,
|
2015-09-16 13:42:17 -04:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2016-04-24 22:51:28 -04:00
|
|
|
tlsConfig, err = s.tlsConfig(hostname)
|
2015-09-16 13:42:17 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoints = []APIEndpoint{
|
|
|
|
{
|
2016-02-17 19:53:25 -05:00
|
|
|
URL: &url.URL{
|
|
|
|
Scheme: "https",
|
|
|
|
Host: hostname,
|
|
|
|
},
|
2015-12-04 16:42:33 -05:00
|
|
|
Version: APIVersion2,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: tlsConfig,
|
2015-09-16 13:42:17 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if tlsConfig.InsecureSkipVerify {
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
2016-02-17 19:53:25 -05:00
|
|
|
URL: &url.URL{
|
|
|
|
Scheme: "http",
|
|
|
|
Host: hostname,
|
|
|
|
},
|
2015-09-16 13:42:17 -04:00
|
|
|
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
|
|
|
|
}
|