asfa
- avoid sending file attachmentsUpload files via ssh to a remote server and generate a seemingly random link.
text
$ asfa push my-file.txt
https://my-domain.eu/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146/my-file.txt
In case you have a webserver with ssh access, you can avoid sending files via email or directly and instead send a link instead.
As a small exercise for writing rust, I ported a small python script I had been using for a couple of years.
Note: All commands can actually be abbreviated:
* p
for push
* l
for list
* c
for clean
Push (upload) a local file to the remote site and print the URL under which it is reachable:
text
$ asfa push my-file.txt
https://my-domain.eu/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146/my-file.txt
Push file to server under a different name. This is useful if you want to share a logfile or plot with a generic name.
text
$ asfa push my-file.txt -a my-very-specific-file.txt
https://my-domain.eu/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146/my-very-specific-file.txt
Note that if you specify several files to upload with their own aliases, you need to explicity assign the arguments.
text
$ asfa push my-file.txt --alias=my-very-specific-file.txt my-file-2.txt --alias=my-very-specific-file-2.txt
https://my-domain.eu/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146/my-very-specific-file.txt
https://my-domain.eu/my-uploads/f9d0c87a02ab96fb035615b0384cc1af826fab003103c64c07c9dba3feb9c18f/my-very-specific-file-2.txt
Or specify the aliases afterwards.
text
$ asfa push my-file.txt my-file-2.txt --alias my-very-specific-file.txt my-very-specific-file-2.txt
https://my-domain.eu/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146/my-very-specific-file.txt
https://my-domain.eu/my-uploads/f9d0c87a02ab96fb035615b0384cc1af826fab003103c64c07c9dba3feb9c18f/my-very-specific-file-2.txt
List all files currently available online:
text
$ asfa list
2020-09-11 20:13:25,214 INFO [asfa::cmd::list] Listing remote files:
[0|-2] https://my-domain.eu/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146/my-very-specific-file.txt
[1|-1] https://my-domain.eu/my-uploads/f9d0c87a02ab96fb035615b0384cc1af826fab003103c64c07c9dba3feb9c18f/my-very-specific-file-2.txt
Remove the file from remote site via index (negative indices need to be sepearated by --
):
text
$ asfa clean 0
[ alternative: $ asfa clean -- -2 ]
2020-09-10 20:14:42,651 INFO [asfa::ssh] removed '/var/www/default/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146/my-file.txt'
2020-09-10 20:14:42,651 INFO [asfa::ssh] removed directory '/var/www/default/my-uploads/999b762599f7a46555b07297a1ba7fadf6c5c808377a912818d58ba326128146'
You can also ensure that a specific file is deleted by specifying --file
:
text
$ asfa clean --file my-file-2.txt
2020-09-10 20:16:29,221 INFO [asfa::ssh] removed '/var/www/default/my-uploads/f9d0c87a02ab96fb035615b0384cc1af826fab003103c64c07c9dba3feb9c18f/my-very-specific-file-2.txt'
2020-09-10 20:16:29,221 INFO [asfa::ssh] removed directory '/var/www/default/my-uploads/f9d0c87a02ab96fb035615b0384cc1af826fab003103c64c07c9dba3feb9c18f'
Note that the file is deleted even though it was uploaded with an alias.
Simply install via cargo
text
$ cargo install asfa
or build from source
text
$ git clone https://github.com/obreitwi/asfa.git
$ cargo build --path asfa
Configuration resides in ~/.config/asfa/config.yaml
. Host-specific
configuration can also be split into single files residing under
~/.config/asfa/hosts/<alias>.yaml
.
System-wide configuration can be placed in /etc/asfa
with the same folder
structure.
An example config can be found in ./example-config
.
Here, we assume that your server can be reached at https://my-domain.eu
and
that the folder /var/wwww/default/my-uploads
will be served at
https://my-domain.eu/my-uploads
.
asfa
-side~/.config/asfa/hosts/my-remote-site.yaml
yaml
hostname: my-hostname.eu
folder: /var/www/default/my-uploads
url: https://my-domain.eu/my-uploads
group: www-data
~/.config/asfa/config.yaml
yaml
default_host: my-remote-site
verify_via_hash: true
auth:
interactive: true
use_agent: true
hosts:
my-remote-site:
# note: port is optional and defaults to 22
hostname: my-hostname.eu:22
folder: /var/www/default/my-uploads
url: https://my-domain.eu/my-uploads
group: www-data
auth:
interactive: false
use_agent: true
Whatever webserver you are using, you have to make sure the following
requirements are met:
* The user as which you upload needs to have write access to your configured
folder
.
* Your webserver needs to serve folder
at url
.
* In case you do not want your uploaded data to be world-readable, set group
to the group of your webserver.
* Make sure your webserver does not serve indexes of folder
, otherwise any
visitor can see all uploaded files rather easily.
Your apache config can be as simple as:
apache
<Directory /var/www/default/my-uploads>
Options None
allow from all
</Directory>
Make sure that Options does not contain Indexes
, otherwise any visitor could
very easily access all uploaded files.
```nginx location /my-uploads { autoindex off } ````
Licensed under either of
at your option.