summaryrefslogtreecommitdiffstats
path: root/lib/App/BorgRestore/Helper.pm
blob: 8bc4cebbf052be4e2af1fdb1817c39d91c44f493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package App::BorgRestore::Helper;
use v5.10;
use strict;
use warnings;

use POSIX ();

sub untaint {
	my $data = shift;
	my $regex = shift;

	$data =~ m/^($regex)$/ or die "Failed to untaint: $data";
	return $1;
}

sub untaint_archive_name {
	my $archive = shift;
	return untaint($archive, qr([a-zA-Z0-9-:+\.]+));
}

sub format_timestamp {
	my $timestamp = shift;

	return POSIX::strftime "%a. %F %H:%M:%S %z", localtime $timestamp;
}

1;

__END__