all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
[freeside.git] / htdocs / view / svc_acct.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: svc_acct.cgi,v 1.6 1999-01-18 09:41:45 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.6  1999-01-18 09:41:45  ivan
39 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
40 # (good idea anyway)
41 #
42 # Revision 1.5  1999/01/18 09:22:36  ivan
43 # changes to track email addresses for email invoicing
44 #
45 # Revision 1.4  1998/12/23 03:09:19  ivan
46 # $cgi->keywords instead of $cgi->query_string
47 #
48 # Revision 1.3  1998/12/17 09:57:23  ivan
49 # s/CGI::(Base|Request)/CGI.pm/;
50 #
51 # Revision 1.2  1998/12/16 05:24:29  ivan
52 # use FS::Conf;
53 #
54
55 use strict;
56 use vars qw( $conf );
57 use CGI;
58 use CGI::Carp qw( fatalsToBrowser );
59 use FS::UID qw( cgisuidsetup );
60 use FS::CGI qw( header popurl );
61 use FS::Record qw( qsearchs fields );
62 use FS::Conf;
63 use FS::svc_acct;
64 use FS::cust_svc;
65 use FS::cust_pkg;
66 use FS::part_svc;
67 use FS::svc_acct_pop;
68
69 my($cgi) = new CGI;
70 &cgisuidsetup($cgi);
71
72 $conf = new FS::Conf;
73 my $mydomain = $conf->config('domain');
74
75 #untaint svcnum
76 my($query) = $cgi->keywords;
77 $query =~ /^(\d+)$/;
78 my($svcnum)=$1;
79 my($svc_acct)=qsearchs('svc_acct',{'svcnum'=>$svcnum});
80 die "Unkonwn svcnum" unless $svc_acct;
81
82 my($cust_svc)=qsearchs('cust_svc',{'svcnum'=>$svcnum});
83 my($pkgnum)=$cust_svc->getfield('pkgnum');
84 my($cust_pkg,$custnum);
85 if ($pkgnum) {
86   $cust_pkg=qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
87   $custnum=$cust_pkg->getfield('custnum');
88 }
89
90 my($part_svc)=qsearchs('part_svc',{'svcpart'=> $cust_svc->svcpart } );
91 die "Unkonwn svcpart" unless $part_svc;
92
93 print $cgi->header( '-expires' => 'now' ), header('Account View', '');
94
95 my $p = popurl(2);
96 if ($pkgnum || $custnum) {
97   print <<END;
98 <A HREF="${p}view/cust_pkg.cgi?$pkgnum">View this package (#$pkgnum)</A> | 
99 <A HREF="${p}view/cust_main.cgi?$custnum">View this customer (#$custnum)</A> | 
100 END
101 } else {
102   print <<END;
103 <A HREF="${p}misc/cancel-unaudited.cgi?$svcnum">Cancel this (unaudited)account</A> |
104 END
105 }
106
107 print <<END;
108 <A HREF="${p}">Main menu</A></CENTER><BR>
109 <FONT SIZE=+1>Service #$svcnum</FONT>
110 END
111
112 print qq!<BR><A HREF="${p}edit/svc_acct.cgi?$svcnum">Edit this information</A>!;
113 #print qq!<BR><A HREF="../misc/sendconfig.cgi?$svcnum">Send account information</A>!;
114 print qq!<BR><BR><A HREF="#general">General</A> | <A HREF="#shell">Shell account</A> | !;
115 print qq!<A HREF="#slip">SLIP/PPP account</A></CENTER>!;
116
117 #formatting
118 print qq!<HR><CENTER><FONT SIZE=+1><A NAME="general">General</A></FONT></CENTER>!;
119
120 #svc
121 print "Service: <B>", $part_svc->svc, "</B>";
122
123 #username
124 print "<BR>Username: <B>", $svc_acct->username, "</B>";
125
126 #password
127 if (substr($svc_acct->_password,0,1) eq "*") {
128   print "<BR>Password: <I>(Login disabled)</I><BR>";
129 } else {
130   print "<BR>Password: <I>(hidden)</I><BR>";
131 }
132
133 # popnum -> svc_acct_pop record
134 my($svc_acct_pop)=qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum});
135
136 #pop
137 print "POP: <B>", $svc_acct_pop->city, ", ", $svc_acct_pop->state,
138       " (", $svc_acct_pop->ac, ")/", $svc_acct_pop->exch, "<\B>"
139   if $svc_acct_pop;
140
141 #shell account
142 print qq!<HR><CENTER><FONT SIZE=+1><A NAME="shell">!;
143 if ($svc_acct->uid ne '') {
144   print "Shell account";
145   print "</A></FONT></CENTER>";
146   print "Uid: <B>", $svc_acct->uid, "</B>";
147   print "<BR>Gid: <B>", $svc_acct->gid, "</B>";
148
149   print qq!<BR>Finger name: <B>!, $svc_acct->finger, qq!</B><BR>!;
150
151   print "Home directory: <B>", $svc_acct->dir, "</B><BR>";
152
153   print "Shell: <B>", $svc_acct->shell, "</B><BR>";
154
155   print "Quota: <B>", $svc_acct->quota, "</B> <I>(unimplemented)</I>";
156 } else {
157   print "No shell account.</A></FONT></CENTER>";
158 }
159
160 # SLIP/PPP
161 print qq!<HR><CENTER><FONT SIZE=+1><A NAME="slip">!;
162 if ($svc_acct->slipip) {
163   print "SLIP/PPP account</A></FONT></CENTER>";
164   print "IP address: <B>", ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' ) ? "<I>(Dynamic)</I>" : $svc_acct->slipip ,"</B>";
165   my($attribute);
166   foreach $attribute ( grep /^radius_/, fields('svc_acct') ) {
167     #warn $attribute;
168     $attribute =~ /^radius_(.*)$/;
169     my($pattribute) = ($1);
170     $pattribute =~ s/_/-/g;
171     print "<BR>Radius $pattribute: <B>". $svc_acct->getfield($attribute), "</B>";
172   }
173 } else {
174   print "No SLIP/PPP account</A></FONT></CENTER>"
175 }
176
177 print "<HR>";
178
179         #formatting
180         print <<END;
181
182   </BODY>
183 </HTML>
184 END
185