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