2013-05-02 12:48:04 +00:00
|
|
|
# tusd
|
2013-03-16 21:23:25 +00:00
|
|
|
|
2015-07-31 10:36:58 +00:00
|
|
|
[![Build Status](https://travis-ci.org/tus/tusd.svg?branch=master)](https://travis-ci.org/tus/tusd)
|
2015-12-27 12:13:12 +00:00
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/2y6fa4nyknoxmyc8/branch/master?svg=true)](https://ci.appveyor.com/project/Acconut/tusd/branch/master)
|
2015-02-01 14:45:27 +00:00
|
|
|
|
2013-05-02 12:48:04 +00:00
|
|
|
tusd is the official reference implementation of the [tus resumable upload
|
2015-07-15 12:40:14 +00:00
|
|
|
protocol](http://www.tus.io/protocols/resumable-upload.html). The protocol
|
|
|
|
specifies a flexible method to upload files to remote servers using HTTP.
|
|
|
|
The special feature is the ability to pause and resume uploads at any
|
|
|
|
moment allowing to continue seamlessly after e.g. network interruptions.
|
2013-03-16 21:25:33 +00:00
|
|
|
|
2015-02-01 13:57:57 +00:00
|
|
|
**Protocol version:** 1.0.0
|
2013-03-16 21:23:25 +00:00
|
|
|
|
2013-03-17 15:45:09 +00:00
|
|
|
## Getting started
|
|
|
|
|
|
|
|
**Requirements:**
|
|
|
|
|
2015-02-01 14:45:27 +00:00
|
|
|
* [Go](http://golang.org/doc/install) (1.2 or newer)
|
2013-03-20 13:02:24 +00:00
|
|
|
|
2013-05-02 13:28:22 +00:00
|
|
|
**Running tusd from source:**
|
2013-03-20 13:02:24 +00:00
|
|
|
|
|
|
|
Clone the git repository and `cd` into it.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone git@github.com:tus/tusd.git
|
|
|
|
cd tusd
|
|
|
|
```
|
2013-03-17 15:45:09 +00:00
|
|
|
|
2013-05-02 13:28:22 +00:00
|
|
|
Now you can run tusd:
|
2013-03-17 15:45:09 +00:00
|
|
|
|
|
|
|
```bash
|
2015-07-28 15:40:55 +00:00
|
|
|
go run cmd/tusd/main.go
|
2013-03-17 15:45:09 +00:00
|
|
|
```
|
|
|
|
|
2015-07-15 12:40:14 +00:00
|
|
|
## Using tusd manually
|
|
|
|
|
|
|
|
Besides from running tusd using the provided binary, you can embed it into
|
|
|
|
your own Golang program:
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/tus/tusd"
|
|
|
|
"github.com/tus/tusd/filestore"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Create a new FileStore instance which is responsible for
|
|
|
|
// storing the uploaded file on disk in the specified directory.
|
|
|
|
// If you want to save them on a different medium, for example
|
|
|
|
// a remote FTP server, you can implement your own storage backend
|
|
|
|
// by implementing the tusd.DataStore interface.
|
|
|
|
store := filestore.FileStore{
|
|
|
|
Path: "./uploads",
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new HTTP handler for the tusd server by providing
|
|
|
|
// a configuration object. The DataStore property must be set
|
|
|
|
// in order to allow the handler to function.
|
|
|
|
handler, err := tusd.NewHandler(tusd.Config{
|
|
|
|
BasePath: "files/",
|
|
|
|
DataStore: store,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
panic("Unable to create handler: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Right now, nothing has happened since we need to start the
|
|
|
|
// HTTP server on our own. In the end, tusd will listen on
|
|
|
|
// and accept request at http://localhost:8080/files
|
|
|
|
http.Handle("files/", http.StripPrefix("files/", handler))
|
|
|
|
err = http.ListenAndServe(":8080", nil)
|
|
|
|
if err != nil {
|
|
|
|
panic("Unable to listen: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-11-29 01:33:55 +00:00
|
|
|
If you need to customize the GET and DELETE endpoints use
|
|
|
|
`tusd.NewUnroutedHandler` instead of `tusd.NewHandler`.
|
|
|
|
|
2015-07-15 12:40:14 +00:00
|
|
|
## Implementing own storages
|
|
|
|
|
|
|
|
The tusd server is built to be as flexible as possible and to allow the use
|
|
|
|
of different upload storage mechanisms. By default the tusd binary includes
|
2015-10-18 18:16:30 +00:00
|
|
|
[`filestore`](https://godoc.org/github.com/tus/tusd/filestore) which will save every upload
|
2015-07-15 12:40:14 +00:00
|
|
|
to a specific directory on disk.
|
|
|
|
|
|
|
|
If you have different requirements, you can build your own storage backend
|
|
|
|
which will save the files to S3, a remote FTP server or similar. Doing so
|
2015-10-18 18:16:30 +00:00
|
|
|
is as simple as implementing the [`tusd.DataStore`](https://godoc.org/github.com/tus/tusd/#DataStore)
|
|
|
|
interface and using the new struct in the [configuration object](https://godoc.org/github.com/tus/tusd/#Config).
|
2015-07-15 12:40:14 +00:00
|
|
|
Please consult the documentation about detailed information about the
|
|
|
|
required methods.
|
|
|
|
|
2013-05-10 14:46:58 +00:00
|
|
|
## Running the testsuite
|
|
|
|
|
|
|
|
```bash
|
2015-02-01 14:45:27 +00:00
|
|
|
go test -v ./...
|
2013-05-10 14:46:58 +00:00
|
|
|
```
|
|
|
|
|
2013-03-16 21:23:25 +00:00
|
|
|
## License
|
|
|
|
|
2013-04-16 10:26:29 +00:00
|
|
|
This project is licensed under the MIT license, see `LICENSE.txt`.
|