2022-12-14 14:37:14 +00:00
|
|
|
package filer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
2023-06-08 16:15:12 +00:00
|
|
|
"encoding/base64"
|
2023-02-20 15:00:20 +00:00
|
|
|
"errors"
|
2022-12-14 14:37:14 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2023-05-31 12:22:26 +00:00
|
|
|
"io/fs"
|
2022-12-14 14:37:14 +00:00
|
|
|
"net/http"
|
2023-03-08 13:27:05 +00:00
|
|
|
"net/url"
|
2022-12-14 14:37:14 +00:00
|
|
|
"path"
|
2023-06-12 19:03:46 +00:00
|
|
|
"regexp"
|
2023-05-31 09:11:17 +00:00
|
|
|
"sort"
|
2022-12-14 14:37:14 +00:00
|
|
|
"strings"
|
2023-05-31 09:11:17 +00:00
|
|
|
"time"
|
2022-12-14 14:37:14 +00:00
|
|
|
|
|
|
|
"github.com/databricks/databricks-sdk-go"
|
|
|
|
"github.com/databricks/databricks-sdk-go/apierr"
|
|
|
|
"github.com/databricks/databricks-sdk-go/client"
|
|
|
|
"github.com/databricks/databricks-sdk-go/service/workspace"
|
|
|
|
"golang.org/x/exp/slices"
|
|
|
|
)
|
|
|
|
|
2023-05-31 12:22:26 +00:00
|
|
|
// Type that implements fs.DirEntry for WSFS.
|
|
|
|
type wsfsDirEntry struct {
|
|
|
|
wsfsFileInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (entry wsfsDirEntry) Type() fs.FileMode {
|
|
|
|
return entry.wsfsFileInfo.Mode()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (entry wsfsDirEntry) Info() (fs.FileInfo, error) {
|
|
|
|
return entry.wsfsFileInfo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type that implements fs.FileInfo for WSFS.
|
|
|
|
type wsfsFileInfo struct {
|
|
|
|
oi workspace.ObjectInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (info wsfsFileInfo) Name() string {
|
|
|
|
return path.Base(info.oi.Path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (info wsfsFileInfo) Size() int64 {
|
|
|
|
return info.oi.Size
|
|
|
|
}
|
|
|
|
|
|
|
|
func (info wsfsFileInfo) Mode() fs.FileMode {
|
|
|
|
switch info.oi.ObjectType {
|
|
|
|
case workspace.ObjectTypeDirectory:
|
|
|
|
return fs.ModeDir
|
|
|
|
default:
|
|
|
|
return fs.ModePerm
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (info wsfsFileInfo) ModTime() time.Time {
|
|
|
|
return time.UnixMilli(info.oi.ModifiedAt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (info wsfsFileInfo) IsDir() bool {
|
|
|
|
return info.oi.ObjectType == workspace.ObjectTypeDirectory
|
|
|
|
}
|
|
|
|
|
|
|
|
func (info wsfsFileInfo) Sys() any {
|
2023-06-08 16:15:12 +00:00
|
|
|
return info.oi
|
2023-05-31 12:22:26 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 16:16:07 +00:00
|
|
|
// WorkspaceFilesClient implements the files-in-workspace API.
|
|
|
|
|
|
|
|
// NOTE: This API is available for files under /Repos if a workspace has files-in-repos enabled.
|
|
|
|
// It can access any workspace path if files-in-workspace is enabled.
|
2022-12-14 14:37:14 +00:00
|
|
|
type WorkspaceFilesClient struct {
|
|
|
|
workspaceClient *databricks.WorkspaceClient
|
|
|
|
apiClient *client.DatabricksClient
|
|
|
|
|
|
|
|
// File operations will be relative to this path.
|
2022-12-14 22:41:37 +00:00
|
|
|
root RootPath
|
2022-12-14 14:37:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewWorkspaceFilesClient(w *databricks.WorkspaceClient, root string) (Filer, error) {
|
|
|
|
apiClient, err := client.New(w.Config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &WorkspaceFilesClient{
|
|
|
|
workspaceClient: w,
|
|
|
|
apiClient: apiClient,
|
|
|
|
|
2022-12-14 22:41:37 +00:00
|
|
|
root: NewRootPath(root),
|
2022-12-14 14:37:14 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WorkspaceFilesClient) Write(ctx context.Context, name string, reader io.Reader, mode ...WriteMode) error {
|
2022-12-14 22:41:37 +00:00
|
|
|
absPath, err := w.root.Join(name)
|
2022-12-14 14:37:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove leading "/" so we can use it in the URL.
|
|
|
|
overwrite := slices.Contains(mode, OverwriteIfExists)
|
|
|
|
urlPath := fmt.Sprintf(
|
|
|
|
"/api/2.0/workspace-files/import-file/%s?overwrite=%t",
|
2023-03-17 16:42:35 +00:00
|
|
|
url.PathEscape(strings.TrimLeft(absPath, "/")),
|
2022-12-14 14:37:14 +00:00
|
|
|
overwrite,
|
|
|
|
)
|
|
|
|
|
|
|
|
// Buffer the file contents because we may need to retry below and we cannot read twice.
|
|
|
|
body, err := io.ReadAll(reader)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = w.apiClient.Do(ctx, http.MethodPost, urlPath, body, nil)
|
|
|
|
|
2023-05-31 11:24:20 +00:00
|
|
|
// Return early on success.
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special handling of this error only if it is an API error.
|
2023-02-20 15:00:20 +00:00
|
|
|
var aerr *apierr.APIError
|
|
|
|
if !errors.As(err, &aerr) {
|
2022-12-14 14:37:14 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// This API returns a 404 if the parent directory does not exist.
|
|
|
|
if aerr.StatusCode == http.StatusNotFound {
|
|
|
|
if !slices.Contains(mode, CreateParentDirectories) {
|
|
|
|
return NoSuchDirectoryError{path.Dir(absPath)}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create parent directory.
|
|
|
|
err = w.workspaceClient.Workspace.MkdirsByPath(ctx, path.Dir(absPath))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to mkdir to write file %s: %w", absPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retry without CreateParentDirectories mode flag.
|
|
|
|
return w.Write(ctx, name, bytes.NewReader(body), sliceWithout(mode, CreateParentDirectories)...)
|
|
|
|
}
|
|
|
|
|
2023-06-12 19:03:46 +00:00
|
|
|
// This API returns 409 if the file already exists, when the object type is file
|
2022-12-14 14:37:14 +00:00
|
|
|
if aerr.StatusCode == http.StatusConflict {
|
|
|
|
return FileAlreadyExistsError{absPath}
|
|
|
|
}
|
|
|
|
|
2023-06-12 19:03:46 +00:00
|
|
|
// This API returns 400 if the file already exists, when the object type is notebook
|
|
|
|
regex := regexp.MustCompile(`Path \((.*)\) already exists.`)
|
|
|
|
if aerr.StatusCode == http.StatusBadRequest && regex.Match([]byte(aerr.Message)) {
|
|
|
|
// Parse file path from regex capture group
|
|
|
|
matches := regex.FindStringSubmatch(aerr.Message)
|
|
|
|
if len(matches) == 2 {
|
|
|
|
return FileAlreadyExistsError{matches[1]}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default to path specified to filer.Write if regex capture fails
|
|
|
|
return FileAlreadyExistsError{absPath}
|
|
|
|
}
|
|
|
|
|
2022-12-14 14:37:14 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-06-12 13:53:58 +00:00
|
|
|
func (w *WorkspaceFilesClient) Read(ctx context.Context, name string) (io.ReadCloser, error) {
|
2022-12-14 22:41:37 +00:00
|
|
|
absPath, err := w.root.Join(name)
|
2022-12-14 14:37:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-06-08 16:15:12 +00:00
|
|
|
// This stat call serves two purposes:
|
|
|
|
// 1. Checks file at path exists, and throws an error if it does not
|
|
|
|
// 2. Allows us to error out if the path is a directory. This is needed
|
|
|
|
// because the /workspace/export API does not error out, and returns the directory
|
|
|
|
// as a DBC archive even if format "SOURCE" is specified
|
|
|
|
stat, err := w.Stat(ctx, name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if stat.IsDir() {
|
|
|
|
return nil, NotAFile{absPath}
|
2023-05-31 11:24:20 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 16:15:12 +00:00
|
|
|
// Export file contents. Note the /workspace/export API has a limit of 10MBs
|
|
|
|
// for the file size
|
|
|
|
// TODO: use direct download once it's fixed. see: https://github.com/databricks/cli/issues/452
|
|
|
|
res, err := w.workspaceClient.Workspace.Export(ctx, workspace.ExportRequest{
|
|
|
|
Path: absPath,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2022-12-14 14:37:14 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2023-06-08 16:15:12 +00:00
|
|
|
b, err := base64.StdEncoding.DecodeString(res.Content)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2023-05-31 11:24:20 +00:00
|
|
|
}
|
2023-06-12 13:53:58 +00:00
|
|
|
return io.NopCloser(bytes.NewReader(b)), nil
|
2022-12-14 14:37:14 +00:00
|
|
|
}
|
|
|
|
|
2023-06-06 06:27:47 +00:00
|
|
|
func (w *WorkspaceFilesClient) Delete(ctx context.Context, name string, mode ...DeleteMode) error {
|
2022-12-14 22:41:37 +00:00
|
|
|
absPath, err := w.root.Join(name)
|
2022-12-14 14:37:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-06-06 06:27:47 +00:00
|
|
|
// Illegal to delete the root path.
|
|
|
|
if absPath == w.root.rootPath {
|
|
|
|
return CannotDeleteRootError{}
|
|
|
|
}
|
|
|
|
|
|
|
|
recursive := false
|
|
|
|
if slices.Contains(mode, DeleteRecursively) {
|
|
|
|
recursive = true
|
|
|
|
}
|
|
|
|
|
2023-05-31 11:24:20 +00:00
|
|
|
err = w.workspaceClient.Workspace.Delete(ctx, workspace.Delete{
|
2022-12-14 14:37:14 +00:00
|
|
|
Path: absPath,
|
2023-06-06 06:27:47 +00:00
|
|
|
Recursive: recursive,
|
2022-12-14 14:37:14 +00:00
|
|
|
})
|
2023-05-31 11:24:20 +00:00
|
|
|
|
|
|
|
// Return early on success.
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special handling of this error only if it is an API error.
|
|
|
|
var aerr *apierr.APIError
|
|
|
|
if !errors.As(err, &aerr) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-06-06 06:27:47 +00:00
|
|
|
switch aerr.StatusCode {
|
|
|
|
case http.StatusBadRequest:
|
|
|
|
if aerr.ErrorCode == "DIRECTORY_NOT_EMPTY" {
|
|
|
|
return DirectoryNotEmptyError{absPath}
|
|
|
|
}
|
|
|
|
case http.StatusNotFound:
|
2023-05-31 11:24:20 +00:00
|
|
|
return FileDoesNotExistError{absPath}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2022-12-14 14:37:14 +00:00
|
|
|
}
|
2023-05-31 09:11:17 +00:00
|
|
|
|
2023-05-31 12:22:26 +00:00
|
|
|
func (w *WorkspaceFilesClient) ReadDir(ctx context.Context, name string) ([]fs.DirEntry, error) {
|
2023-05-31 09:11:17 +00:00
|
|
|
absPath, err := w.root.Join(name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
objects, err := w.workspaceClient.Workspace.ListAll(ctx, workspace.ListWorkspaceRequest{
|
|
|
|
Path: absPath,
|
|
|
|
})
|
2023-06-02 10:28:35 +00:00
|
|
|
|
|
|
|
if len(objects) == 1 && objects[0].Path == absPath {
|
|
|
|
return nil, NotADirectory{absPath}
|
|
|
|
}
|
|
|
|
|
2023-05-31 09:11:17 +00:00
|
|
|
if err != nil {
|
|
|
|
// If we got an API error we deal with it below.
|
|
|
|
var aerr *apierr.APIError
|
|
|
|
if !errors.As(err, &aerr) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// This API returns a 404 if the specified path does not exist.
|
|
|
|
if aerr.StatusCode == http.StatusNotFound {
|
|
|
|
return nil, NoSuchDirectoryError{path.Dir(absPath)}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-05-31 12:22:26 +00:00
|
|
|
info := make([]fs.DirEntry, len(objects))
|
2023-05-31 09:11:17 +00:00
|
|
|
for i, v := range objects {
|
2023-05-31 12:22:26 +00:00
|
|
|
info[i] = wsfsDirEntry{wsfsFileInfo{oi: v}}
|
2023-05-31 09:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sort by name for parity with os.ReadDir.
|
2023-05-31 12:22:26 +00:00
|
|
|
sort.Slice(info, func(i, j int) bool { return info[i].Name() < info[j].Name() })
|
2023-05-31 09:11:17 +00:00
|
|
|
return info, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WorkspaceFilesClient) Mkdir(ctx context.Context, name string) error {
|
|
|
|
dirPath, err := w.root.Join(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return w.workspaceClient.Workspace.Mkdirs(ctx, workspace.Mkdirs{
|
|
|
|
Path: dirPath,
|
|
|
|
})
|
|
|
|
}
|
2023-06-01 18:23:22 +00:00
|
|
|
|
|
|
|
func (w *WorkspaceFilesClient) Stat(ctx context.Context, name string) (fs.FileInfo, error) {
|
|
|
|
absPath, err := w.root.Join(name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := w.workspaceClient.Workspace.GetStatusByPath(ctx, absPath)
|
|
|
|
if err != nil {
|
|
|
|
// If we got an API error we deal with it below.
|
|
|
|
var aerr *apierr.APIError
|
|
|
|
if !errors.As(err, &aerr) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// This API returns a 404 if the specified path does not exist.
|
|
|
|
if aerr.StatusCode == http.StatusNotFound {
|
|
|
|
return nil, FileDoesNotExistError{absPath}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return wsfsFileInfo{*info}, nil
|
|
|
|
}
|