event refactor, landing on HEAD!
[freeside.git] / httemplate / config / config-process.cgi
1 <%init>
2 die "access denied\n"
3   unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
4
5 my $conf = new FS::Conf;
6 $FS::Conf::DEBUG = 1;
7 my @config_items = grep { $_->key != ~/^invoice_(html|latex|template)/ }
8                         $conf->config_items;
9 my %confitems = map { $_->key => $_ } $conf->config_items;
10
11 my $agentnum = $cgi->param('agentnum');
12 my $key = $cgi->param('key');
13 my $i = $confitems{$key};
14
15 my @touch = ();
16 my @delete = ();
17 my $n = 0;
18 foreach my $type ( ref($i->type) ? @{$i->type} : $i->type ) {
19   if ( $type eq '' ) {
20   } elsif ( $type eq 'textarea' ) {
21     if ( $cgi->param($i->key.$n) ne '' ) {
22       my $value = $cgi->param($i->key.$n);
23       $value =~ s/\r\n/\n/g; #browsers?
24       $conf->set($i->key, $value, $agentnum);
25     } else {
26       $conf->delete($i->key, $agentnum);
27     }
28   } elsif ( $type eq 'binary' ) {
29     if ( defined($cgi->param($i->key.$n)) && $cgi->param($i->key.$n) ) {
30       my $fh = $cgi->upload($i->key.$n);
31       if (defined($fh)) {
32         local $/;
33         $conf->set_binary($i->key, <$fh>, $agentnum);
34       }
35     }else{
36       warn "Condition failed for " . $i->key;
37     }
38   } elsif ( $type eq 'checkbox' ) {
39     if ( defined $cgi->param($i->key.$n) ) {
40       push @touch, $i->key;
41     } else {
42       push @delete, $i->key;
43     }
44   } elsif ( $type eq 'text' || $type eq 'select' || $type eq 'select-sub' )  {
45     if ( $cgi->param($i->key.$n) ne '' ) {
46       $conf->set($i->key, $cgi->param($i->key.$n), $agentnum);
47     } else {
48       $conf->delete($i->key, $agentnum);
49     }
50   } elsif ( $type eq 'editlist' || $type eq 'selectmultiple' )  {
51     if ( scalar(@{[ $cgi->param($i->key.$n) ]}) ) {
52       $conf->set($i->key, join("\n", @{[ $cgi->param($i->key.$n) ]} ), $agentnum);
53     } else {
54       $conf->delete($i->key, $agentnum);
55     }
56   }
57   $n++;
58 }
59 # warn @touch;
60 $conf->touch($_, $agentnum) foreach @touch;
61 $conf->delete($_, $agentnum) foreach @delete;
62
63 </%init>
64 <% header('Configuration set') %>
65   <SCRIPT TYPE="text/javascript">
66     window.top.location.reload();
67   </SCRIPT>
68   </BODY></HTML>