don't reload the whole page every time a config option is changed, RT#3989
[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 %   my $n = 0;
67 %   foreach my $type ( ref($i->type) ? @{$i->type} : $i->type ) {
68     var configCell = window.top.document.getElementById('<% $i->key. $n %>');
69     //alert('found cell ' + configCell);
70 %     if (    $type eq 'textarea'
71 %          || $type eq 'editlist'
72 %          || $type eq 'selectmultiple' ) {
73         configCell.innerHTML =
74           '<font size="-2"><pre>' + "\n" +
75           <% encode_entities(join("\n",
76                map { length($_) > 88 ? substr($_,0,88).'...' : $_ }
77                    $conf->config($i->key, $agentnum)
78              ) )
79           |js_string %> +
80           '</pre></font>';
81
82 %     } elsif ( $type eq 'checkbox' ) {
83 %       if ( $conf->exists($i->key, $agentnum) ) {
84           configCell.style.backgroundColor = '#00ff00';
85           configCell.innerHTML = 'YES';
86 %       } else {
87           configCell.style.backgroundColor = '#ff0000';
88           configCell.innerHTML = 'NO';
89 %       }
90 %     } elsif ( $type eq 'text' || $type eq 'select' ) {
91         configCell.innerHTML = <% $conf->exists($i->key, $agentnum) ? $conf->config($i->key, $agentnum) : '' |js_string %>;
92 %     } elsif ( $type eq 'select-sub' ) {
93         configCell.innerHTML =
94           <% $conf->config($i->key, $agentnum) |js_string %> + ': ' +
95           <% &{ $i->option_sub }( $conf->config($i->key, $agentnum) ) |js_string %>;
96 %     } else {
97         alert('unknown type <% $type %>');
98         window.top.location.reload();
99 %     }
100
101 %     $n++;
102 %   }
103     parent.cClick();
104   </SCRIPT>
105   </BODY></HTML>