service definition domsvc is now a domain pulldown
[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'    => {
115                      desc =>'svcnum from svc_domain',
116                      type =>'select',
117                      select_table => 'svc_domain',
118                      select_key   => 'svcnum',
119                      select_label => 'domain',
120                    },
121   },
122   'svc_domain' => {
123     'domain'    => 'Domain',
124   },
125   'svc_acct_sm' => {
126     'domuser'   => 'domuser@virtualdomain.com',
127     'domuid'    => 'UID where domuser@virtualdomain.com mail is forwarded',
128     'domsvc'    => 'svcnum from svc_domain for virtualdomain.com',
129   },
130   'svc_forward' => {
131     'srcsvc'    => 'service from which mail is to be forwarded',
132     'dstsvc'    => 'service to which mail is to be forwarded',
133     'dst'       => 'someone@another.domain.com to use when dstsvc is 0',
134   },
135   'svc_charge' => {
136     'amount'    => 'amount',
137   },
138   'svc_wo' => {
139     'worker'    => 'Worker',
140     '_date'      => 'Date',
141   },
142   'svc_www' => {
143     #'recnum' => '',
144     #'usersvc' => '',
145   },
146 );
147
148 #  svc_acct svc_domain svc_acct_sm svc_charge svc_wo
149 foreach my $svcdb ( qw(
150   konq_kludge svc_acct svc_domain svc_acct_sm svc_forward svc_www
151 ) ) {
152
153 #  my(@fields) = $svcdb eq 'konq_kludge'
154 #                  ? ()
155 #                  : grep { $_ ne 'svcnum' } fields($svcdb);
156   #yucky kludge
157   my(@fields) = defined( $FS::Record::dbdef->table($svcdb) )
158                   ? grep { $_ ne 'svcnum' } fields($svcdb)
159                   : ();
160   #my($rowspan)=scalar(@rows);
161
162   #my($ptmp)="<TD ROWSPAN=$rowspan>$svcdb</TD>";
163 #  $visibility = $svcdb eq $part_svc->svcdb ? "SHOW" : "HIDDEN";
164 #  $visibility = $svcdb eq $p_svcdb ? "visible" : "hidden";
165   my $visibility = "hidden";
166 %>
167 <SCRIPT>
168 if (document.getElementById) {
169     document.write("<DIV ID=\"d<%= $svcdb %>\" STYLE=\"visibility: <%= $visibility %>; position: absolute\">");
170 } else {
171 <% $visibility="show" if $visibility eq "visible"; %>
172     document.write("<LAYER ID=\"l<%= $svcdb %>\" VISIBILITY=\"<%= $visibility %>\">");
173 }
174
175 function fixup(what) {
176   what.svc.value = document.dummy.svc.value;
177   what.svcdb.value = document.dummy.svcdb.options[document.dummy.svcdb.selectedIndex].value;
178   if (document.dummy.disabled.checked)
179     what.disabled.value = 'Y';
180   else
181     what.disabled.value = '';
182 }
183 </SCRIPT>
184 <FORM NAME="<%= $svcdb %>" ACTION="process/part_svc.cgi" METHOD=POST onSubmit="fixup(this)">
185 <INPUT TYPE="hidden" NAME="svcpart" VALUE="<%= $hashref->{svcpart} %>">
186 <INPUT TYPE="hidden" NAME="svc" VALUE="<%= $hashref->{svc} %>">
187 <INPUT TYPE="hidden" NAME="disabled" VALUE="<%= $hashref->{disabled} %>">
188 <INPUT TYPE="hidden" NAME="svcdb" VALUE="<%= $svcdb %>">
189 <%
190   #print "$svcdb<BR>" unless $svcdb eq 'konq_kludge';
191   print table(). "<TH>Field</TH><TH COLSPAN=2>Modifier</TH>" unless $svcdb eq 'konq_kludge';
192
193   foreach my $field (@fields) {
194     my $part_svc_column = $part_svc->part_svc_column($field);
195     my $value = $cgi->param('error')
196                   ? $cgi->param("${svcdb}__${field}")
197                   : $part_svc_column->columnvalue;
198     my $flag = $cgi->param('error')
199                  ? $cgi->param("${svcdb}__${field}_flag")
200                  : $part_svc_column->columnflag;
201     #print "<TR>$ptmp<TD>$field";
202     print "<TR><TD>$field";
203     my $def = $defs{$svcdb}{$field};
204     my $desc = ref($def) ? $def->{desc} : $def;
205     
206     print "- <FONT SIZE=-1>$desc</FONT>" if $desc;
207     print "</TD>";
208     print qq!<TD><INPUT TYPE="radio" NAME="${svcdb}__${field}_flag" VALUE=""!.
209       ' CHECKED'x($flag eq ''). ">Off</TD>";
210     print qq!<TD><INPUT TYPE="radio" NAME="${svcdb}__${field}_flag" VALUE="D"!.
211       ' CHECKED'x($flag eq 'D'). ">Default ";
212     print qq!<INPUT TYPE="radio" NAME="${svcdb}__${field}_flag" VALUE="F"!.
213       ' CHECKED'x($flag eq 'F'). ">Fixed ";
214     print '<BR>';
215     if ( ref($def) ) {
216       if ( $def->{type} eq 'select' ) {
217         print qq!<SELECT NAME="${svcdb}__${field}">!;
218         print '<OPTION>' unless $value;
219         foreach my $record ( qsearch( $def->{select_table}, {} ) ) {
220           my $rvalue = $record->getfield($def->{select_key});
221           print qq!<OPTION VALUE="$rvalue"!.
222                 ( $rvalue==$value ? ' SELECTED>' : '>' ).
223                 $record->getfield($def->{select_label});
224         }
225       } else {
226         print 'UNKNOWN TYPE '. $def->{type};
227       }
228     } else {
229       print qq!<INPUT TYPE="text" NAME="${svcdb}__${field}" VALUE="$value">!;
230     }
231     print "</TD></TR>\n";
232     #$ptmp='';
233   }
234   print "</TABLE>" unless $svcdb eq 'konq_kludge';
235
236 print qq!\n<BR><INPUT TYPE="submit" VALUE="!,
237       $hashref->{svcpart} ? "Apply changes" : "Add service",
238       qq!">! unless $svcdb eq 'konq_kludge';
239
240   print "</FORM>";
241   print <<END;
242     <SCRIPT>
243     if (document.getElementById) {
244       document.write("</DIV>");
245     } else {
246       document.write("</LAYER>");
247     }
248     </SCRIPT>
249 END
250 }
251 #print "</TABLE>";
252 %>
253
254 <TAG onLoad="
255     if (document.getElementById) {
256       document.getElementById('d<%= $p_svcdb %>').style.visibility = 'visible';
257     } else {
258       document.l<%= $p_svcdb %>.visibility = 'visible';
259     }
260 ">
261
262   </BODY>
263 </HTML>
264