mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-19 02:39:17 -05:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/cli"
|
|
version "github.com/hashicorp/go-version"
|
|
"github.com/hashicorp/terraform/internal/initwd"
|
|
)
|
|
|
|
type view interface {
|
|
Log(message string, params ...any)
|
|
}
|
|
type uiModuleInstallHooks struct {
|
|
initwd.ModuleInstallHooksImpl
|
|
Ui cli.Ui
|
|
ShowLocalPaths bool
|
|
View view
|
|
}
|
|
|
|
var _ initwd.ModuleInstallHooks = uiModuleInstallHooks{}
|
|
|
|
func (h uiModuleInstallHooks) Download(modulePath, packageAddr string, v *version.Version) {
|
|
if v != nil {
|
|
h.log(fmt.Sprintf("Downloading %s %s for %s...", packageAddr, v, modulePath))
|
|
} else {
|
|
h.log(fmt.Sprintf("Downloading %s for %s...", packageAddr, modulePath))
|
|
}
|
|
}
|
|
|
|
func (h uiModuleInstallHooks) Install(modulePath string, v *version.Version, localDir string) {
|
|
if h.ShowLocalPaths {
|
|
h.log(fmt.Sprintf("- %s in %s", modulePath, localDir))
|
|
} else {
|
|
h.log(fmt.Sprintf("- %s", modulePath))
|
|
}
|
|
}
|
|
|
|
func (h uiModuleInstallHooks) log(message string) {
|
|
switch h.View.(type) {
|
|
case view:
|
|
h.View.Log(message)
|
|
default:
|
|
h.Ui.Info(message)
|
|
}
|
|
}
|