Skip to content

Latest commit

 

History

History
94 lines (70 loc) · 3.46 KB

README.md

File metadata and controls

94 lines (70 loc) · 3.46 KB

Cloud Upload

Upload files to multiple Cloud Storage in parallel. Automatically apply for ssl certificate with your domain.

Install via nami

$ nami install cloudupload

or download from releases or go get github.com/txthinking/cloudupload/cli/cloudupload or embed lib go get github.com/txthinking/cloudupload

Usage

NAME:
   Cloud Upload - Upload files to multiple cloud storage in parallel

USAGE:
   main [global options] command [command options] [arguments...]

VERSION:
   20200411

AUTHOR:
   Cloud <cloud@txthinking.com>

COMMANDS:
   help, h  Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --debug, -d                       Enable debug, more logs (default: false)
   --debugListen value, -l value     Listen address for debug (default: "127.0.0.1:6060")
   --listen value                    Listen address
   --domain value                    If domain is specified, 80 and 443 ports will be used. Listen address is no longer needed
   --maxBodySize value               Max size of http body, M (default: 0)
   --timeout value                   Read timeout, write timeout x2, idle timeout x20, s (default: 0)
   --origin value                    Allow origins for CORS, can repeat more times. like https://google.com
   --enableLocal                     Enable local store (default: false)
   --localStorage value              Local directory path
   --enableGoogle                    Enable google store (default: false)
   --googleServiceAccountFile value  Google service account file
   --googleBucket value              Google bucket name
   --enableAliyun                    Enable aliyun OSS (default: false)
   --aliyunAccessKeyID value         Aliyun access key id
   --aliyunAccessKeySecret value     Aliyun access key secret
   --aliyunEndpoint value            Aliyun endpoint, like: https://oss-cn-shanghai.aliyuncs.com
   --aliyunBucket value              Aliyun bucket name
   --enableTencent                   Enable Tencent (default: false)
   --tencentSecretId value           Tencent secret id
   --tencentSecretKey value          Tencent secret key
   --tencentHost value               domain
   --help, -h                        show help (default: false)
   --version, -v                     print the version (default: false)

COPYRIGHT:
   https://github.com/txthinking/cloudupload

Upload

Request

  • Method: POST
  • Header:
    • Accept: application/json or text/plain
    • Content-Type: application/octet-stream, application/base64 or multipart/form-data... with file field
    • X-File-Name: full file name with suffix, only required when Content-Type is application/octet-stream or application/base64
  • Body: binary file content, base64 encoded file content or multipart form data

Response

  • Status Code: 200
    • Content-Type: application/json or text/plain; charset=utf-8
    • Body: { "file": "file path" } or file path
  • Status Code: !200
    • Content-Type: text/plain; charset=utf-8
    • Body: error message

Example

$ curl -H 'Content-Type: application/octet-stream' -H 'X-File-Name: Angry.png' --data-binary @Angry.png https://yourdomain.com
vbpovzsdzbxu/Angry.png

$ curl -F 'file=@Angry.png' https://yourdomain.com
vbpovzsdzbxu/Angry.png

Author

A project by txthinking

License

Licensed under The MIT License