title: "Uppy Server" type: docs permalink: docs/server/
Drag and drop, webcam, basic file manipulation (adding metadata, for example) and uploading via tus-resumable uploads or XHR/Multipart are all possible using just the Uppy client module.
However, if you add Uppy Server to the mix, your users will be able to select files from remote sources, such as Instagram, Google Drive and Dropbox, bypassing the client (so a 5 GB video isn’t eating into your users’ data plans), and then uploaded to the final destination. Files are removed from Uppy Server after an upload is complete, or after a reasonable timeout. Access tokens also don’t stick around for long, for security reasons.
Uppy Server handles the server-to-server communication between your server and file storage providers such as Google Drive, Dropbox, Instagram, etc.
As of now, Uppy Server is integrated to work with:
Install from NPM:
npm install uppy-server
Uppy Server may either be used as a pluggable express app, which you plug into your already existing server, or it may simply be run as a standalone server:
To plug Uppy Server into an existing server, simply call on its .app
method, passing in an options object as a parameter.
var express = require('express')
var bodyParser = require('body-parser')
var session = require('express-session')
var uppy = require('uppy-server')
var app = express()
app.use(bodyParser.json())
app.use(session({secret: 'some secrety secret'}))
...
// be sure to place this anywhere after app.use(bodyParser.json()) and app.use(session({...})
const options = {
providerOptions: {
google: {
key: 'GOOGLE_KEY',
secret: 'GOOGLE_SECRET'
}
},
server: {
host: 'localhost:3020',
protocol: 'http',
},
filePath: '/path/to/folder/'
}
app.use(uppy.app(options))
See Options for valid configuration options.
To enable Uppy Socket for realtime upload progress, you can call the socket
method, like so:
...
var server = app.listen(PORT)
uppy.socket(server, options)
This takes your server
instance and your Uppy Options as parameters.
Please ensure that the required environment variables are set before running/using Uppy Server as a standalone server. See Configure Standalone for the variables required.
Set environment variables first:
export UPPYSERVER_SECRET="shh!Issa Secret!"
export UPPYSERVER_DOMAIN="YOUR SERVER DOMAIN"
export UPPYSERVER_DATADIR="PATH/TO/DOWNLOAD/DIRECTORY"
And then run:
uppy-server
If you cloned the repo from GitHub and want to run it as a standalone server, you may also run the following command from within its directory:
npm start
You can also pass in the path to your JSON config file, like so:
uppy-server --config /path/to/uppyconf.json
or
npm start -- --config /path/to/uppyconf.json
Please see Options for possible options.
To run Uppy Server as a standalone server, you are required to set your Uppy Options via environment variables:
####### Mandatory variables ###########
# any long set of random characters for the server session
export UPPYSERVER_SECRET="shh!Issa Secret!"
# corresponds to the server.host option
export UPPYSERVER_DOMAIN="YOUR SERVER DOMAIN"
# corresponds to the filePath option
export UPPYSERVER_DATADIR="PATH/TO/DOWNLOAD/DIRECTORY"
###### Optional variables ##########
# corresponds to the server.protocol option, defaults to http
export UPPYSERVER_PROTOCOL="YOUR SERVER PROTOCOL"
# the port on which to start the server, defaults to 3020
export UPPYSERVER_PORT="YOUR SERVER PORT"
# corresponds to the server.port option, defaults to ''
export UPPYSERVER_PATH="/SERVER/PATH/TO/WHERE/UPPY-SERVER/LIVES"
# use this in place of UPPYSERVER_PATH if the server path should not be
# handled by the express.js app, but maybe by an external server configuration
# instead (e.g Nginx).
export UPPYSERVER_IMPLICIT_PATH="/SERVER/PATH/TO/WHERE/UPPY/SERVER/LIVES"
# comma-separated client hosts to whitlelist by the server
# if not specified, the server would allow any host
export UPPY_ENDPOINTS="localhost:3452,uppy.io"
# corresponds to the redisUrl option
# this also enables Redis session storage if set
export UPPYSERVER_REDIS_URL="REDIS URL"
# to enable Dropbox
export UPPYSERVER_DROPBOX_KEY="YOUR DROPBOX KEY"
export UPPYSERVER_DROPBOX_SECRET="YOUR DROPBOX SECRET"
# to enable Google Drive
export UPPYSERVER_GOOGLE_KEY="YOUR GOOGLE KEY"
export UPPYSERVER_GOOGLE_SECRET="YOUR GOOGLE SECRET"
# to enable Instagram
export UPPYSERVER_INSTAGRAM_KEY="YOUR INSTAGRAM KEY"
export UPPYSERVER_INSTAGRAM_SECRET="YOUR INSTAGRAM SECRET"
# to enable S3
export UPPYSERVER_AWS_KEY="YOUR AWS KEY"
export UPPYSERVER_AWS_SECRET="YOUR AWS SECRET"
export UPPYSERVER_AWS_BUCKET="YOUR AWS S3 BUCKET"
export UPPYSERVER_AWS_REGION="AWS REGION"
# corresponds to the server.oauthDomain option
export UPPYSERVER_OAUTH_DOMAIN="sub.domain.com"
# corresponds to the server.validHosts option
export UPPYSERVER_DOMAINS="sub1.domain.com,sub2.domain.com,sub3.domain.com"
# corresponds to the sendSelfEndpoint option
export UPPYSERVER_SELF_ENDPOINT="THIS SHOULD BE SAME AS YOUR DOMAIN + PATH"
# comma-separated URLs
# corresponds to the uploadUrls option
export UPPYSERVER_UPLOAD_URLS="http://master.tus.io/files/,https://master.tus.io/files/"
See env.example.sh for an example configuration script.
{
providerOptions: {
google: {
key: "***",
secret: "***"
},
dropbox: {
key: "***",
secret: "***"
},
instagram: {
key: "***",
secret: "***"
},
s3: {
getKey: (req, filename) => filename,
key: "***",
secret: "***",
bucket: "bucket-name",
region: "us-east-1"
}
},
server: {
host: "localhost:3020", // or yourdomain.com
protocol: "http"
},
filePath: "path/to/download/folder",
sendSelfEndpoint: "localhost:3020",
secret: 'mysecret',
uploadUrls: ['https://myuploadurl.com', 'http://myuploadurl2.com']
debug: true
}
filePath(required) - Full path to the directory to which provider files would be downloaded temporarily.
redisUrl(optional) - URL to running Redis server. If this is set, the state of uploads would be stored temporarily. This helps for resumed uploads after a browser crash from the client. The stored upload would be sent back to the client on reconnection.
providerOptions(optional) - An object containing credentials (key
and secret
) for each provider you would like to enable. Please see the list of supported providers.
server(optional) - An object with details, mainly used to carry out oauth authentication from any of the enabled providers above. Though it is optional, it is required if you would be enabling any of the supported providers. The following are the server options you may set:
http | https
mydomain.com/uppy
, then the path would be /uppy
).sub1.mydomain.com
) to handle your oauth authentication for you. This would then redirect to the slave subdomain with the required credentials on completion.oauthDomain
, you need to set a list of valid hosts, so the master oauth handler can validate the host of the Uppy instance requesting the authentication. This is basically a list of valid domains running your Uppy Server instances. The list may also contain regex patterns. e.g ['sub2.mydomain.com', 'sub3.mydomain.com', '(\\w+).mydomain.com']
sendSelfEndpoint(optional) - This is basically the same as the server.host + server.path
attributes. The major reason for this attribute is that, when set, it adds the value as the i-am
header of every request response.
customProviders(optional) - This option enables you to add custom providers along with the already supported providers. See Adding Custom Providers for more information.
uploadUrls(optional) - An array of URLs (full paths). If specified, Uppy Server will only accept uploads to these URLs (useful when you want to make sure an Uppy Server instance is only allowed to upload to your servers, for example).
secret(required) - A secret string which Uppy Server uses to generate authorization tokens.
debug(optional) - A boolean flag to tell Uppy Server whether or not to log useful debug information while running.
The S3 uploader has some options in addition to the ones necessary for authentication.
s3.getKey(req, filename)
Get the key name for a file. The key is the file path to which the file will be uploaded in your bucket. This option should be a function receiving two arguments: req
, the HTTP request, and the original filename
of the uploaded file. It should return a string key
. The req
parameter can be used to upload to a user-specific folder in your bucket, for example:
app.use(authenticationMiddleware)
app.use(uppy.app({
s3: {
getKey: (req, filename) => `${req.user.id}/${filename}`,
/* auth options */
}
}))
The default value simply returns filename
, so all files will be uploaded to the root of the bucket as their original file name.
We have a detailed guide on running Uppy Server in Kubernetes for you, that’s how we currently run our example server at http://server.uppy.io.
As of now, Uppy Server supports Google Drive, Dropbox, Instagram, and URL (remote urls) out of the box, but you may also choose to add your own custom providers. You can do this by passing the customProviders
option when calling the Uppy app
method. The custom provider is expected to support Oauth 1 or 2 for authentication/authorization.
let options = {
customProviders: {
myprovidername: {
config: {
authorize_url: "https://mywebsite.com/authorize",
access_url: "https://mywebsite.com/token",
oauth: 2,
key: "***",
secret: "**",
scope: ["read", "write"]
},
module: require('/path/to/provider/module')
}
}
}
uppy.app(options)
The customProviders
option should be an object containing each custom provider. Each custom provider would, in turn, be an object with two keys, config
and module
. The config
option would contain Oauth API settings, while the module
would point to the provider module.
To work well with Uppy Server, the Module must be a class with the following methods.
list (options, done)
- lists JSON data of user files (e.g. list of all the files in a particular directory).
options
- is an object containing the following attributesid/name
of the directory from which data is to be retrieved. This may be ignored if it doesn't apply to your providerdone (err, response, body)
- the callback that should be called when the request to your provider is made. As the signature indicates, the following data should be passed along to the callback err
, response
, and body
.download (options, onData, onResponse)
- downloads a particular file from the provider.
options
- is an object containing the following attributes:onData (chunk)
- a callback that should be called with each data chunk received on download. This is useful if the size of the downloaded file can be pre-determined. This would allow for pipelined upload of the file (to the desired destination), while the download is still going on.onResponse (response)
- if the size of the downloaded file can not be pre-determined by Uppy Server, then this callback should be called in place of the onData
callback. This callback would be called after the download is done, and would take the downloaded data (response) as the argument.1. To set up Uppy Server for local development, please clone the repo and install, like so:
git clone https://github.com/transloadit/uppy-server && cd uppy-server && npm install
2. Configure your environment variables by copying the env.example.sh
file to env.sh
and edit it to its correct values.
cp env.example.sh env.sh
$EDITOR env.sh
3. To start the server, simply run:
npm run start:dev
This would get the Uppy Server running on http://localhost:3020
.
An example server is running at http://server.uppy.io, which is deployed with Kubernetes