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
|
|
|
|
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) lookupV1Endpoints(hostname string) (endpoints []APIEndpoint, err error) {
|
2016-09-02 21:27:20 -04:00
|
|
|
tlsConfig := tlsconfig.ServerDefault()
|
2016-03-01 02:07:41 -05:00
|
|
|
if hostname == DefaultNamespace {
|
2015-09-16 13:42:17 -04:00
|
|
|
endpoints = append(endpoints, APIEndpoint{
|
|
|
|
URL: DefaultV1Registry,
|
|
|
|
Version: APIVersion1,
|
|
|
|
Official: true,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: tlsConfig,
|
|
|
|
})
|
|
|
|
return endpoints, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
tlsConfig, err = s.TLSConfig(hostname)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoints = []APIEndpoint{
|
|
|
|
{
|
2016-02-17 19:53:25 -05:00
|
|
|
URL: &url.URL{
|
|
|
|
Scheme: "https",
|
|
|
|
Host: hostname,
|
|
|
|
},
|
2015-09-16 13:42:17 -04:00
|
|
|
Version: APIVersion1,
|
|
|
|
TrimHostname: true,
|
|
|
|
TLSConfig: tlsConfig,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if tlsConfig.InsecureSkipVerify {
|
|
|
|
endpoints = append(endpoints, APIEndpoint{ // or this
|
2016-02-17 19:53:25 -05:00
|
|
|
URL: &url.URL{
|
|
|
|
Scheme: "http",
|
|
|
|
Host: hostname,
|
|
|
|
},
|
2015-09-16 13:42:17 -04:00
|
|
|
Version: APIVersion1,
|
|
|
|
TrimHostname: true,
|
|
|
|
// used to check if supposed to be secure via InsecureSkipVerify
|
|
|
|
TLSConfig: tlsConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return endpoints, nil
|
|
|
|
}
|