don't disable for all items
[freeside.git] / httemplate / edit / part_svc.cgi
1 <!-- mason kludge -->
2 <% 
3    my $part_svc;
4    my $clone = '';
5    if ( $cgi->param('error') ) { #error
6      $part_svc = new FS::part_svc ( {
7        map { $_, scalar($cgi->param($_)) } fields('part_svc')
8      } );
9    } elsif ( $cgi->param('clone') && $cgi->param('clone') =~ /^(\d+)$/ ) {#clone
10      #$cgi->param('clone') =~ /^(\d+)$/ or die "malformed query: $query";
11      $part_svc = qsearchs('part_svc', { 'svcpart'=>$1 } )
12        or die "unknown svcpart: $1";
13      $clone = $part_svc->svcpart;
14      $part_svc->svcpart('');
15    } elsif ( $cgi->keywords ) { #edit
16      my($query) = $cgi->keywords;
17      $query =~ /^(\d+)$/ or die "malformed query: $query";
18      $part_svc=qsearchs('part_svc', { 'svcpart'=>$1 } )
19        or die "unknown svcpart: $1";
20    } else { #adding
21      $part_svc = new FS::part_svc {};
22    }
23    my $action = $part_svc->svcpart ? 'Edit' : 'Add';
24    my $hashref = $part_svc->hashref;
25 #   my $p_svcdb = $part_svc->svcdb || 'svc_acct';
26
27
28            #" onLoad=\"visualize()\""
29 %>
30
31 <%= header("$action Service Definition",
32            menubar( 'Main Menu'         => $p,
33                     'View all service definitions' => "${p}browse/part_svc.cgi"
34                   ),
35            )
36 %>
37
38 <% if ( $cgi->param('error') ) { %>
39 <FONT SIZE="+1" COLOR="#ff0000">Error: <%= $cgi->param('error') %></FONT>
40 <% } %>
41
42 <FORM NAME="dummy">
43
44       Service Part #<%= $part_svc->svcpart ? $part_svc->svcpart : "(NEW)" %>
45 <BR><BR>
46 Service  <INPUT TYPE="text" NAME="svc" VALUE="<%= $hashref->{svc} %>"><BR>
47 Disable new orders <INPUT TYPE="checkbox" NAME="disabled" VALUE="Y"<%= $hashref->{disabled} eq 'Y' ? ' CHECKED' : '' %>><BR>
48 <INPUT TYPE="hidden" NAME="svcpart" VALUE="<%= $hashref->{svcpart} %>">
49 <BR>
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 - Domains
53     <LI>svc_forward - mail forwarding
54     <LI>svc_www - Virtual domain website
55     <LI>svc_broadband - Broadband/High-speed Internet service
56 <!--   <LI>svc_charge - One-time charges (Partially unimplemented)
57        <LI>svc_wo - Work orders (Partially unimplemented)
58 -->
59 </UL>
60 For the selected table, you can give fields default or fixed (unchangable)
61 values.  For example, a SLIP/PPP account may have a default (or perhaps fixed)
62 <B>slipip</B> of <B>0.0.0.0</B>, while a POP mailbox will probably have a fixed
63 blank <B>slipip</B> as well as a fixed shell something like <B>/bin/true</B> or
64 <B>/usr/bin/passwd</B>.
65 <BR><BR>
66
67 <%
68 #these might belong somewhere else for other user interfaces 
69 #pry need to eventually create stuff that's shared amount UIs
70 my %defs = (
71   'svc_acct' => {
72     'dir'       => 'Home directory',
73     'uid'       => 'UID (set to fixed and blank for dial-only)',
74     '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.)',
75 #    'popnum'    => qq!<A HREF="$p/browse/svc_acct_pop.cgi/">POP number</A>!,
76     'popnum'    => {
77                      desc => 'Access number',
78                      type => 'select',
79                      select_table => 'svc_acct_pop',
80                      select_key   => 'popnum',
81                      select_label => 'city',
82                    },
83     'username'  => {
84                       desc => 'Username',
85                       type => 'disabled',
86                    },
87     'quota'     => '',
88     '_password' => 'Password',
89     'gid'       => 'GID (when blank, defaults to UID)',
90     'shell'     => 'Shell (all service definitions should have a default or fixed shell that is present in the <b>shells</b> configuration file)',
91     'finger'    => 'GECOS',
92     'domsvc'    => {
93                      desc =>'svcnum from svc_domain',
94                      type =>'select',
95                      select_table => 'svc_domain',
96                      select_key   => 'svcnum',
97                      select_label => 'domain',
98                    },
99     'usergroup' => {
100                      desc =>'ICRADIUS/FreeRADIUS groups',
101                      type =>'radius_usergroup_selector',
102                    },
103   },
104   'svc_domain' => {
105     'domain'    => 'Domain',
106   },
107   'svc_forward' => {
108     'srcsvc'    => 'service from which mail is to be forwarded',
109     'dstsvc'    => 'service to which mail is to be forwarded',
110     'dst'       => 'someone@another.domain.com to use when dstsvc is 0',
111   },
112   'svc_charge' => {
113     'amount'    => 'amount',
114   },
115   'svc_wo' => {
116     'worker'    => 'Worker',
117     '_date'      => 'Date',
118   },
119   'svc_www' => {
120     #'recnum' => '',
121     #'usersvc' => '',
122   },
123   'svc_broadband' => {
124     'actypenum' => 'This is the actypenum that refers to the type of AC that can be provisioned for this service.  This field must be set fixed.',
125     'speed_down' => 'Maximum download speed for this service in Kbps.  0 denotes unlimited.',
126     'speed_up' => 'Maximum upload speed for this service in Kbps.  0 denotes unlimited.',
127     'acnum' => 'acnum of a specific AC that this service is restricted to.  Not required',
128     'ip_addr' => 'IP address.  Leave blank for automatic assignment.',
129     'ip_netmask' => 'Mask length, aka. netmask bits.  (Eg. 255.255.255.0 == 24)',
130     'mac_addr' => 'MAC address which is used by some ACs for access control.  Specified by 6 colon seperated hex octets. (Eg. 00:00:0a:bc:1a:2b)',
131     'location' => 'Defines the physically location at which this service was installed.  This is not necessarily the billing address',
132   },
133 );
134
135   my @dbs = $hashref->{svcdb}
136              ? ( $hashref->{svcdb} )
137              : qw( svc_acct svc_domain svc_forward svc_www svc_broadband );
138
139   tie my %svcdb, 'Tie::IxHash', map { $_=>$_ } @dbs;
140   my $widget = new HTML::Widgets::SelectLayers(
141     #'selected_layer' => $p_svcdb,
142     'selected_layer' => $hashref->{svcdb} || 'svc_acct',
143     'options'        => \%svcdb,
144     'form_name'      => 'dummy',
145     'form_action'    => 'process/part_svc.cgi',
146     'form_text'      => [ qw( svc svcpart ) ],
147     'form_checkbox'  => [ 'disabled' ],
148     'layer_callback' => sub {
149       my $layer = shift;
150       my $html = qq!<INPUT TYPE="hidden" NAME="svcdb" VALUE="$layer">!;
151
152       my $columns = 3;
153       my $count = 0;
154       my @part_export =
155         map { qsearch( 'part_export', {exporttype => $_ } ) }
156           keys %{FS::part_export::export_info($layer)};
157      $html .= '<BR><BR>'. table().
158                table(). "<TR><TH COLSPAN=$columns>Exports</TH></TR><TR>";
159       foreach my $part_export ( @part_export ) {
160         $html .= '<TD><INPUT TYPE="checkbox"'.
161                  ' NAME="exportnum'. $part_export->exportnum. '"  VALUE="1" ';
162         $html .= 'CHECKED'
163           if qsearchs( 'export_svc', {
164                                    exportnum => $part_export->exportnum,
165                                    svcpart   => $clone || $part_svc->svcpart });
166         $html .= '> '. $part_export->exporttype. ' to '. $part_export->machine.
167                  '</TD>';
168         $count++;
169         $html .= '</TR><TR>' unless $count % $columns;
170       }
171       $html .= '</TR></TABLE><BR><BR>';
172
173       $html .=  table(). "<TH>Field</TH><TH COLSPAN=2>Modifier</TH>";
174       #yucky kludge
175       my @fields = defined( $FS::Record::dbdef->table($layer) )
176                       ? grep { $_ ne 'svcnum' } fields($layer)
177                       : ();
178       push @fields, 'usergroup' if $layer eq 'svc_acct'; #kludge
179       $part_svc->svcpart($clone) if $clone; #haha, undone below
180       foreach my $field (@fields) {
181         my $part_svc_column = $part_svc->part_svc_column($field);
182         my $value = $cgi->param('error')
183                       ? $cgi->param("${layer}__${field}")
184                       : $part_svc_column->columnvalue;
185         my $flag = $cgi->param('error')
186                      ? $cgi->param("${layer}__${field}_flag")
187                      : $part_svc_column->columnflag;
188         my $def = $defs{$layer}{$field};
189         my $desc = ref($def) ? $def->{desc} : $def;
190         
191         $html .= "<TR><TD>$field";
192         $html .= "- <FONT SIZE=-1>$desc</FONT>" if $desc;
193         $html .=  "</TD>";
194         $flag = '' if ref($def) && $def->{type} eq 'disabled';
195         $html .=
196           qq!<TD><INPUT TYPE="radio" NAME="${layer}__${field}_flag" VALUE=""!.
197           ' CHECKED'x($flag eq ''). ">Off</TD>".
198           '<TD>';
199         unless ( ref($def) && $def->{type} eq 'disabled' ) {
200           $html .= 
201             qq!<INPUT TYPE="radio" NAME="${layer}__${field}_flag" VALUE="D"!.
202             ' CHECKED'x($flag eq 'D'). ">Default ".
203             qq!<INPUT TYPE="radio" NAME="${layer}__${field}_flag" VALUE="F"!.
204             ' CHECKED'x($flag eq 'F'). ">Fixed ".
205             '<BR>';
206         }
207         if ( ref($def) ) {
208           if ( $def->{type} eq 'select' ) {
209             $html .= qq!<SELECT NAME="${layer}__${field}">!;
210             $html .= '<OPTION> </OPTION>' unless $value;
211             foreach my $record ( qsearch( $def->{select_table}, {} ) ) {
212               my $rvalue = $record->getfield($def->{select_key});
213               $html .= qq!<OPTION VALUE="$rvalue"!.
214                        ( $rvalue==$value ? ' SELECTED>' : '>' ).
215                        $record->getfield($def->{select_label}). '</OPTION>';
216             }
217             $html .= '</SELECT>';
218           } elsif ( $def->{type} eq 'radius_usergroup_selector' ) {
219             $html .= FS::svc_acct::radius_usergroup_selector(
220               [ split(',', $value) ], "${layer}__${field}" );
221           } elsif ( $def->{type} eq 'disabled' ) {
222             $html .=
223               qq!<INPUT TYPE="hidden" NAME="${layer}__${field}" VALUE="">!;
224           } else {
225             $html .= '<font color="#ff0000">unknown type'. $def->{type};
226           }
227         } else {
228           $html .=
229             qq!<INPUT TYPE="text" NAME="${layer}__${field}" VALUE="$value">!;
230         }
231         $html .= "</TD></TR>\n";
232       }
233       $part_svc->svcpart('') if $clone; #undone
234       $html .= "</TABLE>";
235
236       $html .= '<BR><INPUT TYPE="submit" VALUE="'.
237                ($hashref->{svcpart} ? 'Apply changes' : 'Add service'). '">';
238
239       $html;
240
241     },
242   );
243
244 %>
245 Table <%= $widget->html %>
246   </BODY>
247 </HTML>
248