diff options
author | Florian Pritz <bluewind@xinu.at> | 2017-04-02 13:39:47 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2017-04-02 13:42:15 +0200 |
commit | 1af7a6a76a0cbfda953828b9bd5c0834553e6b24 (patch) | |
tree | 859cf7ff1906f9ad3d7e1d4b2c71670f952e7fbc /lib | |
parent | 44441d8c67f155284af4e5f39f29368dd374fdbd (diff) | |
download | App-BorgRestore-1af7a6a76a0cbfda953828b9bd5c0834553e6b24.tar.gz App-BorgRestore-1af7a6a76a0cbfda953828b9bd5c0834553e6b24.tar.xz |
Move backup path mapping to main package
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/App/BorgRestore.pm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/App/BorgRestore.pm b/lib/App/BorgRestore.pm index d072a31..d5bb56b 100644 --- a/lib/App/BorgRestore.pm +++ b/lib/App/BorgRestore.pm @@ -120,6 +120,22 @@ sub resolve_relative_path { return $abs_path; } +sub map_path_to_backup_path { + my $self = shift; + my $abs_path = shift; + + my $backup_path = $abs_path; + + for my $backup_prefix (@App::BorgRestore::Settings::backup_prefixes) { + if ($backup_path =~ m/$backup_prefix->{regex}/) { + $backup_path =~ s/$backup_prefix->{regex}/$backup_prefix->{replacement}/; + last; + } + } + + return $backup_path; +} + sub find_archives { my $self = shift; my $path = shift; |