2018-02-05 16:05:59 -05:00
|
|
|
package registry // import "github.com/docker/docker/registry"
|
2015-09-16 13:42:17 -04:00
|
|
|
|
|
|
|
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
|
|
|
)
|
|
|
|
|
2022-02-25 17:45:49 -05:00
|
|
|
func (s *defaultService) lookupV2Endpoints(hostname string) (endpoints []APIEndpoint, err error) {
|
2022-10-15 19:08:49 -04:00
|
|
|
ana := s.config.allowNondistributableArtifacts(hostname)
|
|
|
|
|
2016-11-05 18:53:11 -04:00
|
|
|
if hostname == DefaultNamespace || hostname == IndexHostname {
|
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 {
|
2022-02-26 07:45:12 -05:00
|
|
|
return nil, invalidParam(err)
|
2016-02-17 19:53:25 -05:00
|
|
|
}
|
2022-02-27 07:03:54 -05:00
|
|
|
mirrorTLSConfig, err := newTLSConfig(mirrorURL.Host, s.config.isSecureIndex(mirrorURL.Host))
|
2015-09-16 13:42:17 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
2020-10-28 07:05:40 -04:00
|
|
|
URL: mirrorURL,
|
2015-09-16 13:42:17 -04:00
|
|
|
Version: APIVersion2,
|
|
|
|
Mirror: true,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: mirrorTLSConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
|
|
|
URL: DefaultV2Registry,
|
|
|
|
Version: APIVersion2,
|
|
|
|
Official: true,
|
|
|
|
TrimHostname: true,
|
2022-02-26 08:52:12 -05:00
|
|
|
TLSConfig: tlsconfig.ServerDefault(),
|
2022-10-15 19:08:49 -04:00
|
|
|
|
|
|
|
AllowNondistributableArtifacts: ana,
|
2015-09-16 13:42:17 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
return endpoints, nil
|
|
|
|
}
|
|
|
|
|
2022-02-27 07:03:54 -05:00
|
|
|
tlsConfig, err := newTLSConfig(hostname, s.config.isSecureIndex(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,
|
|
|
|
},
|
2018-07-04 14:11:49 -04:00
|
|
|
Version: APIVersion2,
|
2017-05-09 17:00:31 -04:00
|
|
|
AllowNondistributableArtifacts: ana,
|
|
|
|
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,
|
|
|
|
},
|
2018-07-04 14:11:49 -04:00
|
|
|
Version: APIVersion2,
|
2017-05-09 17:00:31 -04:00
|
|
|
AllowNondistributableArtifacts: ana,
|
|
|
|
TrimHostname: true,
|
2015-09-16 13:42:17 -04:00
|
|
|
// 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
|
|
|
|
}
|