4a84c0dd105b394a153fa673c1bf3a7a0fa27e0e
[freeside.git] / httemplate / config / config-process.cgi
1 %if ( scalar(@error) ) {
2 %
3 %  my $url = popurl(1)."config.cgi";
4 %  if ( length($cgi->query_string) > 1920 ) { #stupid IE 2083 URL limit
5 %
6 %    my $session = int(rand(4294967296)); #XXX
7 %    my $pref = new FS::access_user_pref({
8 %      'usernum'    => $FS::CurrentUser::CurrentUser->usernum,
9 %      'prefname'   => "redirect$session",
10 %      'prefvalue'  => $cgi->query_string,
11 %      'expiration' => time + 3600, #1h?  1m?
12 %    });
13 %    my $pref_error = $pref->insert;
14 %    if ( $pref_error ) {
15 %      die "FATAL: couldn't even set redirect cookie: $pref_error".
16 %          " attempting to set redirect$session to ". $cgi->query_string."\n";
17 %    }
18 %
19 <% $cgi->redirect("$url?redirect=$session") %>
20 %
21 %  } else {
22 %
23 <% $cgi->redirect("$url?". $cgi->query_string ) %>
24 %
25 %  }
26 %
27 %} else {
28 <% header('Configuration set') %>
29   <SCRIPT TYPE="text/javascript">
30 %   my $n = 0;
31 %   foreach my $type ( ref($i->type) ? @{$i->type} : $i->type ) {
32     var configCell = window.top.document.getElementById('<% $agentnum. $i->key. $n %>');
33     if ( ! configCell ) {
34       window.top.location.reload();
35     }
36     //alert('found cell ' + configCell);
37 %     if (    $type eq 'textarea'
38 %          || $type eq 'editlist'
39 %          || $type eq 'selectmultiple' ) {
40         configCell.innerHTML =
41           '<font size="-2"><pre>' + "\n" +
42           <% encode_entities(join("\n",
43                map { length($_) > 88 ? substr($_,0,88).'...' : $_ }
44                    $conf->config($i->key, $agentnum)
45              ) )
46           |js_string %> +
47           '</pre></font>';
48
49 %     } elsif ( $type eq 'checkbox' ) {
50 %       if ( $conf->exists($i->key, $agentnum) ) {
51           configCell.style.backgroundColor = '#00ff00';
52           configCell.innerHTML = 'YES';
53 %       } else {
54           configCell.style.backgroundColor = '#ff0000';
55           configCell.innerHTML = 'NO';
56 %       }
57 %     } elsif ( $type eq 'select' && $i->select_hash ) {
58 %       my %hash;
59 %       if ( ref($i->select_hash) eq 'ARRAY' ) {
60 %         tie %hash, 'Tie::IxHash', '' => '', @{ $i->select_hash };
61 %       } else {
62 %         tie %hash, 'Tie::IxHash', '' => '', %{ $i->select_hash };
63 %       }
64         configCell.innerHTML = <% $conf->exists($i->key, $agentnum) ? $hash{ $conf->config($i->key, $agentnum) } : '' |js_string %>;
65
66 %     } elsif ( $type eq 'text' || $type eq 'select' ) {
67         configCell.innerHTML = <% $conf->exists($i->key, $agentnum) ? $conf->config($i->key, $agentnum) : '' |js_string %>;
68 %     } elsif ( $type =~ /^select-(part_svc|part_pkg|pkg_class|agent)$/ && ! $i->multiple ) {
69 %       my $table = $1;
70 %       my $namecol = $namecol{$table};
71 %       my $pkey = dbdef->table($table)->primary_key;
72 %       my $key = $conf->config($i->key, $agentnum);
73 %       my $record = qsearchs($table, { $pkey => $key });
74 %       my $value = $record ? "$key: ".$record->$namecol() : $key;
75         configCell.innerHTML = <% $value |js_string %>;
76 %     } elsif ( $type eq 'select-sub' && ! $i->multiple ) {
77         configCell.innerHTML =
78           <% $conf->config($i->key, $agentnum) |js_string %> + ': ' +
79           <% &{ $i->option_sub }( $conf->config($i->key, $agentnum) ) |js_string %>;
80 %     } else {
81         //alert('unknown type <% $type %>');
82         window.top.location.reload();
83 %     }
84
85 %     $n++;
86 %   }
87     parent.cClick();
88   </SCRIPT>
89 </BODY>
90 </HTML>
91 %}
92 <%once>
93 #false laziness w/config-view.cgi
94 my %namecol = (
95   'part_svc'  => 'svc',
96   'part_pkg'  => 'pkg',
97   'pkg_class' => 'classname',
98   'agent'     => 'agent',
99 );
100 </%once>
101 <%init>
102
103 my $curuser = $FS::CurrentUser::CurrentUser;
104 die "access denied\n" unless $curuser->access_right('Configuration');
105
106 my $conf = new FS::Conf;
107
108 if ( $conf->exists('disable_settings_changes') ) {
109   my @changers = split(/\s*,\s*/, $conf->config('disable_settings_changes'));
110   my %changers = map { $_=>1 } @changers;
111   unless ( $changers{$curuser->username} ) {
112     errorpage_popup("Disabled in web demo");
113     die "shouldn't be reached";
114   }
115 }
116
117 $FS::Conf::DEBUG = 1;
118 my @config_items = grep { $_->key != ~/^invoice_(html|latex|template)/ }
119                         $conf->config_items;
120 my %confitems = map { $_->key => $_ } $conf->config_items;
121
122 my $agentnum = $cgi->param('agentnum');
123 my $key = $cgi->param('key');
124 my $i = $confitems{$key};
125
126 my @error = ();
127 my @touch = ();
128 my @delete = ();
129 my $n = 0;
130 foreach my $type ( ref($i->type) ? @{$i->type} : $i->type ) {
131   if ( $type eq '' ) {
132   } elsif ( $type eq 'textarea' ) {
133     if ( $cgi->param($i->key.$n) ne '' ) {
134       my $value = $cgi->param($i->key.$n);
135       $value =~ s/\r\n/\n/g; #browsers?
136       my $error = &{$i->validate}($value, $n) if $i->validate;
137       push @error, $error if $error;
138       $conf->set($i->key, $value, $agentnum);
139     } else {
140       $conf->delete($i->key, $agentnum);
141     }
142   } elsif ( $type eq 'binary' || $type eq 'image' ) {
143     if ( defined($cgi->param($i->key.$n)) && $cgi->param($i->key.$n) ) {
144       my $fh = $cgi->upload($i->key.$n);
145       my $error = &{$i->validate}($fh, $n) if $i->validate;
146       push @error, $error if $error;
147       if (defined($fh)) {
148         local $/;
149         $conf->set_binary($i->key, <$fh>, $agentnum);
150       }
151     }else{
152       warn "Condition failed for " . $i->key;
153     }
154   } elsif ( $type eq 'checkbox' ) {
155     if ( defined $cgi->param($i->key.$n) ) {
156       push @touch, $i->key;
157     } else {
158       push @delete, $i->key;
159     }
160   } elsif (
161     $type =~ /^(editlist|selectmultiple)$/
162     or ( $type =~ /^select(-(sub|part_svc|part_pkg|pkg_class|agent))?$/
163          || $i->multiple )
164   ) {
165     if ( scalar(@{[ $cgi->param($i->key.$n) ]}) ) {
166       my $error = &{$i->validate}([ $cgi->param($i->key.$n) ], $n) if $i->validate;
167       push @error, $error if $error;
168       $conf->set($i->key, join("\n", @{[ $cgi->param($i->key.$n) ]} ), $agentnum);
169     } else {
170       $conf->delete($i->key, $agentnum);
171     }
172   } elsif ( $type =~ /^(text|select(-(sub|part_svc|part_pkg|pkg_class|agent))?)$/ ) {
173     if ( $cgi->param($i->key.$n) ne '' ) {
174       my $error = &{$i->validate}($cgi->param($i->key.$n), $n) if $i->validate;
175       push @error, $error if $error;
176       $conf->set($i->key, $cgi->param($i->key.$n), $agentnum);
177     } else {
178       $conf->delete($i->key, $agentnum);
179     }
180   }
181   $n++;
182 }
183 # warn @touch;
184 $conf->touch($_, $agentnum) foreach @touch;
185 $conf->delete($_, $agentnum) foreach @delete;
186
187 if (scalar(@error)) {
188   $cgi->param('error', join(' ', @error));
189 }
190
191 </%init>