summaryrefslogtreecommitdiff
path: root/pinyadmin/sbin/pinyconfig
blob: 8496cc7f7e14cf4a545150f7a46249cdf7786a48 (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
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
#!/usr/bin/perl

use strict;
use warnings;

use Piny;

my ( $reponame, $attr, $value ) = @ARGV;

if ( not defined $reponame ) {
  die "Usage: $0 reponame|--user [tweakable [value]]\n";
};

my $config;

if ( $reponame eq "--user" ) {
  $config = Piny::Environment->instance->user->config;
} else {
  $config = Piny::Repo->new( $reponame )->config;
};

if ( not defined $attr ) {

  my $tweakables = $config->all_tweakables;

  foreach my $t ( sort keys %$tweakables ) {
    print "$t => " . $tweakables->{$t} . "\n";
  };

} else {

  $attr = lc $attr;
  $attr =~ s/\./_/g;

  if ( defined $value ) {
    undef $@;
    eval {
      $config->$attr( $value );
    };
    if ( $@ ) {
      print STDERR "$attr is not a legal tweakable, or $value is not a legal value for that tweakable.\n$@\n";
    };
    if ( $value ne $config->$attr ) {
      print STDERR "Failed to set $attr (perhaps an override is in place)\n";
    };
  };

  undef $@;
  eval {
    print "$attr = " . $config->$attr . "\n";
  };
  if ( $@ ) {
    print STDERR "$attr is not a legal tweakable, or its current value is illegal.\n$@\n";
  };

};