filestore

package
v0.15.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 8, 2020 License: Apache-2.0 Imports: 12 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FileStore

type FileStore interface {
	CreateFile(req *model.CreateFileRequest, file io.Reader) error
	CreateDir(req *model.CreateFileRequest) error

	ListDir(req *model.ListFilesRequest) ([]*model.ListFilesResponse, error)
	ReadFile(path string) (*model.File, error)

	DeleteDir(path string) error
	DeleteFile(path string) error

	DoesExists(path string) error

	GetStoreType() utils.FileStoreType
	Close() error
}

FileStore abstracts the implementation file storage operations

type Module

type Module struct {
	sync.RWMutex
	// contains filtered or unexported fields
}

Module is responsible for managing the file storage module

func Init

func Init(auth *auth.Module) *Module

Init creates a new instance of the file store object

func (*Module) CreateDir

func (m *Module) CreateDir(ctx context.Context, project, token string, req *model.CreateFileRequest, meta map[string]interface{}) (int, error)

CreateDir creates a directory at the provided path

func (*Module) DeleteFile

func (m *Module) DeleteFile(ctx context.Context, project, token string, path string, meta map[string]interface{}) (int, error)

DeleteFile deletes a file at the provided path

func (*Module) DoesExists added in v0.15.0

func (m *Module) DoesExists(ctx context.Context, project, token, path string) error

DoesExists checks if the provided path exists

func (*Module) DownloadFile

func (m *Module) DownloadFile(ctx context.Context, project, token, path string) (int, *model.File, error)

DownloadFile downloads a file from the provided path

func (*Module) IsEnabled

func (m *Module) IsEnabled() bool

IsEnabled checks if the file store module is enabled

func (*Module) ListFiles

func (m *Module) ListFiles(ctx context.Context, project, token string, req *model.ListFilesRequest) (int, []*model.ListFilesResponse, error)

ListFiles lists all the files in the provided path

func (*Module) SetConfig

func (m *Module) SetConfig(conf *config.FileStore) error

SetConfig set the rules and secret key required by the crud block

func (*Module) SetEventingModule added in v0.15.0

func (m *Module) SetEventingModule(eventing model.EventingModule)

SetEventingModule sets the eventing module

func (*Module) UploadFile

func (m *Module) UploadFile(ctx context.Context, project, token string, req *model.CreateFileRequest, reader io.Reader) (int, error)

UploadFile uploads a file to the provided path

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL