An implementation of a tus server in Elixir
Documentation: https://hexdocs.pm/tus/
tus is a protocol based on HTTP for resumable file uploads. Resumable means that an upload can be interrupted at any moment and can be resumed without re-uploading the previous data again.
An interruption may happen willingly, if the user wants to pause, or by accident in case of an network issue or server outage.
Files being uploaded should eventually be stored somewhere. This serverside implementation defines
the Tus.Storage
Elixir behaviour defining the callbacks which must be implemented.
Current implementations are:
- local file system (provided by this package)
tus_storage_s3
to save the files on Amazon S3.
Due to its modularization and extensibility, support for any other cloud provider or custom processing can be easily added.
This library implements the core TUS API v1.0.0 protocol and the following extensions:
- Creation Protocol - Deferring the upload's length is not possible.
- Termination Protocol