*finally* seems to be working under Mason. sheesh.
[freeside.git] / httemplate / edit / part_svc.cgi
1 <!-- mason kludge -->
2 <% 
3    my $part_svc;
4    if ( $cgi->param('error') ) { #error
5      $part_svc = new FS::part_svc ( {
6        map { $_, scalar($cgi->param($_)) } fields('part_svc')
7      } );
8    } elsif ( $cgi->keywords ) { #edit
9      my($query) = $cgi->keywords;
10      $query =~ /^(\d+)$/ or die "malformed query: $query";
11      $part_svc=qsearchs('part_svc', { 'svcpart'=>$1 } )
12        or die "unknown svcpart: $1";
13    } else { #adding
14      $part_svc = new FS::part_svc {};
15    }
16    my $action = $part_svc->svcpart ? 'Edit' : 'Add';
17    my $hashref = $part_svc->hashref;
18    my $p_svcdb = $part_svc->svcdb || 'svc_acct';
19
20 %>
21
22 <SCRIPT>
23 function visualize(what) {
24   if (document.getElementById) {
25     document.getElementById('d<%= $p_svcdb %>').style.visibility = "visible";
26   } else {
27     document.l<%= $p_svcdb %>.visibility = "visible";
28   }
29 }
30 </SCRIPT>
31
32 <%= header("$action Service Definition",
33            menubar( 'Main Menu'         => $p,
34                     'View all service definitions' => "${p}browse/part_svc.cgi"
35                   ),
36            " onLoad=\"visualize()\""
37            )
38 %>
39
40 <% if ( $cgi->param('error') ) { %>
41 <FONT SIZE="+1" COLOR="#ff0000">Error: <%= $cgi->param('error') %></FONT>
42 <% } %>
43
44 <FORM NAME="dummy">
45
46       Service Part #<%= $part_svc->svcpart ? $part_svc->svcpart : "(NEW)" %>
47 <BR><BR>
48 Service  <INPUT TYPE="text" NAME="svc" VALUE="<%= $hashref->{svc} %>"><BR>
49 Disable new orders <INPUT TYPE="checkbox" NAME="disabled" VALUE="Y"<%= $hashref->{disabled} eq 'Y' ? ' CHECKED' : '' %>><BR>
50 <BR>
51 Services are items you offer to your customers.
52 <UL><LI>svc_acct - Shell accounts, POP mailboxes, SLIP/PPP and ISDN accounts
53     <LI>svc_domain - Domains
54     <LI>svc_acct_sm - <B>deprecated</B> (use svc_forward for new installations) Virtual domain mail aliasing.
55     <LI>svc_forward - mail forwarding
56     <LI>svc_www - Virtual domain website
57 <!--   <LI>svc_charge - One-time charges (Partially unimplemented)
58        <LI>svc_wo - Work orders (Partially unimplemented)
59 -->
60 </UL>
61 For the selected table, you can give fields default or fixed (unchangable)
62 values.  For example, a SLIP/PPP account may have a default (or perhaps fixed)
63 <B>slipip</B> of <B>0.0.0.0</B>, while a POP mailbox will probably have a fixed
64 blank <B>slipip</B> as well as a fixed shell something like <B>/bin/true</B> or
65 <B>/usr/bin/passwd</B>.
66 <BR><BR>
67 <SCRIPT>
68 var svcdb = null;
69 function changed(what) {
70   svcdb = what.options[what.selectedIndex].value;
71 <% foreach my $svcdb ( qw( svc_acct svc_domain svc_acct_sm svc_forward svc_www ) ) { %>
72   if (svcdb == "<%= $svcdb %>" ) {
73     <% foreach my $not ( grep { $_ ne $svcdb } (
74                            qw(svc_acct svc_domain svc_acct_sm svc_forward svc_www) ) ) { %>
75       if (document.getElementById) {
76         document.getElementById('d<%= $not %>').style.visibility = "hidden";
77       } else {
78         document.l<%= $not %>.visibility = "hidden";
79       }
80     <% } %>
81     if (document.getElementById) {
82       document.getElementById('d<%= $svcdb %>').style.visibility = "visible";
83     } else {
84       document.l<%= $svcdb %>.visibility = "visible";
85     }
86   }
87 <% } %>
88 }
89 </SCRIPT>
90 <% my @dbs = $hashref->{svcdb}
91              ? ( $hashref->{svcdb} )
92              : qw( svc_acct svc_domain svc_acct_sm svc_forward svc_www ); %>
93 Table<SELECT NAME="svcdb" SIZE=1 onChange="changed(this)">
94 <% foreach my $svcdb (@dbs) { %>
95 <OPTION VALUE="<%= $svcdb %>" <%= ' SELECTED'x($svcdb eq $hashref->{svcdb}) %>><%= $svcdb %>
96 <% } %>
97 </SELECT></FORM>
98
99 <%
100 #these might belong somewhere else for other user interfaces 
101 #pry need to eventually create stuff that's shared amount UIs
102 my %defs = (
103   'svc_acct' => {
104     'dir'       => 'Home directory',
105     'uid'       => 'UID (set to fixed and blank for dial-only)',
106     'slipip'    => 'IP address (Set to fixed and blank to disable dialin, or, set a value to be exported to RADIUS Framed-IP-Address.  Use the special value <code>0e0</code> [zero e zero] to enable export to RADIUS without a Framed-IP-Address.)',
107     'popnum'    => qq!<A HREF="$p/browse/svc_acct_pop.cgi/">POP number</A>!,
108     'username'  => 'Username',
109     'quota'     => '',
110     '_password' => 'Password',
111     'gid'       => 'GID (when blank, defaults to UID)',
112     'shell'     => 'Shell (all service definitions should have a default or fixed shell that is present in the <b>shells</b> configuration file)',
113     'finger'    => 'GECOS',
114     'domsvc'    => 'svcnum from svc_domain',
115   },
116   'svc_domain' => {
117     'domain'    => 'Domain',
118   },
119   'svc_acct_sm' => {
120     'domuser'   => 'domuser@virtualdomain.com',
121     'domuid'    => 'UID where domuser@virtualdomain.com mail is forwarded',
122     'domsvc'    => 'svcnum from svc_domain for virtualdomain.com',
123   },
124   'svc_forward' => {
125     'srcsvc'    => 'service from which mail is to be forwarded',
126     'dstsvc'    => 'service to which mail is to be forwarded',
127     'dst'       => 'someone@another.domain.com to use when dstsvc is 0',
128   },
129   'svc_charge' => {
130     'amount'    => 'amount',
131   },
132   'svc_wo' => {
133     'worker'    => 'Worker',
134     '_date'      => 'Date',
135   },
136   'svc_www' => {
137     #'recnum' => '',
138     #'usersvc' => '',
139   },
140 );
141
142 #  svc_acct svc_domain svc_acct_sm svc_charge svc_wo
143 foreach my $svcdb ( qw(
144   konq_kludge svc_acct svc_domain svc_acct_sm svc_forward svc_www
145 ) ) {
146
147 #  my(@fields) = $svcdb eq 'konq_kludge'
148 #                  ? ()
149 #                  : grep { $_ ne 'svcnum' } fields($svcdb);
150   #yucky kludge
151   my(@fields) = defined( $FS::Record::dbdef->table($svcdb) )
152                   ? grep { $_ ne 'svcnum' } fields($svcdb)
153                   : ();
154   #my($rowspan)=scalar(@rows);
155
156   #my($ptmp)="<TD ROWSPAN=$rowspan>$svcdb</TD>";
157 #  $visibility = $svcdb eq $part_svc->svcdb ? "SHOW" : "HIDDEN";
158 #  $visibility = $svcdb eq $p_svcdb ? "visible" : "hidden";
159   my $visibility = "hidden";
160 %>
161 <SCRIPT>
162 if (document.getElementById) {
163     document.write("<DIV ID=\"d<%= $svcdb %>\" STYLE=\"visibility: <%= $visibility %>; position: absolute\">");
164 } else {
165 <% $visibility="show" if $visibility eq "visible"; %>
166     document.write("<LAYER ID=\"l<%= $svcdb %>\" VISIBILITY=\"<%= $visibility %>\">");
167 }
168
169 function fixup(what) {
170   what.svc.value = document.dummy.svc.value;
171   what.svcdb.value = document.dummy.svcdb.options[document.dummy.svcdb.selectedIndex].value;
172   if (document.dummy.disabled.checked)
173     what.disabled.value = 'Y';
174   else
175     what.disabled.value = '';
176 }
177 </SCRIPT>
178 <FORM NAME="<%= $svcdb %>" ACTION="process/part_svc.cgi" METHOD=POST onSubmit="fixup(this)">
179 <INPUT TYPE="hidden" NAME="svcpart" VALUE="<%= $hashref->{svcpart} %>">
180 <INPUT TYPE="hidden" NAME="svc" VALUE="<%= $hashref->{svc} %>">
181 <INPUT TYPE="hidden" NAME="disabled" VALUE="<%= $hashref->{disabled} %>">
182 <INPUT TYPE="hidden" NAME="svcdb" VALUE="<%= $svcdb %>">
183 <%
184   #print "$svcdb<BR>" unless $svcdb eq 'konq_kludge';
185   print table(). "<TH>Field</TH><TH COLSPAN=2>Modifier</TH>" unless $svcdb eq 'konq_kludge';
186
187   foreach my $field (@fields) {
188     my $part_svc_column = $part_svc->part_svc_column($field);
189     my $value = $cgi->param('error')
190                   ? $cgi->param("${svcdb}__${field}")
191                   : $part_svc_column->columnvalue;
192     my $flag = $cgi->param('error')
193                  ? $cgi->param("${svcdb}__${field}_flag")
194                  : $part_svc_column->columnflag;
195     #print "<TR>$ptmp<TD>$field";
196     print "<TR><TD>$field";
197     print "- <FONT SIZE=-1>$defs{$svcdb}{$field}</FONT>"
198       if defined $defs{$svcdb}{$field};
199     print "</TD>";
200     print qq!<TD><INPUT TYPE="radio" NAME="${svcdb}__${field}_flag" VALUE=""!.
201       ' CHECKED'x($flag eq ''). ">Off</TD>";
202     print qq!<TD><INPUT TYPE="radio" NAME="${svcdb}__${field}_flag" VALUE="D"!.
203       ' CHECKED'x($flag eq 'D'). ">Default ";
204     print qq!<INPUT TYPE="radio" NAME="${svcdb}__${field}_flag" VALUE="F"!.
205       ' CHECKED'x($flag eq 'F'). ">Fixed ";
206     print qq!<INPUT TYPE="text" NAME="${svcdb}__${field}" VALUE="$value">!,
207       "</TD></TR>\n";
208     #$ptmp='';
209   }
210   print "</TABLE>" unless $svcdb eq 'konq_kludge';
211
212 print qq!\n<BR><INPUT TYPE="submit" VALUE="!,
213       $hashref->{svcpart} ? "Apply changes" : "Add service",
214       qq!">! unless $svcdb eq 'konq_kludge';
215
216   print "</FORM>";
217   print <<END;
218     <SCRIPT>
219     if (document.getElementById) {
220       document.write("</DIV>");
221     } else {
222       document.write("</LAYER>");
223     }
224     </SCRIPT>
225 END
226 }
227 #print "</TABLE>";
228 %>
229
230 <TAG onLoad="
231     if (document.getElementById) {
232       document.getElementById('d<%= $p_svcdb %>').style.visibility = 'visible';
233     } else {
234       document.l<%= $p_svcdb %>.visibility = 'visible';
235     }
236 ">
237
238   </BODY>
239 </HTML>
240