2020-01-10 02:47:54 +01:00
|
|
|
package getproviders
|
|
|
|
|
|
|
|
import (
|
2020-04-23 00:58:40 +02:00
|
|
|
"fmt"
|
2020-01-10 02:47:54 +01:00
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/addrs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// HTTPMirrorSource is a source that reads provider metadata from a provider
|
|
|
|
// mirror that is accessible over the HTTP provider mirror protocol.
|
|
|
|
type HTTPMirrorSource struct {
|
|
|
|
baseURL *url.URL
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Source = (*HTTPMirrorSource)(nil)
|
|
|
|
|
|
|
|
// NewHTTPMirrorSource constructs and returns a new network mirror source with
|
|
|
|
// the given base URL. The relative URL offsets defined by the HTTP mirror
|
|
|
|
// protocol will be resolve relative to the given URL.
|
|
|
|
func NewHTTPMirrorSource(baseURL *url.URL) *HTTPMirrorSource {
|
|
|
|
return &HTTPMirrorSource{
|
|
|
|
baseURL: baseURL,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AvailableVersions retrieves the available versions for the given provider
|
|
|
|
// from the object's underlying HTTP mirror service.
|
|
|
|
func (s *HTTPMirrorSource) AvailableVersions(provider addrs.Provider) (VersionList, error) {
|
2020-04-23 00:58:40 +02:00
|
|
|
return nil, fmt.Errorf("Network-based provider mirrors are not supported in this version of Terraform")
|
2020-01-10 02:47:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// PackageMeta retrieves metadata for the requested provider package
|
|
|
|
// from the object's underlying HTTP mirror service.
|
|
|
|
func (s *HTTPMirrorSource) PackageMeta(provider addrs.Provider, version Version, target Platform) (PackageMeta, error) {
|
2020-04-23 00:58:40 +02:00
|
|
|
return PackageMeta{}, fmt.Errorf("Network-based provider mirrors are not supported in this version of Terraform")
|
2020-01-10 02:47:54 +01:00
|
|
|
}
|
2020-05-14 20:04:13 +02:00
|
|
|
|
|
|
|
// ForDisplay returns a string description of the source for user-facing output.
|
|
|
|
func (s *HTTPMirrorSource) ForDisplay(provider addrs.Provider) string {
|
|
|
|
return "Network-based provider mirrors are not supported in this version of Terraform"
|
|
|
|
}
|