Documentation ¶
Overview ¶
Package filestore provide a storage backend based on the local file system.
FileStore is a storage backend used as a handler.DataStore in handler.NewHandler. It stores the uploads in a directory specified in two different files: The `[id].info` files are used to store the fileinfo in JSON format. The `[id]` files without an extension contain the raw binary data uploaded. No cleanup is performed so you may want to run a cronjob to ensure your disk is not filled up with old and finished uploads.
Index ¶
- type FileStore
- func (store FileStore) AsConcatableUpload(upload handler.Upload) handler.ConcatableUpload
- func (store FileStore) AsLengthDeclarableUpload(upload handler.Upload) handler.LengthDeclarableUpload
- func (store FileStore) AsTerminatableUpload(upload handler.Upload) handler.TerminatableUpload
- func (store FileStore) GetUpload(ctx context.Context, id string) (handler.Upload, error)
- func (store FileStore) NewUpload(ctx context.Context, info handler.FileInfo) (handler.Upload, error)
- func (store FileStore) UseIn(composer *handler.StoreComposer)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FileStore ¶
type FileStore struct { // Relative or absolute path to store files in. FileStore does not check // whether the path exists, use os.MkdirAll in this case on your own. Path string }
See the handler.DataStore interface for documentation about the different methods.
func New ¶
New creates a new file based storage backend. The directory specified will be used as the only storage entry. This method does not check whether the path exists, use os.MkdirAll to ensure. In addition, a locking mechanism is provided.
func (FileStore) AsConcatableUpload ¶
func (store FileStore) AsConcatableUpload(upload handler.Upload) handler.ConcatableUpload
func (FileStore) AsLengthDeclarableUpload ¶
func (store FileStore) AsLengthDeclarableUpload(upload handler.Upload) handler.LengthDeclarableUpload
func (FileStore) AsTerminatableUpload ¶
func (store FileStore) AsTerminatableUpload(upload handler.Upload) handler.TerminatableUpload
func (FileStore) UseIn ¶
func (store FileStore) UseIn(composer *handler.StoreComposer)
UseIn sets this store as the core data store in the passed composer and adds all possible extension to it.