--install is now server push, added --upgrade
[bak-git.git] / bak-git-server.pl
1 #!/usr/bin/perl
2
3 =head1 bak-git
4
5 Simple tracking of remote files in central git repository
6 with only shell, netcat, rsync and ssh on client
7
8 Start server, install on remote-host or upgrade with:
9
10   ./bak-git-server.pl /path/to/backup 192.168.42.42
11         [--install remote-host]
12         [--upgrade]
13
14 You will want to add following to C<~/.ssh/config>
15
16   RemoteForward 9001 localhost:9001
17
18 =cut
19
20 use warnings;
21 use strict;
22 use autodie;
23 use IO::Socket::INET;
24 use File::Path;
25 use Getopt::Long;
26
27 my $upgrade = 0;
28 my $install;
29
30 GetOptions(
31         'upgrade!'  => \$upgrade,
32         'install=s' => \$install,
33 ) || die "$!\n";
34
35 my ( $dir, $server_ip ) = @ARGV;
36 die "usage: $0 /backup/directory\n" unless $dir;
37 $server_ip ||= '127.0.0.1';
38
39 my $shell_client = <<__SHELL_CLIENT__;
40 #!/bin/sh
41 echo `hostname -s` `pwd` \$* | nc $server_ip 9001
42 __SHELL_CLIENT__
43
44 chdir $dir;
45 system 'git init' unless -e '.git';
46
47 if ( $upgrade || $install ) {
48         open(my $fh, '>', '/tmp/bak');
49         print $fh $shell_client;
50         close($fh);
51         chmod 0755, '/tmp/bak';
52
53         my @hosts = grep { -d $_ } glob '*';
54         @hosts = ( $install ) if $install;
55
56         foreach my $hostname ( @hosts ) {
57                 warn "install on $hostname\n";
58                 system 'ssh-copy-id', "root\@$hostname" if ! -d $hostname;
59                 system "scp /tmp/bak root\@$hostname:/usr/local/bin/";
60                 system "ssh root\@$hostname apt-get install rsync";
61         }
62 }
63
64 my $server = IO::Socket::INET->new(
65         Proto     => 'tcp',
66         LocalAddr => $server_ip,
67         LocalPort => 9001,
68         Listen    => SOMAXCONN,
69         Reuse     => 1
70 ) || die $!;
71
72
73 warn "dir: $dir listen: $server_ip:9001\n"
74         , $shell_client
75 ;
76
77 while (my $client = $server->accept()) {
78         my ($hostname,$pwd,$command,$path,$message) = split(/\s+/,<$client>,5);
79
80         $message ||= '';
81         $path = "$pwd/$path" unless $path =~ m{^/};
82
83         warn "$hostname [$command] $path | $message\n";
84
85
86         my $dir = $path;
87         $dir =~ s{/[^/]+$}{};
88
89         mkpath "$hostname/$dir" unless -e "$hostname/$dir";
90
91         if ( ! $command ) {
92                 system "find $hostname -type f | sed 's,$hostname,,' > /tmp/$hostname.list";
93                 system "rsync -avv --files-from /tmp/$hostname.list root\@$hostname:/ $hostname/"
94         } elsif ( $command eq 'add' ) {
95                 system 'rsync', '-avv', "root\@$hostname:$path", "$hostname/$path";
96                 system 'git', 'add', "$hostname/$path";
97         } elsif ( $command eq 'commit' ) {
98                 system 'rsync', '-avv', "root\@$hostname:$path", "$hostname/$path" if $path;
99                 $message ||= "$command $hostname $path";
100                 system 'git', 'commit', '-m', $message, "$hostname/$path";
101         } elsif ( $command =~ m{(diff|status|log)} ) {
102                 my $opt = '--summary' if $command eq 'log';
103                 print $client `git $command $opt $hostname`;
104         } elsif ( $command eq 'revert' ) {
105                 print $client `git checkout -- $hostname/$path`;
106                 system 'rsync', '-avv', "$hostname/$path", "root\@$hostname:$path";
107         } else {
108                 print $client "Unknown command: $command\n";
109         }
110
111 }
112