]> Sergey Matveev's repositories - public-inbox.git/commitdiff
config: hoist out common functions
authorEric Wong <e@80x24.org>
Thu, 10 Dec 2015 04:16:43 +0000 (04:16 +0000)
committerEric Wong <e@80x24.org>
Tue, 22 Dec 2015 00:58:01 +0000 (00:58 +0000)
These will be reused elsewhere.

lib/PublicInbox/Config.pm
lib/PublicInbox/WWW.pm

index 353a1fb2e3cdf73aee25237dfa2de968a848ce2a..844f666ef6a484f759cc445ba7047359823a713f 100644 (file)
@@ -5,38 +5,16 @@
 package PublicInbox::Config;
 use strict;
 use warnings;
+use base qw/Exporter/;
+our @EXPORT_OK = qw/try_cat/;
 use File::Path::Expand qw/expand_filename/;
 
 # returns key-value pairs of config directives in a hash
 # if keys may be multi-value, the value is an array ref containing all values
 sub new {
        my ($class, $file) = @_;
-       my ($in, $out);
-
        $file = default_file() unless defined($file);
-       my @cmd = (qw/git config/, "--file=$file", '-l');
-       my $cmd = join(' ', @cmd);
-       my $pid = open(my $fh, '-|', @cmd);
-       defined $pid or die "$cmd failed: $!\n";
-       my %rv;
-       foreach my $line (<$fh>) {
-               chomp $line;
-               my ($k, $v) = split(/=/, $line, 2);
-               my $cur = $rv{$k};
-
-               if (defined $cur) {
-                       if (ref($cur) eq "ARRAY") {
-                               push @$cur, $v;
-                       } else {
-                               $rv{$k} = [ $cur, $v ];
-                       }
-               } else {
-                       $rv{$k} = $v;
-               }
-       }
-       close $fh or die "failed to close ($cmd) pipe: $!\n";
-       $? and warn "$$ $cmd exited with: ($pid) $?\n";
-       bless \%rv, $class;
+       bless git_config_dump($file), $class;
 }
 
 sub lookup {
@@ -81,11 +59,51 @@ sub get {
        $self->{"publicinbox.$listname.$key"};
 }
 
+sub config_dir { $ENV{PI_DIR} || expand_filename('~/.public-inbox') }
+
 sub default_file {
        my $f = $ENV{PI_CONFIG};
        return $f if defined $f;
-       my $pi_dir = $ENV{PI_DIR} || expand_filename('~/.public-inbox');
-       "$pi_dir/config";
+       config_dir() . '/config';
+}
+
+sub git_config_dump {
+       my ($file) = @_;
+       my ($in, $out);
+       my @cmd = (qw/git config/, "--file=$file", '-l');
+       my $cmd = join(' ', @cmd);
+       my $pid = open(my $fh, '-|', @cmd);
+       defined $pid or die "$cmd failed: $!\n";
+       my %rv;
+       foreach my $line (<$fh>) {
+               chomp $line;
+               my ($k, $v) = split(/=/, $line, 2);
+               my $cur = $rv{$k};
+
+               if (defined $cur) {
+                       if (ref($cur) eq "ARRAY") {
+                               push @$cur, $v;
+                       } else {
+                               $rv{$k} = [ $cur, $v ];
+                       }
+               } else {
+                       $rv{$k} = $v;
+               }
+       }
+       close $fh or die "failed to close ($cmd) pipe: $!\n";
+       $? and warn "$$ $cmd exited with: ($pid) $?\n";
+       \%rv;
+}
+
+sub try_cat {
+       my ($path) = @_;
+       my $rv;
+       if (open(my $fh, '<', $path)) {
+               local $/;
+               $rv = <$fh>;
+               close $fh;
+       }
+       $rv;
 }
 
 1;
index d00dfe7cccee56ac296560d162fc196ca8f8e0ae..5cd3bc6fdfb63caa7b067c53d5908db209347af8 100644 (file)
@@ -13,7 +13,7 @@ package PublicInbox::WWW;
 use 5.008;
 use strict;
 use warnings;
-use PublicInbox::Config;
+use PublicInbox::Config qw(try_cat);
 use URI::Escape qw(uri_escape_utf8 uri_unescape);
 use constant SSOMA_URL => 'http://ssoma.public-inbox.org/';
 use constant PI_URL => 'http://public-inbox.org/';
@@ -218,17 +218,6 @@ sub ctx_get {
        $val;
 }
 
-sub try_cat {
-       my ($path) = @_;
-       my $rv;
-       if (open(my $fh, '<', $path)) {
-               local $/;
-               $rv = <$fh>;
-               close $fh;
-       }
-       $rv;
-}
-
 sub footer {
        my ($ctx) = @_;
        return '' unless $ctx;