RADIUS session viewing
[freeside.git] / httemplate / view / svc_acct.cgi
1 <!-- mason kludge -->
2 <%
3
4 my $conf = new FS::Conf;
5
6 my($query) = $cgi->keywords;
7 $query =~ /^(\d+)$/;
8 my $svcnum = $1;
9 my $svc_acct = qsearchs('svc_acct',{'svcnum'=>$svcnum});
10 die "Unknown svcnum" unless $svc_acct;
11
12 #false laziness w/all svc_*.cgi
13 my $cust_svc = qsearchs( 'cust_svc' , { 'svcnum' => $svcnum } );
14 my $pkgnum = $cust_svc->getfield('pkgnum');
15 my($cust_pkg, $custnum);
16 if ($pkgnum) {
17   $cust_pkg = qsearchs( 'cust_pkg', { 'pkgnum' => $pkgnum } );
18   $custnum = $cust_pkg->custnum;
19 } else {
20   $cust_pkg = '';
21   $custnum = '';
22 }
23 #eofalse
24
25 my $part_svc = qsearchs('part_svc',{'svcpart'=> $cust_svc->svcpart } );
26 die "Unknown svcpart" unless $part_svc;
27
28 my $domain;
29 if ( $svc_acct->domsvc ) {
30   my $svc_domain = qsearchs('svc_domain', { 'svcnum' => $svc_acct->domsvc } );
31   die "Unknown domain" unless $svc_domain;
32   $domain = $svc_domain->domain;
33 } else {
34   die "No svc_domain.svcnum record for svc_acct.domsvc: ". $cust_svc->domsvc;
35 }
36
37 %>
38
39 <SCRIPT>
40 function areyousure(href) {
41     if (confirm("Permanently delete this account?") == true)
42         window.location.href = href;
43 }
44 </SCRIPT>
45
46 <%= header('Account View', menubar(
47   ( ( $pkgnum || $custnum )
48     ? ( "View this customer (#$custnum)" => "${p}view/cust_main.cgi?$custnum",
49       )
50     : ( "Cancel this (unaudited) account" =>
51           "javascript:areyousure(\'${p}misc/cancel-unaudited.cgi?$svcnum\')" )
52   ),
53   "Main menu" => $p,
54 )) %>
55
56 <%
57
58 #if ( $cust_pkg && $cust_pkg->part_pkg->plan eq 'sqlradacct_hour' ) {
59 if (    $part_svc->part_export('sqlradius')
60      || $part_svc->part_export('sqlradius_withdomain')
61 ) {
62
63   my $last_bill;
64   my %plandata;
65   if ( $cust_pkg ) {
66     #false laziness w/httemplate/edit/part_pkg... this stuff doesn't really
67     #belong in plan data
68     %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
69                     split("\n", $cust_pkg->part_pkg->plandata );
70
71     $last_bill = $cust_pkg->last_bill;
72   } else {
73     $last_bill = 0;
74     %plandata = ();
75   }
76
77   my $seconds = $svc_acct->seconds_since_sqlradacct( $last_bill, time );
78   my $hour = int($seconds/3600);
79   my $min = int( ($seconds%3600) / 60 );
80   my $sec = $seconds%60;
81
82   my $input = $svc_acct->attribute_since_sqlradacct(
83     $last_bill, time, 'AcctInputOctets'
84   ) / 1048576;
85   my $output = $svc_acct->attribute_since_sqlradacct(
86     $last_bill, time, 'AcctOutputOctets'
87   ) / 1048576;
88
89   if ( $seconds ) {
90     print "Online <B>$hour</B>h <B>$min</B>m <B>$sec</B>s";
91   } else {
92     print 'Has not logged on';
93   }
94
95   if ( $cust_pkg ) {
96     print ' since last bill ('. time2str("%C", $last_bill). ')'.
97     print ' - '. $plandata{recur_included_hours}. ' total hours in plan<BR>'
98       if length($plandata{recur_included_hours});
99   } else {
100     print ' (no billing cycle available for unaudited account)<BR>';
101   }
102
103   print 'Input: <B>'. sprintf("%.3f", $input). '</B> megabytes<BR>';
104   print 'Output: <B>'. sprintf("%.3f", $output). '</B> megabytes<BR>';
105
106   my $href = qq!<A HREF="${p}search/sqlradius.cgi?svcnum=$svcnum!;
107   print qq!View sessions: this billing cycle | $href">all sessions</A>!;
108
109   print '<BR>';
110
111 }
112
113 #print qq!<BR><A HREF="../misc/sendconfig.cgi?$svcnum">Send account information</A>!;
114
115 %>
116
117 <% 
118   my @part_svc = ();
119   if ( $pkgnum ) { 
120     @part_svc = grep {    $_->svcdb   eq 'svc_acct'
121                        && $_->svcpart != $part_svc->svcpart }
122                 $cust_pkg->available_part_svc;
123   } else {
124     @part_svc = qsearch('part_svc', {
125       svcdb    => 'svc_acct',
126       disabled => '',
127       svcpart  => { op=>'!=', value=>$part_svc->svcpart },
128     } );
129   }
130   if ( @part_svc ) {
131 %>
132   <SCRIPT TYPE="text/javascript">
133   function enable_change () {
134     if ( document.OneTrueForm.svcpart.selectedIndex > 1 ) {
135       document.OneTrueForm.submit.disabled = false;
136     } else {
137       document.OneTrueForm.submit.disabled = true;
138     }
139   }
140   </SCRIPT>
141   <FORM NAME="OneTrueForm" ACTION="<%=$p%>edit/process/cust_svc.cgi">
142   <INPUT TYPE="hidden" NAME="svcnum" VALUE="<%= $svcnum %>">
143   <INPUT TYPE="hidden" NAME="pkgnum" VALUE="<%= $pkgnum %>">
144   <SELECT NAME="svcpart" onChange="enable_change()">
145     <OPTION VALUE="">Change service</OPTION>
146     <OPTION VALUE="">--------------</OPTION>
147     <% foreach my $part_svc ( @part_svc ) { %>
148       <OPTION VALUE="<%= $part_svc->svcpart %>"><%= $part_svc->svc %></OPTION>
149     <% } %>
150   </SELECT>
151   <INPUT NAME="submit" TYPE="submit" VALUE="Change" disabled>
152   </FORM>
153 <% } %>
154
155 <%
156
157 print qq!<A HREF="${p}edit/svc_acct.cgi?$svcnum">Edit this information</A><BR>!.
158       &ntable("#cccccc"). '<TR><TD>'. &ntable("#cccccc",2).
159       "<TR><TD ALIGN=\"right\">Service number</TD>".
160         "<TD BGCOLOR=\"#ffffff\">$svcnum</TD></TR>".
161       "<TR><TD ALIGN=\"right\">Service</TD>".
162         "<TD BGCOLOR=\"#ffffff\">". $part_svc->svc. "</TD></TR>".
163       "<TR><TD ALIGN=\"right\">Username</TD>".
164         "<TD BGCOLOR=\"#ffffff\">". $svc_acct->username. "</TD></TR>"
165 ;
166
167 print "<TR><TD ALIGN=\"right\">Domain</TD>".
168         "<TD BGCOLOR=\"#ffffff\">". $domain, "</TD></TR>";
169
170 print "<TR><TD ALIGN=\"right\">Password</TD><TD BGCOLOR=\"#ffffff\">";
171 my $password = $svc_acct->_password;
172 if ( $password =~ /^\*\w+\* (.*)$/ ) {
173   $password = $1;
174   print "<I>(login disabled)</I> ";
175 }
176 if ( $conf->exists('showpasswords') ) {
177   print '<PRE>'. encode_entities($password). '</PRE>';
178 } else {
179   print "<I>(hidden)</I>";
180 }
181 print "</TR></TD>";
182 $password = '';
183
184 if ( $conf->exists('security_phrase') ) {
185   my $sec_phrase = $svc_acct->sec_phrase;
186   print '<TR><TD ALIGN="right">Security phrase</TD><TD BGCOLOR="#ffffff">'.
187         $svc_acct->sec_phrase. '</TD></TR>';
188 }
189
190 my $svc_acct_pop = $svc_acct->popnum
191                      ? qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum})
192                      : '';
193 print "<TR><TD ALIGN=\"right\">Access number</TD>".
194       "<TD BGCOLOR=\"#ffffff\">". $svc_acct_pop->text. '</TD></TR>'
195   if $svc_acct_pop;
196
197 if ($svc_acct->uid ne '') {
198   print "<TR><TD ALIGN=\"right\">Uid</TD>".
199           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->uid. "</TD></TR>",
200         "<TR><TD ALIGN=\"right\">Gid</TD>".
201           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->gid. "</TD></TR>",
202         "<TR><TD ALIGN=\"right\">GECOS</TD>".
203           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->finger. "</TD></TR>",
204         "<TR><TD ALIGN=\"right\">Home directory</TD>".
205           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->dir. "</TD></TR>",
206         "<TR><TD ALIGN=\"right\">Shell</TD>".
207           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->shell. "</TD></TR>",
208         "<TR><TD ALIGN=\"right\">Quota</TD>".
209           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->quota. "</TD></TR>"
210   ;
211 } else {
212   print "<TR><TH COLSPAN=2>(No shell account)</TH></TR>";
213 }
214
215 if ($svc_acct->slipip) {
216   print "<TR><TD ALIGN=\"right\">IP address</TD><TD BGCOLOR=\"#ffffff\">".
217         ( ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' )
218           ? "<I>(Dynamic)</I>"
219           : $svc_acct->slipip
220         ). "</TD>";
221   my($attribute);
222   foreach $attribute ( grep /^radius_/, $svc_acct->fields ) {
223     #warn $attribute;
224     $attribute =~ /^radius_(.*)$/;
225     my $pattribute = $FS::raddb::attrib{$1};
226     print "<TR><TD ALIGN=\"right\">Radius (reply) $pattribute</TD>".
227           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->getfield($attribute).
228           "</TD></TR>";
229   }
230   foreach $attribute ( grep /^rc_/, $svc_acct->fields ) {
231     #warn $attribute;
232     $attribute =~ /^rc_(.*)$/;
233     my $pattribute = $FS::raddb::attrib{$1};
234     print "<TR><TD ALIGN=\"right\">Radius (check) $pattribute: </TD>".
235           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->getfield($attribute).
236           "</TD></TR>";
237   }
238 } else {
239   print "<TR><TH COLSPAN=2>(No SLIP/PPP account)</TH></TR>";
240 }
241
242 print '<TR><TD ALIGN="right">RADIUS groups</TD><TD BGCOLOR="#ffffff">'.
243       join('<BR>', $svc_acct->radius_groups). '</TD></TR>';
244
245 # Can this be abstracted further?  Maybe a library function like
246 # widget('HTML', 'view', $svc_acct) ?  It would definitely make UI 
247 # style management easier.
248
249 foreach (sort { $a cmp $b } $svc_acct->virtual_fields) {
250   print $svc_acct->pvf($_)->widget('HTML', 'view', $svc_acct->getfield($_)),
251       "\n";
252 }
253 %>
254 </TABLE></TD></TR></TABLE>
255 <%
256
257 print '<BR><BR>';
258
259 print join("\n", $conf->config('svc_acct-notes') ). '<BR><BR>'.
260       joblisting({'svcnum'=>$svcnum}, 1). '</BODY></HTML>';
261
262 %>