drone/blob/filesystem.go

95 lines
2.3 KiB
Go

// Copyright 2023 Harness, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package blob
import (
"context"
"fmt"
"io"
"os"
"path"
"github.com/rs/zerolog/log"
)
const (
fileDiskPathFmt = "%s/%s"
)
type FileSystemStore struct {
basePath string
}
func NewFileSystemStore(cfg Config) (Store, error) {
return &FileSystemStore{
basePath: cfg.Bucket,
}, nil
}
func (c FileSystemStore) Upload(ctx context.Context,
file io.Reader,
filePath string,
) error {
fileDiskPath := fmt.Sprintf(fileDiskPathFmt, c.basePath, filePath)
dir, _ := path.Split(fileDiskPath)
if _, err := os.Stat(dir); os.IsNotExist(err) {
err = os.MkdirAll(dir, os.ModeDir|os.ModePerm)
if err != nil {
return fmt.Errorf("failed to create parent directory for the file: %w", err)
}
}
destinationFile, err := os.Create(fileDiskPath)
if err != nil {
return fmt.Errorf("failed to create file: %w", err)
}
defer func() {
cErr := destinationFile.Close()
if cErr != nil {
log.Ctx(ctx).Err(cErr).
Msgf("failed to close destination file '%s' in directory '%s'", filePath, c.basePath)
}
}()
if _, err := io.Copy(destinationFile, file); err != nil {
// Remove the file if it was created.
removeErr := os.Remove(fileDiskPath)
if removeErr != nil {
return fmt.Errorf("failed to remove file: %w", removeErr)
}
return fmt.Errorf("failed to write file to filesystem: %w", err)
}
return nil
}
func (c FileSystemStore) GetSignedURL(_ string) (string, error) {
return "", ErrNotSupported
}
func (c *FileSystemStore) Download(_ context.Context, filePath string) (io.ReadCloser, error) {
fileDiskPath := fmt.Sprintf(fileDiskPathFmt, c.basePath, filePath)
file, err := os.Open(fileDiskPath)
if os.IsNotExist(err) {
return nil, ErrNotFound
}
if err != nil {
return nil, fmt.Errorf("failed to open file: %w", err)
}
return io.ReadCloser(file), nil
}