databricks-cli/bundle/config/mutator/default_workspace_paths.go

42 lines
1004 B
Go
Raw Normal View History

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) ([]bundle.Mutator, error) {
root := b.Config.Workspace.RootPath
if root == "" {
return nil, 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, nil
}