2018-02-05 21:05:59 +00:00
|
|
|
package registry // import "github.com/docker/docker/registry"
|
2015-09-16 17:42:17 +00:00
|
|
|
|
|
|
|
import (
|
2016-02-18 00:53:25 +00:00
|
|
|
"net/url"
|
2015-09-16 17:42:17 +00:00
|
|
|
"strings"
|
|
|
|
|
2015-12-30 00:27:12 +00:00
|
|
|
"github.com/docker/go-connections/tlsconfig"
|
2015-09-16 17:42:17 +00:00
|
|
|
)
|
|
|
|
|
2022-02-25 22:45:49 +00:00
|
|
|
func (s *defaultService) lookupV2Endpoints(hostname string) (endpoints []APIEndpoint, err error) {
|
2016-11-05 22:53:11 +00:00
|
|
|
if hostname == DefaultNamespace || hostname == IndexHostname {
|
2016-03-08 21:03:37 +00:00
|
|
|
for _, mirror := range s.config.Mirrors {
|
2016-02-18 00:53:25 +00:00
|
|
|
if !strings.HasPrefix(mirror, "http://") && !strings.HasPrefix(mirror, "https://") {
|
|
|
|
mirror = "https://" + mirror
|
|
|
|
}
|
|
|
|
mirrorURL, err := url.Parse(mirror)
|
|
|
|
if err != nil {
|
2022-02-26 12:45:12 +00:00
|
|
|
return nil, invalidParam(err)
|
2016-02-18 00:53:25 +00:00
|
|
|
}
|
2022-02-27 12:03:54 +00:00
|
|
|
mirrorTLSConfig, err := newTLSConfig(mirrorURL.Host, s.config.isSecureIndex(mirrorURL.Host))
|
2015-09-16 17:42:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
2020-10-28 11:05:40 +00:00
|
|
|
URL: mirrorURL,
|
2015-09-16 17:42:17 +00:00
|
|
|
Version: APIVersion2,
|
|
|
|
Mirror: true,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: mirrorTLSConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
|
|
|
URL: DefaultV2Registry,
|
|
|
|
Version: APIVersion2,
|
|
|
|
Official: true,
|
|
|
|
TrimHostname: true,
|
2022-02-26 13:52:12 +00:00
|
|
|
TLSConfig: tlsconfig.ServerDefault(),
|
2015-09-16 17:42:17 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return endpoints, nil
|
|
|
|
}
|
|
|
|
|
2022-02-27 12:03:54 +00:00
|
|
|
tlsConfig, err := newTLSConfig(hostname, s.config.isSecureIndex(hostname))
|
2015-09-16 17:42:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-02-27 12:03:54 +00:00
|
|
|
ana := s.config.allowNondistributableArtifacts(hostname)
|
2015-09-16 17:42:17 +00:00
|
|
|
endpoints = []APIEndpoint{
|
|
|
|
{
|
2016-02-18 00:53:25 +00:00
|
|
|
URL: &url.URL{
|
|
|
|
Scheme: "https",
|
|
|
|
Host: hostname,
|
|
|
|
},
|
2018-07-04 18:11:49 +00:00
|
|
|
Version: APIVersion2,
|
2017-05-09 21:00:31 +00:00
|
|
|
AllowNondistributableArtifacts: ana,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: tlsConfig,
|
2015-09-16 17:42:17 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if tlsConfig.InsecureSkipVerify {
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
2016-02-18 00:53:25 +00:00
|
|
|
URL: &url.URL{
|
|
|
|
Scheme: "http",
|
|
|
|
Host: hostname,
|
|
|
|
},
|
2018-07-04 18:11:49 +00:00
|
|
|
Version: APIVersion2,
|
2017-05-09 21:00:31 +00:00
|
|
|
AllowNondistributableArtifacts: ana,
|
|
|
|
TrimHostname: true,
|
2015-09-16 17:42:17 +00:00
|
|
|
// used to check if supposed to be secure via InsecureSkipVerify
|
2015-12-04 21:42:33 +00:00
|
|
|
TLSConfig: tlsConfig,
|
2015-09-16 17:42:17 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return endpoints, nil
|
|
|
|
}
|