mirror of https://github.com/databricks/cli.git
127 lines
3.1 KiB
Go
127 lines
3.1 KiB
Go
|
package validate
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"path"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/databricks/cli/bundle"
|
||
|
"github.com/databricks/cli/bundle/libraries"
|
||
|
"github.com/databricks/cli/bundle/permissions"
|
||
|
"github.com/databricks/cli/libs/diag"
|
||
|
"github.com/databricks/databricks-sdk-go/apierr"
|
||
|
"github.com/databricks/databricks-sdk-go/service/workspace"
|
||
|
"golang.org/x/sync/errgroup"
|
||
|
)
|
||
|
|
||
|
type folderPermissions struct {
|
||
|
}
|
||
|
|
||
|
// Apply implements bundle.ReadOnlyMutator.
|
||
|
func (f *folderPermissions) Apply(ctx context.Context, b bundle.ReadOnlyBundle) diag.Diagnostics {
|
||
|
if len(b.Config().Permissions) == 0 {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
rootPath := b.Config().Workspace.RootPath
|
||
|
paths := []string{}
|
||
|
if !libraries.IsVolumesPath(rootPath) && !libraries.IsWorkspaceSharedPath(rootPath) {
|
||
|
paths = append(paths, rootPath)
|
||
|
}
|
||
|
|
||
|
if !strings.HasSuffix(rootPath, "/") {
|
||
|
rootPath += "/"
|
||
|
}
|
||
|
|
||
|
for _, p := range []string{
|
||
|
b.Config().Workspace.ArtifactPath,
|
||
|
b.Config().Workspace.FilePath,
|
||
|
b.Config().Workspace.StatePath,
|
||
|
b.Config().Workspace.ResourcePath,
|
||
|
} {
|
||
|
if libraries.IsWorkspaceSharedPath(p) || libraries.IsVolumesPath(p) {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
if strings.HasPrefix(p, rootPath) {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
paths = append(paths, p)
|
||
|
}
|
||
|
|
||
|
var diags diag.Diagnostics
|
||
|
g, ctx := errgroup.WithContext(ctx)
|
||
|
results := make([]diag.Diagnostics, len(paths))
|
||
|
for i, p := range paths {
|
||
|
g.Go(func() error {
|
||
|
results[i] = checkFolderPermission(ctx, b, p)
|
||
|
return nil
|
||
|
})
|
||
|
}
|
||
|
|
||
|
if err := g.Wait(); err != nil {
|
||
|
return diag.FromErr(err)
|
||
|
}
|
||
|
|
||
|
for _, r := range results {
|
||
|
diags = diags.Extend(r)
|
||
|
}
|
||
|
|
||
|
return diags
|
||
|
}
|
||
|
|
||
|
func checkFolderPermission(ctx context.Context, b bundle.ReadOnlyBundle, folderPath string) diag.Diagnostics {
|
||
|
w := b.WorkspaceClient().Workspace
|
||
|
obj, err := getClosestExistingObject(ctx, w, folderPath)
|
||
|
if err != nil {
|
||
|
return diag.FromErr(err)
|
||
|
}
|
||
|
|
||
|
objPermissions, err := w.GetPermissions(ctx, workspace.GetWorkspaceObjectPermissionsRequest{
|
||
|
WorkspaceObjectId: fmt.Sprint(obj.ObjectId),
|
||
|
WorkspaceObjectType: "directories",
|
||
|
})
|
||
|
if err != nil {
|
||
|
return diag.FromErr(err)
|
||
|
}
|
||
|
|
||
|
p := permissions.ObjectAclToResourcePermissions(folderPath, objPermissions.AccessControlList)
|
||
|
return p.Compare(b.Config().Permissions)
|
||
|
}
|
||
|
|
||
|
func getClosestExistingObject(ctx context.Context, w workspace.WorkspaceInterface, folderPath string) (*workspace.ObjectInfo, error) {
|
||
|
for {
|
||
|
obj, err := w.GetStatusByPath(ctx, folderPath)
|
||
|
if err == nil {
|
||
|
return obj, nil
|
||
|
}
|
||
|
|
||
|
if !apierr.IsMissing(err) {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
parent := path.Dir(folderPath)
|
||
|
// If the parent is the same as the current folder, then we have reached the root
|
||
|
if folderPath == parent {
|
||
|
break
|
||
|
}
|
||
|
|
||
|
folderPath = parent
|
||
|
}
|
||
|
|
||
|
return nil, fmt.Errorf("folder %s and its parent folders do not exist", folderPath)
|
||
|
}
|
||
|
|
||
|
// Name implements bundle.ReadOnlyMutator.
|
||
|
func (f *folderPermissions) Name() string {
|
||
|
return "validate:folder_permissions"
|
||
|
}
|
||
|
|
||
|
// ValidateFolderPermissions validates that permissions for the folders in Workspace file system matches
|
||
|
// the permissions in the top-level permissions section of the bundle.
|
||
|
func ValidateFolderPermissions() bundle.ReadOnlyMutator {
|
||
|
return &folderPermissions{}
|
||
|
}
|