2017-08-05 16:21:39 -07:00
|
|
|
import glob
|
|
|
|
import itertools
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import tempfile
|
|
|
|
|
|
|
|
from borgmatic.verbosity import VERBOSITY_SOME, VERBOSITY_LOTS
|
|
|
|
|
|
|
|
|
|
|
|
def initialize(storage_config):
|
|
|
|
passphrase = storage_config.get('encryption_passphrase')
|
|
|
|
|
|
|
|
if passphrase:
|
|
|
|
os.environ['BORG_PASSPHRASE'] = passphrase
|
|
|
|
|
|
|
|
|
2017-09-09 17:23:31 -07:00
|
|
|
def _expand_directory(directory):
|
|
|
|
'''
|
|
|
|
Given a directory path, expand any tilde (representing a user's home directory) and any globs
|
|
|
|
therein. Return a list of one or more resulting paths.
|
|
|
|
'''
|
|
|
|
expanded_directory = os.path.expanduser(directory)
|
|
|
|
|
|
|
|
return glob.glob(expanded_directory) or [expanded_directory]
|
|
|
|
|
|
|
|
|
2017-08-05 16:21:39 -07:00
|
|
|
def _write_exclude_file(exclude_patterns=None):
|
|
|
|
'''
|
|
|
|
Given a sequence of exclude patterns, write them to a named temporary file and return it. Return
|
|
|
|
None if no patterns are provided.
|
|
|
|
'''
|
|
|
|
if not exclude_patterns:
|
|
|
|
return None
|
|
|
|
|
|
|
|
exclude_file = tempfile.NamedTemporaryFile('w')
|
|
|
|
exclude_file.write('\n'.join(exclude_patterns))
|
|
|
|
exclude_file.flush()
|
|
|
|
|
|
|
|
return exclude_file
|
|
|
|
|
|
|
|
|
2017-08-05 23:32:39 -07:00
|
|
|
def _make_exclude_flags(location_config, exclude_patterns_filename=None):
|
|
|
|
'''
|
|
|
|
Given a location config dict with various exclude options, and a filename containing any exclude
|
|
|
|
patterns, return the corresponding Borg flags as a tuple.
|
|
|
|
'''
|
2017-08-27 10:01:49 -07:00
|
|
|
exclude_filenames = tuple(location_config.get('exclude_from') or ()) + (
|
2017-08-05 23:32:39 -07:00
|
|
|
(exclude_patterns_filename,) if exclude_patterns_filename else ()
|
|
|
|
)
|
|
|
|
exclude_from_flags = tuple(
|
|
|
|
itertools.chain.from_iterable(
|
|
|
|
('--exclude-from', exclude_filename)
|
|
|
|
for exclude_filename in exclude_filenames
|
|
|
|
)
|
|
|
|
)
|
|
|
|
caches_flag = ('--exclude-caches',) if location_config.get('exclude_caches') else ()
|
|
|
|
if_present = location_config.get('exclude_if_present')
|
|
|
|
if_present_flags = ('--exclude-if-present', if_present) if if_present else ()
|
|
|
|
|
|
|
|
return exclude_from_flags + caches_flag + if_present_flags
|
|
|
|
|
|
|
|
|
2017-08-05 16:21:39 -07:00
|
|
|
def create_archive(
|
|
|
|
verbosity, repository, location_config, storage_config,
|
|
|
|
):
|
|
|
|
'''
|
2017-08-05 23:32:39 -07:00
|
|
|
Given a vebosity flag, a local or remote repository path, a location config dict, and a storage
|
|
|
|
config dict, create a Borg archive.
|
2017-08-05 16:21:39 -07:00
|
|
|
'''
|
|
|
|
sources = tuple(
|
|
|
|
itertools.chain.from_iterable(
|
2017-09-09 17:23:31 -07:00
|
|
|
_expand_directory(directory)
|
2017-08-05 16:21:39 -07:00
|
|
|
for directory in location_config['source_directories']
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2017-08-05 23:32:39 -07:00
|
|
|
exclude_patterns_file = _write_exclude_file(location_config.get('exclude_patterns'))
|
|
|
|
exclude_flags = _make_exclude_flags(
|
|
|
|
location_config,
|
|
|
|
exclude_patterns_file.name if exclude_patterns_file else None,
|
|
|
|
)
|
2017-08-05 16:21:39 -07:00
|
|
|
compression = storage_config.get('compression', None)
|
|
|
|
compression_flags = ('--compression', compression) if compression else ()
|
|
|
|
umask = storage_config.get('umask', None)
|
|
|
|
umask_flags = ('--umask', str(umask)) if umask else ()
|
|
|
|
one_file_system_flags = ('--one-file-system',) if location_config.get('one_file_system') else ()
|
2017-11-02 22:03:11 -07:00
|
|
|
files_cache = location_config.get('files_cache')
|
|
|
|
files_cache_flags = ('--files-cache', files_cache) if files_cache else ()
|
2017-08-05 16:21:39 -07:00
|
|
|
remote_path = location_config.get('remote_path')
|
|
|
|
remote_path_flags = ('--remote-path', remote_path) if remote_path else ()
|
|
|
|
verbosity_flags = {
|
|
|
|
VERBOSITY_SOME: ('--info', '--stats',),
|
|
|
|
VERBOSITY_LOTS: ('--debug', '--list', '--stats'),
|
|
|
|
}.get(verbosity, ())
|
2017-09-03 20:13:14 +02:00
|
|
|
default_archive_name_format = '{hostname}-{now:%Y-%m-%dT%H:%M:%S.%f}'
|
|
|
|
archive_name_format = storage_config.get('archive_name_format', default_archive_name_format)
|
2017-08-05 16:21:39 -07:00
|
|
|
|
|
|
|
full_command = (
|
|
|
|
'borg', 'create',
|
2017-09-03 20:13:14 +02:00
|
|
|
'{repository}::{archive_name_format}'.format(
|
2017-08-05 16:21:39 -07:00
|
|
|
repository=repository,
|
2017-09-03 20:13:14 +02:00
|
|
|
archive_name_format=archive_name_format,
|
2017-08-05 16:21:39 -07:00
|
|
|
),
|
2017-11-02 22:03:11 -07:00
|
|
|
) + sources + exclude_flags + compression_flags + one_file_system_flags + files_cache_flags + \
|
2017-08-05 16:21:39 -07:00
|
|
|
remote_path_flags + umask_flags + verbosity_flags
|
|
|
|
|
2017-09-09 17:23:31 -07:00
|
|
|
subprocess.check_call(full_command)
|