mirror of https://github.com/databricks/cli.git
42 lines
974 B
Go
42 lines
974 B
Go
package mutator
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"path"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
)
|
|
|
|
type defineDefaultWorkspacePaths struct{}
|
|
|
|
// DefineDefaultWorkspacePaths sets workspace paths if they aren't already set.
|
|
func DefineDefaultWorkspacePaths() bundle.Mutator {
|
|
return &defineDefaultWorkspacePaths{}
|
|
}
|
|
|
|
func (m *defineDefaultWorkspacePaths) Name() string {
|
|
return "DefaultWorkspacePaths"
|
|
}
|
|
|
|
func (m *defineDefaultWorkspacePaths) Apply(ctx context.Context, b *bundle.Bundle) error {
|
|
root := b.Config.Workspace.RootPath
|
|
if root == "" {
|
|
return fmt.Errorf("unable to define default workspace paths: workspace root not defined")
|
|
}
|
|
|
|
if b.Config.Workspace.FilesPath == "" {
|
|
b.Config.Workspace.FilesPath = path.Join(root, "files")
|
|
}
|
|
|
|
if b.Config.Workspace.ArtifactsPath == "" {
|
|
b.Config.Workspace.ArtifactsPath = path.Join(root, "artifacts")
|
|
}
|
|
|
|
if b.Config.Workspace.StatePath == "" {
|
|
b.Config.Workspace.StatePath = path.Join(root, "state")
|
|
}
|
|
|
|
return nil
|
|
}
|