This project uses NodeJS 16.x and contains an implementation of the SFTP protocol that supports interaction with the Permanent API.
- Install npm packages.
npm install
- Generate a host key for your SSH server
ssh-keygen -f ./keys/host.key -t ed25519 -N ""
- Configure your
.env
cp .env.example .env
vi .env
- Start the service
npm start
or, if you want to start the development environment
npm run dev
Running rclone against Permanent.org instances
First install rclone. See the official installation guide for more information.
Run rclone config
and answer the questions it asks:
-
Select option
n
(for "new") and make a remote name (e.g., "permanent"). -
At the
Storage>
prompt, set the storage protocol to SFTP, either by typing "sftp" at the prompt or by selecting the corresponding number from the displayed menu (the numbered entry may say "SSH/SFTP"). -
At the
host>
prompt, set the host tosftp.permanent.org
.If you want to run rclone against the dev or staging environment, then use
sftp.dev.permanent.org
orsftp.staging.permanent.org
instead. -
At the
user>
prompt, enter your Permanent username, which is the email address associated with your account.You might see "SSH username" above the prompt and be tempted to enter your usual SSH username here (if you use SSH regularly). But in this context, the "SSH" just refers to the fact that we run the SFTP storage protocol over SSH for a secure connection, so the relevant username is the one for your Permanent account.
-
At the
port>
prompt, enter22
(or just hit Enter, since 22 is the default). -
At the
y/g/n>
prompt for how you'll enter your Permanent password, choosey
for "Yes, type in my own password".You will then be prompted to enter the password for your Permanent account.
Note that this password will be stored in a local file, and it will be in lightly obscured form but not securely encrypted. If you'd rather not have the password stored locally that way, there are two solutions available:
-
Set the environment variable
RCLONE_CONFIG_PASS
to some passphrase, which will be used to symmetrically encrypt/decrypt your Permanent password in your local rclone configuration file.-or-
-
Later on, when asked whether to "Edit advanced config?", answer
y
instead ofn
. Then when you get to theask_password>
option, enter "true" (and for all the other prompts in the advanced config section, just hit Enter to accept the default).
-
-
For the remaining options, just choose the default by pressing Enter:
key_pem>
key_file>
y/g/n>
for optionkey_file_pass
(just hit Enter for defaultn
)pubkey_file>
key_use_agent>
use_insecure_cipher>
disable_hashcheck>
ssh>
(accept default here too unless you need to do fancy things with your SSH config)
-
At the
Edit advanced config?
prompt, likewise just hit Enter forn
, unless you're doing theask_password
option mentioned earlier. -
At the
y/e/d>
prompt, when rclone shows you your completed configuration, hit Enter (same asy
) to keep the new configuration. -
At the
e/n/d/r/c/s/q>
prompt at the very end, hitq
to quit out of configuration.
The configuration for your Permanent remote is now stored, most likely in your rclone.conf
file. The location of this file differs from system to system (on some Linux-based systems it's in ~/.config/rclone/rclone.conf
), but rclone knows where to find it.
If you chose to have your password stored in the config file, then your rclone.conf
now contains a block like this:
[permanent]
type = sftp
host = sftp.permanent.org
user = [email protected]
pass = 5PfZmfI1qOPUiRvWgJJuZbztXq9g0nUpFxzVEPLB3fV-q86iZR7FtXQ--X6hUe559dM
Or you chose to have rclone ask you for your password on each invocation, then your rclone.conf
instead contains a block like this:
[permanent]
type = sftp
host = sftp.permanent.org
user = [email protected]
ask_password = true
In the latter case, you could of course just set up the rclone.conf
file manually yourself, and skip the rclone config
questionnaire entirely.
In both uploading and downloading, we recommend using the --create-empty-src-dirs
flag; otherwise rclone
will ignore empty directories on the source side of an operation.
You might also consider using one or both of -v
(verbose) and -P
(show an in-place updating progress meter) to see what rclone
is doing. See rclone.org/flags for a list of all global flags (that is, flags that are available to every subcommand).
To fetch all of your archives, use command like this:
rclone copy --create-empty-src-dirs --size-only permanent:/ ./my-permanent-data
To fetch a particular archive, use command like the one below. Note that you'll need the archive's number as well as its name. The number is a special identifier that goes in parentheses after the name. Note that archive number can contain letters and a hyphen as well as digits -- for example, the "(09g7-0000)" in the sample command below. Right now, the only way find out an archive's number is to download all your archives and look for that number in parentheses among the names of the downloaded folders, or to ask a Permanent.org staff member. This is a known problem; see issue #91 for details. Anyway, assuming you have found out the archive's number, you can fetch just that archive like so:
rclone copy -v -P --create-empty-src-dirs "permanent-prod:/archives/Some Archive (09g7-0000)/My Files/" ./some-folder
See rclone.org/commands/rclone_copy for other flags to the copy
subcommand.
To send data to Permanent, just reverse the order of operands: your local file tree is now the source and Permanent is the destination. You'll also need to add the --size-only
and --sftp-set-modtime=false
flags (currently necessary because of issue #80). In rclone version 1.63 and higher, you will also have to pass in the --inplace
flag to upload properly. (This is related to issue #164; see also rclone issue #3770 for a detailed explanation of why the --inplace
flag was added to rclone in the first place.)
Here's an example command to upload data to Permanent:
rclone copy -v -P --create-empty-src-dirs --inplace --size-only --sftp-set-modtime=false ./some-folder "permanent-prod:/archives/Some Archive (09g7-0000)/My Files/"
Remember that the contents of ./some-folder
will be uploaded to the destination -- that is, everything under ./some-folder
will be placed directly into the named archive path. No encapsulating subdirectory named some-folder
will be created on the destination side. (Of course, if you upload a local file instead of a local folder, everything works as expected; we just happened to use a folder in this example.)
If what you want is to copy a local folder up to a Permanent archive and have it appear there as a new folder, then you should do that in two steps:
- First create the destination folder.
- Then copy everything into it.
You could do the first step in the Permanent web interface. You could also do it with rclone mkdir
...
rclone mkdir -v -P "permanent-prod:/archives/Some Archive (09g7-0000)/My Files/some-folder"
...just note that rclone mkdir
will only be able to create subfolders within an existing archive folder. You can't use it to create new archives, nor to create new top-level folders within an archive. (This is why rclone mkdir
is not an officially-supported rclone command at Permanent. However, using it as in the above example should work, because you're creating a subfolder within an already-existing folder in an archive.)
Anyway, once you've created the destination folder, now you can copy the contents of a local folder into it:
rclone copy -v -P --create-empty-src-dirs --inplace --size-only --sftp-set-modtime=false ./some-folder "permanent-prod:/archives/Some Archive (09g7-0000)/My Files/some-folder"
The above examples use rclone copy
, which copies files from source
to destination but never removes anything from the destination.
If you replace copy
with
sync, rclone will
synchronize the source to the destination. That is, it will update
the destination to look like the source, deleting files from the
destination side when those files are absent in the source.
See rclone.org/commands/rclone_sync.
Permanent officially supports these four rclone
commands:
Since rclone
offers many commands,
there may be some beyond the four listed above that turn out to also
work in practice. If there is a command that you feel should be among
those officially supported, please let us know, either at our regular
contact form or, if you feel
comfortable doing so, by filing an
issue.
-
MFA / 2FA authentication prevents rclone from working.
Because rclone does not support multi-factor authentication, you must turn off MFA in your Permanent account before transferring data with rclone. (Note that there might be other SFTP clients that can handle MFA; this documentation is only about rclone.)
-
Empty directories are not copied down when cloning from Permanent.
By default, rclone (over SFTP) does not copy empty directories down. However, if you pass the
--create-empty-src-dirs
flag, empty directories will be included. For example:rclone copy --create-empty-src-dirs permanent:/ my-permanent-data
.
Contributors to this repository agree to adhere to the Contributor Covenant Code of Conduct. To report violations, get in touch with [email protected].
Found a vulnerability? Report this and any other security concerns to [email protected].
Right now this project uses a bearer token which must be generated by a permanent dev for testing purposes.
If you're a permanent dev, here are the steps:
- Get the FusionAuth client and secret.
- Log into the demo user at the sftp local app
- In the URL extract the
code
value - POST to https://permanent-dev.fusionauth.io/oauth2/token with the following x-www-form-urlencoded body:
client_id: ????
client_secret: ????
code: ????
grant_type: authorization_code
redirect_uri: http://localhost:9000/auth/callback
This code is free software licensed as AGPLv3, or at your option, any final, later version published by the Free Software Foundation.