ffsend/README.md

320 lines
11 KiB
Markdown
Raw Normal View History

[![Build status on Travis CI][travis-master-badge]][travis-link]
# ffsend [WIP]
2018-05-17 22:08:05 +00:00
> Securely and easily share files from the command line.
> A fully featured [Firefox Send][send] client.
Securely and easily share files and directories from the command line through a
safe, private and encrypted link using a single simple command.
Files are shared using the [Send][send] service and may be up
2018-05-17 22:30:26 +00:00
to 2GB. Others are able to download these files with this tool, or through
their webbrowser.
[![ffsend usage demo][usage-demo-gif]][usage-demo-mp4]
_View as [asciinema][usage-demo-asciinema] or [MP4][usage-demo-mp4]._
2018-05-17 22:30:26 +00:00
All files are always encrypted on the client, and secrets are never shared with
the remote host. An optional password may be specified, and a default file
lifetime of 1 (up to 20) download or 24 hours is enforced to ensure your stuff
does not remain online forever.
This provides a secure platform to share your files.
Find out more about security [here](#security).
2018-05-17 22:08:05 +00:00
- [Features](#features)
- [Usage](#usage)
- [Requirements](#requirements)
2018-05-17 22:08:05 +00:00
- [Install](#install)
- [Build](#build)
- [Configuration and environment](#configuration-and-environment)
2018-05-17 22:08:05 +00:00
- [Help](#help)
- [License](#license)
2018-05-17 22:30:26 +00:00
The public [Send][send] service that is used as default host is provided by
[Mozilla][mozilla].
This application is not affiliated with [Mozilla][mozilla], [Firefox][firefox]
or [Firefox Send][send] in any way.
2018-05-17 22:30:26 +00:00
_Note: this tool is currently in the alpha phase_
2018-05-17 22:08:05 +00:00
## Features
- Fully featured and friendly command line tool
- Upload and download files and directories securely
2018-05-17 22:30:26 +00:00
- Always encrypted on the client
2018-05-17 22:08:05 +00:00
- Additional password protection and configurable download limits
- Built-in file and directory archiving and extraction
- History tracking your files for easy management
- Ability to use your own Send host
2018-05-17 22:30:26 +00:00
- Inspect or delete shared files
- Accurate error reporting
2018-05-17 22:08:05 +00:00
- Intended to be used in scripts without interaction
2018-05-18 12:45:00 +00:00
For a list of upcoming features and ideas, take a look at the
[ROADMAP](ROADMAP.md) file.
2018-05-17 22:08:05 +00:00
## Usage
2018-05-17 22:30:26 +00:00
Easily upload and download:
2018-05-17 22:08:05 +00:00
```bash
# Simple upload
$ ffsend upload my-file.txt
Share link: https://send.firefox.com/#sample-share-url
2018-05-17 22:08:05 +00:00
# Advanced upload
# - Specify a download limit of 20
# - Enter a password to encrypt the file
# - Archive the file before uploading
# - Copy the shareable link to your clipboard
# - Open the shareable link in your browser
$ ffsend upload --downloads 20 --password --archive --copy --open my-file.txt
Password: ******
Share link: https://send.firefox.com/#sample-share-url
2018-05-17 22:08:05 +00:00
2018-05-17 22:30:26 +00:00
# Upload to your own host
$ ffsend u -h https://example.com/ my-file.txt
Share link: https://example.com/#sample-share-url
2018-05-17 22:30:26 +00:00
2018-05-17 22:08:05 +00:00
# Simple download
$ ffsend download https://send.firefox.com/#sample-share-url
2018-05-17 22:30:26 +00:00
```
Inspect remote files:
```bash
# Check if a file exists
$ ffsend exists https://send.firefox.com/#sample-share-url
Exists: yes
# Fetch remote file info
$ ffsend info https://send.firefox.com/#sample-share-url
ID: b087066715
Name: my-file.txt
Size: 12 KiB
MIME: text/plain
Downloads: 0 of 10
Expiry: 18h2m (64928s)
2018-05-17 22:30:26 +00:00
```
Other commands include:
```bash
# View your file history
$ ffsend history
2018-05-18 12:45:00 +00:00
# LINK EXPIRY OWNER TOKEN
1 https://send.firefox.com/#sample-share-url 23h57m eea9f544f6d5df8a5afd
2 https://send.firefox.com/#other-sample-url 17h38m 1e9fef63fee3baaf54ce
3 https://example.com/#sample-share-url 37m30s 8eb28bc1bc85cfdab0e4
2018-05-17 22:30:26 +00:00
# Change the password after uploading
$ ffsend password https://send.firefox.com/#sample-share-url
Password: ******
2018-05-17 22:30:26 +00:00
# Delete a file
$ ffsend delete https://send.firefox.com/#sample-share-url
2018-05-17 22:08:05 +00:00
```
2018-05-18 12:45:00 +00:00
Use the `--help` flag, `help` subcommand, or see the [help](#help) section for
all available subcommands.
2018-05-17 22:08:05 +00:00
## Requirements
- Linux, macOS or Windows
- A terminal :sunglasses:
2018-05-18 08:03:19 +00:00
- Linux specific:
- `xclip` for clipboard support (optional)
- Ubuntu/Debian: `apt install xclip`
- CentOS/Red Hat/openSUSE/Fedora: `yum install xclip`
- Arch: `pacman -S xclip`
- Internet connection for uploading and downloading
2018-05-17 22:08:05 +00:00
## Install
<!-- Before installing, make sure you meet all requirements listed
[here](#requirements) -->
2018-05-17 22:08:05 +00:00
Because `ffsend` is still in alpha, no prebuilt binaries or repositories are
2018-05-17 22:30:26 +00:00
available at this time.
2018-05-17 22:08:05 +00:00
Build and install `ffsend` yourself using these fairly easy steps [here](#build).
## Build
2018-05-17 22:30:26 +00:00
To build and install `ffsend` yourself, you meet the following requirements
before proceeding:
2018-05-17 22:08:05 +00:00
### Build requirements
2018-05-17 22:30:26 +00:00
- Regular [requirements](#requirements)
- [`git`][git]
- [`rust`][rust] `v1.26` or higher (install using [`rustup`][rustup])
2018-05-17 22:30:26 +00:00
- [OpenSSL][openssl] or [LibreSSL][libressl] libraries and headers must be available
2018-05-17 22:08:05 +00:00
- Linux:
- Ubuntu/Debian: `apt install pkg-config libssl-dev`
- CentOS/Red Hat/openSUSE: `yum install openssl-devel`
- Arch: `pacman -S openssl`
- Fedora: `dnf install openssl-devel`
- Or see instructions [here](https://github.com/sfackler/rust-openssl#linux)
2018-05-17 22:08:05 +00:00
- macOS:
- Using `brew`: `brew install openssl`
- Or see instructions [here](https://github.com/sfackler/rust-openssl#osx)
- Windows:
- See instructions here [here](https://github.com/sfackler/rust-openssl#windows-msvc)
### Compile and install
2018-05-17 22:30:26 +00:00
Then, walk through one of the following steps to compile and install `ffsend`:
2018-05-17 22:08:05 +00:00
<!--- Compile and install it directly from cargo: -->
<!-- -->
<!-- ```bash -->
<!-- # Compile and install from cargo -->
<!-- cargo install ffsend -f -->
<!-- -->
<!-- # Start using ffsend -->
<!-- ffsend --help -- -->
<!-- ``` -->
- Clone the repository and install it with `cargo`:
```bash
# Clone the project
git clone https://github.com/timvisee/ffsend.git
2018-05-17 22:30:26 +00:00
cd ffsend/cli
2018-05-17 22:08:05 +00:00
# Compile and install
2018-05-17 22:30:26 +00:00
cargo install -f
2018-05-17 22:08:05 +00:00
# Start using ffsend
ffsend --help
# or run it directly from cargo
cargo run --release -- --help
```
- Or clone the repository and invoke the binary directly (Linux/macOS):
```bash
# Clone the project
git clone https://github.com/timvisee/ffsend.git
cd ffsend
# Build the project (release version)
cargo build --release
# Start using ffsend
./target/release/ffsend --help
```
### Compile features / use flags
2018-05-18 08:03:19 +00:00
Different use flags are available for `ffsend` to toggle whether to include
various features.
The following features are available, some of which are enabled by default:
| Feature | Enabled | Description |
| :---------: | :-----: | :--------------------------------------------------------- |
| `clipboard` | Default | Support for copying links to the clipboard |
| `history` | Default | Support for tracking files in history |
| `archive` | Default | Support for archiving and extracting uploads and downloads |
| `no-color` | | Compile without color support in error and help messages |
2018-05-18 08:03:19 +00:00
To enable features during building or installation, specify them with
`--features <features, >` when using `cargo`.
You may want to disable alisl default features first using
2018-05-18 08:03:19 +00:00
`--no-default-features`.
Here are some examples:
```bash
2018-05-18 08:03:19 +00:00
# Defaults set of features with no-color, one of
cargo install --features no-color
cargo build --release --features no-color
2018-05-18 08:03:19 +00:00
# None of the features
cargo install --no-default-features
# Only history and clipboard support
cargo install --no-default--features --features history,clipboard
```
## Configuration and environment
The following environment variables may be used to configure the following
2018-05-18 12:45:00 +00:00
defaults. The CLI flag is shown along with it, to better describe the relation
to command line arguments:
2018-05-18 12:45:00 +00:00
| Variable | CLI flag | Description |
| :--------------- | :----------------: | :---------------- |
| `FFSEND_HISTORY` | `--history <FILE>` | History file path |
| `FFSEND_HOST` | `--host <URL>` | Upload host |
These environment variables may be used to toggle a flag, simply by making them
available. The actual value of these variables is ignored, and variables may be
empty.
2018-05-18 12:45:00 +00:00
| Variable | CLI flag | Description |
| :------------------- | :-------------: | :-------------------------------- |
| `FFSEND_FORCE` | `--force` | Force operations |
| `FFSEND_NO_INTERACT` | `--no-interact` | No interaction for prompts |
| `FFSEND_YES` | `--yes` | Assume yes for prompts |
| `FFSEND_INCOGNITO` | `--incognito` | Incognito mode, don't use history |
| `FFSEND_OPEN` | `--open` | Open share link of uploaded file |
| `FFSEND_ARCHIVE` | `--archive` | Archive files uploaded |
| `FFSEND_EXTRACT` | `--extract` | Extract files downloaded |
| `FFSEND_COPY` | `--copy` | Copy share link to clipboard |
| `FFSEND_VERBOSE` | `--verbose` | Log verbose information |
At this time, no configuration or _dotfile_ file support is available.
This will be something added in a later release.
2018-05-17 22:08:05 +00:00
## Help
```
$ ffsend help
ffsend 0.0.1
Tim Visee <https://timvisee.com/>
Securely and easily share files from the command line.
A fully featured Firefox Send client.
USAGE:
ffsend [FLAGS] [OPTIONS] [SUBCOMMAND]
FLAGS:
-f, --force Force the action, ignore warnings
-h, --help Prints help information
-i, --incognito Don't update local history for actions
-I, --no-interact Not interactive, do not prompt
-V, --version Prints version information
-v, --verbose Enable verbose information and logging
-y, --yes Assume yes for prompts
OPTIONS:
-H, --history <FILE> Use the specified history file [env: FFSEND_HISTORY]
SUBCOMMANDS:
upload Upload files [aliases: u, up]
download Download files [aliases: d, down]
debug View debug information [aliases: dbg]
delete Delete a shared file [aliases: del]
exists Check whether a remote file exists [aliases: e]
help Prints this message or the help of the given subcommand(s)
history View file history [aliases: h]
info Fetch info about a shared file [aliases: i]
parameters Change parameters of a shared file [aliases: params]
password Change the password of a shared file [aliases: pass, p]
The public Send service that is used as default host is provided by Mozilla.
This application is not affiliated with Mozilla, Firefox or Firefox Send.
```
## License
2018-05-18 12:45:00 +00:00
The tool `ffsend` itself is released under the GNU GPL-3.0 license.
Check out the [LICENSE](LICENSE) file for more information.
2018-05-17 22:08:05 +00:00
2018-05-18 12:45:00 +00:00
The `ffsend-api` library that is part of this repository located [here](api),
is intended for use in other projects and is is released under the MIT license.
2018-05-17 22:30:26 +00:00
Check out the [LICENSE](api/LICENSE) file for more information.
2018-05-17 22:08:05 +00:00
[usage-demo-asciinema]: https://asciinema.org/a/182225
[usage-demo-gif]: ./res/ffsend-demo.gif
[usage-demo-mp4]: ./res/ffsend-demo.mp4?raw=true
2018-05-17 22:08:05 +00:00
[firefox]: https://firefox.com/
[git]: https://git-scm.com/
2018-05-17 22:30:26 +00:00
[libressl]: https://libressl.org/
2018-05-17 22:08:05 +00:00
[mozilla]: https://mozzilla.org/
[openssl]: https://www.openssl.org/
[rust]: https://rust-lang.org/
[rustup]: https://rustup.rs/
[send]: https://send.firefox.com/
[travis-master-badge]: https://travis-ci.org/timvisee/ffsend.svg?branch=master
[travis-link]: https://travis-ci.org/timvisee/ffsend