No project description provided
Project description
Backup Uploader
A simple command that uploads files, with a focus on backup files, to a cloud server, allowing to have different directories that store backups with different retain policies.
Backup Chain
A chain is composed of several directories, which can be an Intermediary or a Last directory.
An Intermediary directory has 4 parameters:
- Name: Of the directory
- Strftime Format: The strftime datetime format used to generate the filename of a new file moved into the directory.
- Capacity: How many files can be stored in this directory
- Counter Max: Maximum value of the directory internal counter.
A Last directory needs only the first 2 parameters (Name and Strftime Format). A chain can only have one Last directory.
Whenever a new file is uploaded to a directory and its capacity is exceeded, its counter is incremented. If the counter didn't reach its maximum the oldest file on the target directory is deleted, else the counter is reset and the oldest file is moved to the next directory in the chain. Once a Last directory is reached no more moving occurs for that file. For that, a Last directory has no capacity. If no Last directory is defined, after the last Intermediary directory, files are deleted instead of being moved to a Last directory.
For example, we can have three directories: week, month, olds.
- week: Here are stored up to seven files, the backups of the last 7 days
- month: After the week directory is full, every 7 days the oldest backup is moved to this month directory and the other days the backup is discarded. If we set the maximum files for this directory to 4, we will end up with a backup per week of the last month.
- olds: From the month directory we intend to preserve only one per month. We can then make this directory the last of the chain and will not have a maximum capacity.
Install
-
Install the python package
pip install backup_uploader
Since each cloud server has a different upload API, you will also need to install a python client of the target cloud server.
You can install them along with this package like this
pip install backup_uploader[dropbox]
. Use the value of the Server Argument point on the Supported Servers section of the target cloud server. -
Create the counters directory
sudo sh -c "useradd backup_uploader && mkdir /var/lib/backup_uploader && chown backup_uploader:backup_uploader /var/lib/backup_uploader"
Usage
This package makes an executable backup_uploader
available that expects 5 required positional arguments.
-
Application Name
This is mainly used to create a root directory on places that can be shared with other applications.
-
Server
To where the file will be uploaded. Check the Supported Servers section to see the available options for this field.
-
Path to the Credentials File
The structure of this file depends on the Server to where the file will be uploaded, for that, check the instructions in Supported Servers for the chosen server.
-
Backup Chain Config
Specification of the several directories and their configurations. Defined as a string where each directory config is separated by
;
and each directory config parameter is separated by:
. As an example, for the example provided at the beginning of this README the config isweek:%Y%d:7:7;month:%Y%W:4:1;olds:%Y%W
-
Path to the File To Upload
Example:
backup_uploader website_backups dropbox creadentials.txt "week:%d:7:7;other;%d" backup.tar.gz
Important notes:
-
to ensure that the script can access the counters directory this script should be run by a user that belongs to the
backup_uploader
group. -
the Backup Chain Config argument must be within quotation marks so the shell doesn't interpret the
;
symbol as a separation between commands
Supported Servers
Dropbox
You will need to create a Dropbox app and add the files.content.write
permissions under the Permissions Tab of your Dropbox App.
-
Server argument
dropbox
-
Credentials file format
Text file with the app token
-
Where are the files stored?
Each backup application will create a directory on the root of your app's directory with the name of the Application Name argument.
-
Python client
Mega
-
Server argument
mega
-
Credentials file format
Text file with two lines.
-
Email of the mega account
-
Password of the mega account
user@mail.com password
-
-
Where are files stored?
Each backup application will create a directory on the root of your mega drive with the name of the Application Name argument.
-
Python client
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file backup_uploader-0.2.0.tar.gz
.
File metadata
- Download URL: backup_uploader-0.2.0.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7e8f6eda4f2458dd3b0fe097a56eaee302542e188b18c9a58c1b85ac365f2c3 |
|
MD5 | b9439859edfcee05f4477a0509a4c0ef |
|
BLAKE2b-256 | 9bce5df3554094d2e76409f276029fbd4fda401368f41e2fdf6f406abcf7aa11 |