diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-05-26 10:19:53 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-05-26 10:24:58 +0200 |
commit | 1215c13c45be9ab1d9fcfec45b63475449d48487 (patch) | |
tree | a428a06f94392db78ff68085e7000b9c070ddfcf /bin/comirror-setup | |
parent | 140fcb61ac20a7e48c7812aae57d2e637b530799 (diff) |
comirror-setup: Add some option support. To be extended.
Diffstat (limited to 'bin/comirror-setup')
-rwxr-xr-x | bin/comirror-setup | 48 |
1 files changed, 44 insertions, 4 deletions
diff --git a/bin/comirror-setup b/bin/comirror-setup index 7da0704..03bf0a5 100755 --- a/bin/comirror-setup +++ b/bin/comirror-setup @@ -3,6 +3,7 @@ use strict; use warnings; use 5.010; +use Getopt::Long; use WWW::Mechanize; my @mechs; @@ -11,6 +12,20 @@ my @unique_images; my ($image_re, $cache) = (q{}) x 2; my $length; my ($conf, $state); +my @opts = ( + [ + 'batch', + q{}, + undef, + 0, + ], + [ + 'link-to-image', + q{!}, + 'Try downloading links instead of images matching image_re first?', + 0, + ], +); local $| = 1; @@ -18,12 +33,35 @@ sub hash_to_file { my ($hash, $file) = @_; open(my $fh, '>', $file) or die("Can't open $file for writing: $!\n"); while (my ($key, $value) = each(%{$hash})) { + $key =~ tr/-/_/; print {$fh} "$key\t$value\n"; } close($fh); return; } +sub parse_or_ask_options { + + if ($conf->{'batch'}) { + delete $conf->{'batch'}; + return; + } + + for my $ref (@opts) { + my ($opt, $desc, $default) = @{$ref}[0, 2, 3]; + + if (defined $desc and not exists $conf->{$opt}) { + print "${desc} (default: ${default}) "; + my $reply = <STDIN>; + chomp $reply; + $conf->{$opt} = $reply; + } + } + return; +} + +GetOptions(\%{$conf}, map { $_->[0] . $_->[1] } @opts); + if (@ARGV != 3 ) { die("Need three URLs to compare (first, second, last but one)\n"); } @@ -98,13 +136,15 @@ $state->{'uri'} = $ARGV[0]; $conf->{'image_re'} = $image_re; -hash_to_file($conf , 'comirror.conf' ); -hash_to_file($state, 'comirror.state'); - say "\nimage_re: $conf->{image_re}"; say "\"next\" link text: $conf->{next_link}"; -say "\nIf this is correct, type 'comirror' to start mirroring"; +parse_or_ask_options(); + +hash_to_file($conf , 'comirror.conf' ); +hash_to_file($state, 'comirror.state'); + +say "\nIf everything is correct, type 'comirror' to start mirroring"; __END__ |