2022-11-30 13:15:22 +00:00
|
|
|
package artifacts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2023-05-16 16:35:39 +00:00
|
|
|
"github.com/databricks/cli/bundle"
|
|
|
|
"github.com/databricks/cli/bundle/artifacts/notebook"
|
2022-11-30 13:15:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func UploadAll() bundle.Mutator {
|
|
|
|
return &all{
|
|
|
|
name: "Upload",
|
|
|
|
fn: uploadArtifactByName,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type upload struct {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func uploadArtifactByName(name string) (bundle.Mutator, error) {
|
|
|
|
return &upload{name}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *upload) Name() string {
|
|
|
|
return fmt.Sprintf("artifacts.Upload(%s)", m.name)
|
|
|
|
}
|
|
|
|
|
2023-05-24 12:45:19 +00:00
|
|
|
func (m *upload) Apply(ctx context.Context, b *bundle.Bundle) error {
|
2022-11-30 13:15:22 +00:00
|
|
|
artifact, ok := b.Config.Artifacts[m.name]
|
|
|
|
if !ok {
|
2023-05-24 12:45:19 +00:00
|
|
|
return fmt.Errorf("artifact doesn't exist: %s", m.name)
|
2022-11-30 13:15:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if artifact.Notebook != nil {
|
2023-05-24 12:45:19 +00:00
|
|
|
return bundle.Apply(ctx, b, notebook.Upload(m.name))
|
2022-11-30 13:15:22 +00:00
|
|
|
}
|
|
|
|
|
2023-05-24 12:45:19 +00:00
|
|
|
return nil
|
2022-11-30 13:15:22 +00:00
|
|
|
}
|