Documentation ¶
Index ¶
- Constants
- Variables
- func LogEvent(ctx context.Context, logger *glog.Logger, eventName string, details ...string)
- func ParseMetadataHeader(header string) map[string]string
- func SerializeMetadataHeader(meta map[string]string) string
- type ConcatableUpload
- type ConcaterDataStore
- type Config
- type DataStore
- type ErrorsTotalMap
- type FileInfo
- type HTTPError
- type HTTPRequest
- type HookEvent
- type LengthDeclarableUpload
- type LengthDeferrerDataStore
- type Lock
- type Locker
- type MetaData
- type Metrics
- type StoreComposer
- func (store *StoreComposer) Capabilities() string
- func (store *StoreComposer) UseConcater(ext ConcaterDataStore)
- func (store *StoreComposer) UseCore(core DataStore)
- func (store *StoreComposer) UseLengthDeferrer(ext LengthDeferrerDataStore)
- func (store *StoreComposer) UseLocker(ext Locker)
- func (store *StoreComposer) UseTerminater(ext TerminaterDataStore)
- type TerminatableUpload
- type TerminaterDataStore
- type Upload
- type Uploader
Constants ¶
const UploadLengthDeferred = "1"
Variables ¶
var ( ErrUnsupportedVersion = NewHTTPError(errors.New("unsupported version"), http.StatusPreconditionFailed) ErrMaxSizeExceeded = NewHTTPError(errors.New("maximum size exceeded"), http.StatusRequestEntityTooLarge) ErrInvalidContentType = NewHTTPError(errors.New("missing or invalid Content-Type header"), http.StatusBadRequest) ErrInvalidUploadLength = NewHTTPError(errors.New("missing or invalid Upload-Length header"), http.StatusBadRequest) ErrInvalidOffset = NewHTTPError(errors.New("missing or invalid Upload-Offset header"), http.StatusBadRequest) ErrNotFound = NewHTTPError(errors.New("upload not found"), http.StatusNotFound) ErrFileLocked = NewHTTPError(errors.New("file currently locked"), 423) // Locked (WebDAV) (RFC 4918) ErrMismatchOffset = NewHTTPError(errors.New("mismatched offset"), http.StatusConflict) ErrSizeExceeded = NewHTTPError(errors.New("resource's size exceeded"), http.StatusRequestEntityTooLarge) ErrNotImplemented = NewHTTPError(errors.New("feature not implemented"), http.StatusNotImplemented) ErrUploadNotFinished = NewHTTPError(errors.New("one of the partial uploads is not finished"), http.StatusBadRequest) ErrInvalidConcat = NewHTTPError(errors.New("invalid Upload-Concat header"), http.StatusBadRequest) ErrModifyFinal = NewHTTPError(errors.New("modifying a final upload is not allowed"), http.StatusForbidden) ErrUploadLengthAndUploadDeferLength = NewHTTPError(errors.New("provided both Upload-Length and Upload-Defer-Length"), http.StatusBadRequest) ErrInvalidUploadDeferLength = NewHTTPError(errors.New("invalid Upload-Defer-Length header"), http.StatusBadRequest) ErrUploadStoppedByServer = NewHTTPError(errors.New("upload has been stopped by server"), http.StatusBadRequest) )
Functions ¶
func ParseMetadataHeader ¶
ParseMetadataHeader parses the Upload-Metadata header as defined in the File Creation extension. e.g. Upload-Metadata: name bHVucmpzLnBuZw==,type aW1hZ2UvcG5n
func SerializeMetadataHeader ¶
SerializeMetadataHeader serializes a map of strings into the Upload-Metadata header format used in the response for HEAD requests. e.g. Upload-Metadata: name bHVucmpzLnBuZw==,type aW1hZ2UvcG5n
Types ¶
type ConcatableUpload ¶
type ConcatableUpload interface { // ConcatUploads concatenates the content from the provided partial uploads // and writes the result in the destination upload. // The caller (usually the handler) must and will ensure that this // destination upload has been created before with enough space to hold all // partial uploads. The order, in which the partial uploads are supplied, // must be respected during concatenation. ConcatUploads(ctx context.Context, partialUploads []Upload) error }
type ConcaterDataStore ¶
type ConcaterDataStore interface {
AsConcatableUpload(upload Upload) ConcatableUpload
}
ConcaterDataStore is the interface required to be implemented if the Concatenation extension should be enabled. Only in this case, the handler will parse and respect the Upload-Concat header.
type Config ¶
type Config struct { // StoreComposer points to the store composer from which the core data store // and optional dependencies should be taken. May only be nil if DataStore is // set. // TODO: Remove pointer? StoreComposer *StoreComposer `yaml:"-" json:"-"` // MaxSize defines how many bytes may be stored in one single upload. If its // value is is 0 or smaller no limit will be enforced. MaxSize int64 `yaml:"maxSize" json:"max_size"` // BasePath defines the URL path used for handling uploads, e.g. "/files/". // If no trailing slash is presented it will be added. You may specify an // absolute URL containing a scheme, e.g. "http://tus.io" BasePath string `yaml:"basePath" json:"base_path"` IsAbs bool `yaml:"isAbs" json:"is_abs"` // DisableDownload indicates whether the server will refuse downloads of the // uploaded file, by not mounting the GET handler. DisableDownload bool `yaml:"disableDownload" json:"disable_download"` // DisableTermination indicates whether the server will refuse termination // requests of the uploaded file, by not mounting the DELETE handler. DisableTermination bool `yaml:"disableTermination" json:"disable_termination"` // NotifyCompleteUploads indicates whether sending notifications about // completed uploads using the CompleteUploads channel should be enabled. NotifyCompleteUploads bool `yaml:"notifyCompleteUploads" json:"notify_complete_uploads"` // NotifyTerminatedUploads indicates whether sending notifications about // terminated uploads using the TerminatedUploads channel should be enabled. NotifyTerminatedUploads bool `yaml:"notifyTerminatedUploads" json:"notify_terminated_uploads"` // NotifyUploadProgress indicates whether sending notifications about // the upload progress using the UploadProgress channel should be enabled. NotifyUploadProgress bool `yaml:"notifyUploadProgress" json:"notify_upload_progress"` // NotifyCreatedUploads indicates whether sending notifications about // the upload having been created using the CreatedUploads channel should be enabled. NotifyCreatedUploads bool `yaml:"notifyCreatedUploads" json:"notify_created_uploads"` // UploadProgressInterval specifies the interval at which the upload progress // notifications are sent to the UploadProgress channel, if enabled. // Defaults to 1s. UploadProgressInterval time.Duration // Logger is the Logger to use internally, mostly for printing requests. Logger *glog.Logger `yaml:"-" json:"-"` // Respect the X-Forwarded-Host, X-Forwarded-Proto and Forwarded headers // potentially set by proxies when generating an absolute URL in the // response to POST requests. RespectForwardedHeaders bool `yaml:"respectForwardedHeaders" json:"respect_forwarded_headers"` // PreUploadCreateCallback will be invoked before a new upload is created, if the // property is supplied. If the callback returns nil, the upload will be created. // Otherwise the HTTP request will be aborted. This can be used to implement // validation of upload metadata etc. PreUploadCreateCallback func(hook HookEvent) error `yaml:"-" json:"-"` // PreFinishResponseCallback will be invoked after an upload is completed but before // a response is returned to the client. Error responses from the callback will be passed // back to the client. This can be used to implement post-processing validation. PreFinishResponseCallback func(hook HookEvent) error `yaml:"-" json:"-"` Path string `yaml:"path" json:"path"` // log LogPath string `yaml:"logPath" json:"log_path"` LogFile string `yaml:"logFile" json:"log_file"` LogLevel string `yaml:"logLevel" json:"log_level"` LogStdout bool `yaml:"logStdout" json:"log_stdout"` }
Config provides a way to configure the Handler depending on your needs.
type DataStore ¶
type DataStore interface { // NewUpload Create a new upload using the size as the file's length. The method must // return an unique id which is used to identify the upload. If no backend // (e.g. Riak) specifes the id you may want to use the uid package to // generate one. The properties Size and MetaData will be filled. NewUpload(ctx context.Context, info FileInfo) (upload Upload, err error) GetUpload(ctx context.Context, id string) (upload Upload, err error) }
type ErrorsTotalMap ¶
type ErrorsTotalMap struct {
// contains filtered or unexported fields
}
ErrorsTotalMap stores the counters for the different HTTP errors.
func (*ErrorsTotalMap) Load ¶
func (e *ErrorsTotalMap) Load() map[HTTPError]*uint64
Load retrieves the map of the counter pointers atomically
type FileInfo ¶
type FileInfo struct { ID string // Total file size in bytes specified in the NewUpload call Size int64 // Indicates whether the total file size is deferred until later SizeIsDeferred bool // Offset in bytes (zero-based) Offset int64 MetaData MetaData // Indicates that this is a partial upload which will later be used to form // a final upload by concatenation. Partial uploads should not be processed // when they are finished since they are only incomplete chunks of files. IsPartial bool // Indicates that this is a final upload IsFinal bool // If the upload is a final one (see IsFinal) this will be a non-empty // ordered slice containing the ids of the uploads of which the final upload // will consist after concatenation. PartialUploads []string // Storage contains information about where the data storage saves the upload, // for example a file path. The available values vary depending on what data // store is used. This map may also be nil. Storage map[string]string // contains filtered or unexported fields }
func (FileInfo) StopUpload ¶
func (f FileInfo) StopUpload()
StopUpload interrupts an running upload from the server-side. This means that the current request body is closed, so that the data store does not get any more data. Furthermore, a response is sent to notify the client of the interrupting and the upload is terminated (if supported by the data store), so the upload cannot be resumed anymore.
type HTTPError ¶
HTTPError represents an error with an additional status code attached which may be used when this error is sent in a HTTP response. See the net/http package for standardized status codes.
func NewHTTPError ¶
NewHTTPError adds the given status code to the provided error and returns the new error instance. The status code may be used in corresponding HTTP responses. See the net/http package for standardized status codes.
type HTTPRequest ¶
type HTTPRequest struct { // Method is the HTTP method, e.g. POST or PATCH Method string // URI is the full HTTP request URI, e.g. /files/fooo URI string // RemoteAddr contains the network address that sent the request RemoteAddr string // Header contains all HTTP headers as present in the HTTP request. Header http.Header }
HTTPRequest contains basic details of an incoming HTTP request.
type HookEvent ¶
type HookEvent struct { // Upload contains information about the upload that caused this hook // to be fired. Upload FileInfo // HTTPRequest contains details about the HTTP request that reached // tus. HTTPRequest HTTPRequest }
HookEvent represents an event from tus which can be handled by the application.
type LengthDeclarableUpload ¶
type LengthDeferrerDataStore ¶
type LengthDeferrerDataStore interface {
AsLengthDeclarableUpload(upload Upload) LengthDeclarableUpload
}
LengthDeferrerDataStore is the interface that must be implemented if the creation-defer-length extension should be enabled. The extension enables a client to upload files when their total size is not yet known. Instead, the client must send the total size as soon as it becomes known.
type Lock ¶
type Lock interface { // Lock attempts to obtain an exclusive lock for the upload specified // by its id. // If this operation fails because the resource is already locked, the // tus.ErrFileLocked must be returned. If no error is returned, the attempt // is consider to be successful and the upload to be locked until UnlockUpload // is invoked for the same upload. Lock() error // Unlock releases an existing lock for the given upload. Unlock() error }
Lock is the interface for a lock as returned from a Locker.
type Locker ¶
type Locker interface { // NewLock creates a new unlocked lock object for the given upload ID. NewLock(id string) (Lock, error) }
Locker is the interface required for custom lock persisting mechanisms. Common ways to store this information is in memory, on disk or using an external service, such as Redis. When multiple processes are attempting to access an upload, whether it be by reading or writing, a synchronization mechanism is required to prevent data corruption, especially to ensure correct offset values and the proper order of chunks inside a single upload.
type Metrics ¶
type Metrics struct { // RequestTotal counts the number of incoming requests per method RequestsTotal map[string]*uint64 // ErrorsTotal counts the number of returned errors by their message ErrorsTotal *ErrorsTotalMap BytesReceived *uint64 UploadsFinished *uint64 UploadsCreated *uint64 UploadsTerminated *uint64 }
Metrics provides numbers about the usage of the tus handler. Since these may be accessed from multiple goroutines, it is necessary to read and modify them atomically using the functions exposed in the sync/atomic package, such as atomic.LoadUint64. In addition the maps must not be modified to prevent data races.
type StoreComposer ¶
type StoreComposer struct { Core DataStore UsesTerminater bool Terminater TerminaterDataStore UsesLocker bool Locker Locker UsesConcater bool Concater ConcaterDataStore UsesLengthDeferrer bool LengthDeferrer LengthDeferrerDataStore }
StoreComposer represents a composable data store. It consists of the core data store and optional extensions. Please consult the package's overview for a more detailed introduction in how to use this structure.
func NewStoreComposer ¶
func NewStoreComposer() *StoreComposer
NewStoreComposer creates a new and empty store composer.
func (*StoreComposer) Capabilities ¶
func (store *StoreComposer) Capabilities() string
Capabilities returns a string representing the provided extensions in a human-readable format meant for debugging.
func (*StoreComposer) UseConcater ¶
func (store *StoreComposer) UseConcater(ext ConcaterDataStore)
func (*StoreComposer) UseCore ¶
func (store *StoreComposer) UseCore(core DataStore)
UseCore will set the used core data store. If the argument is nil, the property will be unset.
func (*StoreComposer) UseLengthDeferrer ¶
func (store *StoreComposer) UseLengthDeferrer(ext LengthDeferrerDataStore)
func (*StoreComposer) UseLocker ¶
func (store *StoreComposer) UseLocker(ext Locker)
func (*StoreComposer) UseTerminater ¶
func (store *StoreComposer) UseTerminater(ext TerminaterDataStore)
type TerminatableUpload ¶
type TerminaterDataStore ¶
type TerminaterDataStore interface {
AsTerminatableUpload(upload Upload) TerminatableUpload
}
TerminaterDataStore is the interface which must be implemented by DataStores if they want to receive DELETE requests using the Handler. If this interface is not implemented, no request handler for this method is attached.
type Upload ¶
type Upload interface { // WriteChunk Write the chunk read from src into the file specified by the id at the // given offset. The handler will take care of validating the offset and // limiting the size of the src to not overflow the file's size. It may // return an os.ErrNotExist which will be interpreted as a 404 Not Found. // It will also lock resources while they are written to ensure only one // write happens per time. // The function call must return the number of bytes written. WriteChunk(ctx context.Context, offset int64, src io.Reader) (int64, error) // GetInfo Read the fileinformation used to validate the offset and respond to HEAD // requests. It may return an os.ErrNotExist which will be interpreted as a // 404 Not Found. GetInfo(ctx context.Context) (FileInfo, error) // GetReader returns a reader which allows iterating of the content of an // upload specified by its ID. It should attempt to provide a reader even if // the upload has not been finished yet but it's not required. // If the returned reader also implements the io.Closer interface, the // Close() method will be invoked once everything has been read. // If the given upload could not be found, the error tus.ErrNotFound should // be returned. GetReader(ctx context.Context) (io.ReadCloser, error) // FinishUpload FinisherDataStore is the interface which can be implemented by DataStores // which need to do additional operations once an entire upload has been // completed. These tasks may include but are not limited to freeing unused // resources or notifying other services. For example, S3Store uses this // interface for removing a temporary object. // FinishUpload executes additional operations for the finished upload which // is specified by its ID. FinishUpload(ctx context.Context) error }
type Uploader ¶
type Uploader struct { Logger *glog.Logger // CompleteUploads is used to send notifications whenever an upload is // completed by a user. The HookEvent will contain information about this // upload after it is completed. Sending to this channel will only // happen if the NotifyCompleteUploads field is set to true in the Config // structure. Notifications will also be sent for completions using the // Concatenation extension. CompleteUploads chan HookEvent // TerminatedUploads is used to send notifications whenever an upload is // terminated by a user. The HookEvent will contain information about this // upload gathered before the termination. Sending to this channel will only // happen if the NotifyTerminatedUploads field is set to true in the Config // structure. TerminatedUploads chan HookEvent // UploadProgress is used to send notifications about the progress of the // currently running uploads. For each open PATCH request, every second // a HookEvent instance will be send over this channel with the Offset field // being set to the number of bytes which have been transfered to the server. // Please be aware that this number may be higher than the number of bytes // which have been stored by the data store! Sending to this channel will only // happen if the NotifyUploadProgress field is set to true in the Config // structure. UploadProgress chan HookEvent // CreatedUploads is used to send notifications about the uploads having been // created. It triggers post creation and therefore has all the HookEvent incl. // the ID available already. It facilitates the post-create hook. Sending to // this channel will only happen if the NotifyCreatedUploads field is set to // true in the Config structure. CreatedUploads chan HookEvent // Metrics provides numbers of the usage for this handler. Metrics Metrics // contains filtered or unexported fields }
func (*Uploader) GetFile ¶
GetFile handles requests to download a file using a GET request. This is not part of the specification.
func (*Uploader) Middleware ¶
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package filelocker provide an upload locker based on the local file system.
|
Package filelocker provide an upload locker based on the local file system. |
Package filestore provide a storage backend based on the local file system.
|
Package filestore provide a storage backend based on the local file system. |
Package memorylocker provides an in-memory locking mechanism.
|
Package memorylocker provides an in-memory locking mechanism. |