s/CGI::(Base|Request)/CGI.pm/;
[freeside.git] / htdocs / view / svc_acct.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: svc_acct.cgi,v 1.3 1998-12-17 09:57:23 ivan Exp $
4 #
5 # Usage: svc_acct.cgi svcnum
6 #        http://server.name/path/svc_acct.cgi?svcnum
7 #
8 # Note: Should be run setuid freeside as user nobody.
9 #
10 # ivan@voicenet.com 96-dec-17
11 #
12 # added link to send info
13 # ivan@voicenet.com 97-jan-4
14 #
15 # added navigation bar and ability to change username, etc.
16 # ivan@voicenet.com 97-jan-30
17 #
18 # activate 800 service
19 # ivan@voicenet.com 97-feb-10
20 #
21 # modified navbar code (should be a subroutine?), added link to cancel account (only if not audited)
22 # ivan@voicenet.com 97-apr-16
23 #
24 # INCOMPLETELY rewrote some things for new API
25 # ivan@voicenet.com 97-jul-29
26 #
27 # FS::Search became FS::Record, use strict, etc. ivan@sisd.com 98-mar-9
28 #
29 # Changes to allow page to work at a relative position in server
30 # Changed 'password' to '_password' because Pg6.3 reserves the password word
31 #       bmccane@maxbaud.net     98-apr-3
32 #
33 # /var/spool/freeside/conf/domain ivan@sisd.com 98-jul-17
34 #
35 # displays arbitrary radius attributes ivan@sisd.com 98-aug-16
36 #
37 # $Log: svc_acct.cgi,v $
38 # Revision 1.3  1998-12-17 09:57:23  ivan
39 # s/CGI::(Base|Request)/CGI.pm/;
40 #
41 # Revision 1.2  1998/12/16 05:24:29  ivan
42 # use FS::Conf;
43 #
44
45 use strict;
46 use vars qw($conf);
47 use CGI;
48 use CGI::Carp qw(fatalsToBrowser);
49 use FS::UID qw(cgisuidsetup);
50 use FS::Record qw(qsearchs fields);
51 use FS::Conf;
52
53 my($cgi) = new CGI;
54 &cgisuidsetup($cgi);
55
56 $conf = new FS::Conf;
57 my $mydomain = $conf->config('domain');
58
59 #untaint svcnum
60 $cgi->query_string =~ /^(\d+)$/;
61 my($svcnum)=$1;
62 my($svc_acct)=qsearchs('svc_acct',{'svcnum'=>$svcnum});
63 die "Unkonwn svcnum" unless $svc_acct;
64
65 my($cust_svc)=qsearchs('cust_svc',{'svcnum'=>$svcnum});
66 my($pkgnum)=$cust_svc->getfield('pkgnum');
67 my($cust_pkg,$custnum);
68 if ($pkgnum) {
69   $cust_pkg=qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
70   $custnum=$cust_pkg->getfield('custnum');
71 }
72
73 my($part_svc)=qsearchs('part_svc',{'svcpart'=> $cust_svc->svcpart } );
74 die "Unkonwn svcpart" unless $part_svc;
75
76 print $cgi->header, header('Account View', '');
77
78 my $p = popurl(2);
79 if ($pkgnum || $custnum) {
80   print <<END;
81 <A HREF="${p}view/cust_pkg.cgi?$pkgnum">View this package (#$pkgnum)</A> | 
82 <A HREF="${p}view/cust_main.cgi?$custnum">View this customer (#$custnum)</A> | 
83 END
84 } else {
85   print <<END;
86 <A HREF="${p}misc/cancel-unaudited.cgi?$svcnum">Cancel this (unaudited)account</A> |
87 END
88 }
89
90 print <<END;
91 <A HREF="${p}">Main menu</A></CENTER><BR>
92 <FONT SIZE=+1>Service #$svcnum</FONT>
93 END
94
95 print qq!<BR><A HREF="${p}edit/svc_acct.cgi?$svcnum">Edit this information</A>!;
96 #print qq!<BR><A HREF="../misc/sendconfig.cgi?$svcnum">Send account information</A>!;
97 print qq!<BR><BR><A HREF="#general">General</A> | <A HREF="#shell">Shell account</A> | !;
98 print qq!<A HREF="#slip">SLIP/PPP account</A></CENTER>!;
99
100 #formatting
101 print qq!<HR><CENTER><FONT SIZE=+1><A NAME="general">General</A></FONT></CENTER>!;
102
103 #svc
104 print "Service: <B>", $part_svc->svc, "</B>";
105
106 #username
107 print "<BR>Username: <B>", $svc_acct->username, "</B>";
108
109 #password
110 if (substr($svc_acct->_password,0,1) eq "*") {
111   print "<BR>Password: <I>(Login disabled)</I><BR>";
112 } else {
113   print "<BR>Password: <I>(hidden)</I><BR>";
114 }
115
116 # popnum -> svc_acct_pop record
117 my($svc_acct_pop)=qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum});
118
119 #pop
120 print "POP: <B>", $svc_acct_pop->city, ", ", $svc_acct_pop->state,
121       " (", $svc_acct_pop->ac, ")/", $svc_acct_pop->exch, "<\B>"
122   if $svc_acct_pop;
123
124 #shell account
125 print qq!<HR><CENTER><FONT SIZE=+1><A NAME="shell">!;
126 if ($svc_acct->uid ne '') {
127   print "Shell account";
128   print "</A></FONT></CENTER>";
129   print "Uid: <B>", $svc_acct->uid, "</B>";
130   print "<BR>Gid: <B>", $svc_acct->gid, "</B>";
131
132   print qq!<BR>Finger name: <B>!, $svc_acct->finger, qq!</B><BR>!;
133
134   print "Home directory: <B>", $svc_acct->dir, "</B><BR>";
135
136   print "Shell: <B>", $svc_acct->shell, "</B><BR>";
137
138   print "Quota: <B>", $svc_acct->quota, "</B> <I>(unimplemented)</I>";
139 } else {
140   print "No shell account.</A></FONT></CENTER>";
141 }
142
143 # SLIP/PPP
144 print qq!<HR><CENTER><FONT SIZE=+1><A NAME="slip">!;
145 if ($svc_acct->slipip) {
146   print "SLIP/PPP account</A></FONT></CENTER>";
147   print "IP address: <B>", ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' ) ? "<I>(Dynamic)</I>" : $svc_acct->slipip ,"</B>";
148   my($attribute);
149   foreach $attribute ( grep /^radius_/, fields('svc_acct') ) {
150     #warn $attribute;
151     $attribute =~ /^radius_(.*)$/;
152     my($pattribute) = ($1);
153     $pattribute =~ s/_/-/g;
154     print "<BR>Radius $pattribute: <B>". $svc_acct->getfield($attribute), "</B>";
155   }
156 } else {
157   print "No SLIP/PPP account</A></FONT></CENTER>"
158 }
159
160 print "<HR>";
161
162         #formatting
163         print <<END;
164
165   </BODY>
166 </HTML>
167 END
168