about summary refs log tree commit diff stats
path: root/leo.pl
blob: dbe35cf41d93881753ba11f3c4fa84cf6ea1b786 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/usr/bin/perl

use strict;
use warnings;

use IPC::Run3;
use Path::Tiny;
use Config::Tiny;
use POSIX qw(strftime);

die "usage: leo [-hpvV] <profile>\n" unless scalar @ARGV;

my ($VERBOSE, $PRINT_PROFILES, $PRINT_PROFILES_VERBOSE);
my $VERSION = "v0.5.1";

# Dispatch table to be parsed before url.
my %dispatch = (
    '-V'  => sub { print "Leo $VERSION\n"; exit; },
    '-v'  => sub { $VERBOSE = 1; },
    '-h'  => \&HelpMessage,
    '-p'  => sub { $PRINT_PROFILES = 1; },
    '-P'  => sub { $PRINT_PROFILES = 1; $PRINT_PROFILES_VERBOSE = 1; },
);
if (exists $dispatch{$ARGV[0]}) {
    # shift @ARGV to get profile in next shift.
    $dispatch{shift @ARGV}->();
}

# Set umask.
umask 077;

# Configuration.
my $config_file = $ENV{XDG_CONFIG_HOME} || "$ENV{HOME}/.config";
$config_file .= "/leo.conf";

my $config = Config::Tiny->new;
$config = Config::Tiny->read( $config_file )
    or die "Cannot read config file: `$config_file'\n";

# Reading config file.
my %options;
foreach my $key (sort keys $config->{_}->%*) {
    $options{$key} = $config->{_}->{$key};
}

my %profile;
# Iterate through all sections in config file, we call this profile.
foreach my $prof (sort keys $config->%*) {
    next if $prof eq "_";

    foreach my $key (sort keys $config->{$prof}->%*) {
        # $profile{$prof} contains config values ($), {exclude}
        # (@), {backup} (@).

        # Set config values.
        if ( length($key) >= 2
             and substr($key, 0, 2) eq "L_") {
            $profile{$prof}{$key} = $config->{$prof}->{$key};
            next;
        }

        push @{ $profile{$prof}{exclude} }, $key and next
            if $config->{$prof}->{$key} eq "exclude";

        push @{ $profile{$prof}{backup} }, $key;
    }
}

my $backup_dir = $options{backup_dir} || "/tmp/backups";
PrintProfiles() if $PRINT_PROFILES;

# Parsing the arguments.
foreach my $prof ( @ARGV ) {
    if ( $profile{ $prof } ) {
        print "--------  $prof";
        print " [GnuPG]" if $profile{$prof}{L_GnuPG};
        print " [Signify]" if $profile{$prof}{L_signify};
        print "\n";

        # Create backup directory.
        path("$backup_dir/${prof}")->mkpath;

        my $date = date();
        my $file = "$backup_dir/${prof}/${date}.tgz";

        run_tar($prof, $file);
        run_gnupg($prof, $file) and $file = "${file}.gpg"
            if $profile{$prof}{L_GnuPG};
        run_signify($prof, $file) if $profile{$prof}{L_signify};
    } else {
        warn "leo: no such profile :: `$prof' \n";
    }
}

sub run_tar {
    my $prof = shift @_;
    my $file = shift @_;

    my @options = ( "-c",
                    "-f", $file,
                    "-C", '/',
                    "-z");
    push @options, "-v" if $options{verbose};

    my @backup_paths;
    foreach my $path ($profile{$prof}{backup}->@*) {
        # If it's a directory then walk it upto 1 level.
        if (-d $path) {
            my $iter = path($path)->iterator();
            while ( my $iter_path = $iter->() ) {
                push @backup_paths, path( $iter_path );
            }
        } else {
            push @backup_paths, path( $path );
        }
    }

    # Remove files that are to be excluded.
    foreach my $exclude ($profile{$prof}{exclude}->@*) {
        @backup_paths = grep !/$exclude/, @backup_paths;
    }

    # All paths should be relative to '/.
    @backup_paths = map { $_->relative('/') } @backup_paths;

    run3 ["/bin/tar", @options, @backup_paths];
    $? # tar returns 1 on errors.
        ? die "Backup creation failed :: $?\n"
        : print "Backup: $file\n";
}

sub run_gnupg {
    my $prof = shift @_;
    my $file = shift @_;

    my @options = ( "--encrypt",
                    "--yes",
                    "-o", "${file}.gpg"
                );

    push @options,
        "--default-key", $options{gpg_fingerprint},
        "--recipient", $options{gpg_fingerprint}
        if $options{gpg_fingerprint};

    push @options, "--sign" unless $profile{$prof}{L_GnuPG_no_sign};

    # Add recipients.
    my @gpg_recipients;
    @gpg_recipients = split / /, $options{gpg_recipients}
        if $options{gpg_recipients};
    push @options, "--recipient", $_ foreach @gpg_recipients;

    push @options, "--verbose" if $options{verbose};

    run3 ["/usr/local/bin/gpg2", @options, $file];

    $? # We assume non-zero is an error.
        ? die "GnuPG failed :: $?\n"
        : print "GnuPG: $file.gpg\n";

    unlink $file or warn "leo: Could not delete `$file': $!\n";
}

sub run_signify {
    my $prof = shift @_;
    my $file = shift @_;

    my @options = ( "-S",
                    "-s", $options{signify_seckey},
                    "-m", $file,
                    "-x", "${file}.sig",
                );

    run3 ["signify", @options];
    $? # Non-zero exit code is an error.
        ? die "Signify failed :: $?\n"
        : print "Signify: ${file}.sig\n";
}

sub PrintProfiles {
    print "Profile:\n";
    foreach my $prof (sort keys %profile) {
        print "    $prof";
        print " [GnuPG]" if $profile{$prof}{L_GnuPG};
        print " [No Sign]" if $profile{$prof}{L_GnuPG_no_sign};
        print " [Signify]" if $profile{$prof}{L_signify};
        print "\n";

        if ($PRINT_PROFILES_VERBOSE) {
            print "        + $_\n" foreach $profile{$prof}{backup}->@*;
            print "        - $_\n" foreach $profile{$prof}{exclude}->@*;
            print "\n";
        }
    }
}
sub HelpMessage {
    print qq{Options:
    -V [$VERSION]
        Print version.
    -v
        Increase verbosity.
    -p
        Print profiles.
    -P
        Print profiles with all the files to backup/exclude.
    -h
        Print help.
};
    exit;
}

sub date { return strftime '%FT%T%z', localtime() }