summaryrefslogtreecommitdiff
path: root/htdocs/view/svc_acct.cgi
blob: 7096c2fb11bf2c8860aed953e8d571ce10f3526c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/usr/bin/perl -Tw
#
# View svc_acct records
#
# Usage: svc_acct.cgi svcnum
#        http://server.name/path/svc_acct.cgi?svcnum
#
# Note: Should be run setuid freeside as user nobody.
#
# ivan@voicenet.com 96-dec-17
#
# added link to send info
# ivan@voicenet.com 97-jan-4
#
# added navigation bar and ability to change username, etc.
# ivan@voicenet.com 97-jan-30
#
# activate 800 service
# ivan@voicenet.com 97-feb-10
#
# modified navbar code (should be a subroutine?), added link to cancel account (only if not audited)
# ivan@voicenet.com 97-apr-16
#
# INCOMPLETELY rewrote some things for new API
# ivan@voicenet.com 97-jul-29
#
# FS::Search became FS::Record, use strict, etc. ivan@sisd.com 98-mar-9
#
# Changes to allow page to work at a relative position in server
# Changed 'password' to '_password' because Pg6.3 reserves the password word
#       bmccane@maxbaud.net     98-apr-3
#
# /var/spool/freeside/conf/domain ivan@sisd.com 98-jul-17
#
# displays arbitrary radius attributes ivan@sisd.com 98-aug-16

use strict;
use CGI::Base qw(:DEFAULT :CGI);
use CGI::Carp qw(fatalsToBrowser);
use FS::UID qw(cgisuidsetup);
use FS::Record qw(qsearchs fields);

my($conf_domain)="/var/spool/freeside/conf/domain";
open(DOMAIN,$conf_domain) or die "Can't open $conf_domain: $!";
my($mydomain)=map {
  /^(.*)$/ or die "Illegal line in $conf_domain!"; #yes, we trust the file
  $1;
} grep $_ !~ /^(#|$)/, <DOMAIN>;

my($cgi) = new CGI::Base;
$cgi->get;
&cgisuidsetup($cgi);

#untaint svcnum
$QUERY_STRING =~ /^(\d+)$/;
my($svcnum)=$1;
my($svc_acct)=qsearchs('svc_acct',{'svcnum'=>$svcnum});
die "Unkonwn svcnum" unless $svc_acct;

my($cust_svc)=qsearchs('cust_svc',{'svcnum'=>$svcnum});
my($pkgnum)=$cust_svc->getfield('pkgnum');
my($cust_pkg,$custnum);
if ($pkgnum) {
  $cust_pkg=qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
  $custnum=$cust_pkg->getfield('custnum');
}

my($part_svc)=qsearchs('part_svc',{'svcpart'=> $cust_svc->svcpart } );
die "Unkonwn svcpart" unless $part_svc;

SendHeaders(); # one guess.
print <<END;
<HTML>
  <HEAD>
    <TITLE>Account View</TITLE>
  </HEAD>
  <BODY>
    <CENTER><H1>Account View</H1>
    <BASEFONT SIZE=3>
<CENTER>
END

if ($pkgnum || $custnum) {
  print <<END;
<A HREF="../view/cust_pkg.cgi?$pkgnum">View this package (#$pkgnum)</A> | 
<A HREF="../view/cust_main.cgi?$custnum">View this customer (#$custnum)</A> | 
END
} else {
  print <<END;
<A HREF="../misc/cancel-unaudited.cgi?$svcnum">Cancel this (unaudited)account</A> |
END
}

print <<END;
<A HREF="../">Main menu</A></CENTER><BR>
<FONT SIZE=+1>Service #$svcnum</FONT>
END

print qq!<BR><A HREF="../edit/svc_acct.cgi?$svcnum">Edit this information</A>!;
#print qq!<BR><A HREF="../misc/sendconfig.cgi?$svcnum">Send account information</A>!;
print qq!<BR><BR><A HREF="#general">General</A> | <A HREF="#shell">Shell account</A> | !;
print qq!<A HREF="#slip">SLIP/PPP account</A></CENTER>!;

#formatting
print qq!<HR><CENTER><FONT SIZE=+1><A NAME="general">General</A></FONT></CENTER>!;

#svc
print "Service: <B>", $part_svc->svc, "</B>";

#username
print "<BR>Username: <B>", $svc_acct->username, "</B>";

#password
if (substr($svc_acct->_password,0,1) eq "*") {
  print "<BR>Password: <I>(Login disabled)</I><BR>";
} else {
  print "<BR>Password: <I>(hidden)</I><BR>";
}

# popnum -> svc_acct_pop record
my($svc_acct_pop)=qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum});

#pop
print "POP: <B>", $svc_acct_pop->city, ", ", $svc_acct_pop->state,
      " (", $svc_acct_pop->ac, ")/", $svc_acct_pop->exch, "<\B>"
  if $svc_acct_pop;

#shell account
print qq!<HR><CENTER><FONT SIZE=+1><A NAME="shell">!;
if ($svc_acct->uid ne '') {
  print "Shell account";
  print "</A></FONT></CENTER>";
  print "Uid: <B>", $svc_acct->uid, "</B>";
  print "<BR>Gid: <B>", $svc_acct->gid, "</B>";

  print qq!<BR>Finger name: <B>!, $svc_acct->finger, qq!</B><BR>!;

  print "Home directory: <B>", $svc_acct->dir, "</B><BR>";

  print "Shell: <B>", $svc_acct->shell, "</B><BR>";

  print "Quota: <B>", $svc_acct->quota, "</B> <I>(unimplemented)</I>";
} else {
  print "No shell account.</A></FONT></CENTER>";
}

# SLIP/PPP
print qq!<HR><CENTER><FONT SIZE=+1><A NAME="slip">!;
if ($svc_acct->slipip) {
  print "SLIP/PPP account</A></FONT></CENTER>";
  print "IP address: <B>", ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' ) ? "<I>(Dynamic)</I>" : $svc_acct->slipip ,"</B>";
  my($attribute);
  foreach $attribute ( grep /^radius_/, fields('svc_acct') ) {
    #warn $attribute;
    $attribute =~ /^radius_(.*)$/;
    my($pattribute) = ($1);
    $pattribute =~ s/_/-/g;
    print "<BR>Radius $pattribute: <B>". $svc_acct->getfield($attribute), "</B>";
  }
} else {
  print "No SLIP/PPP account</A></FONT></CENTER>"
}

print "<HR>";

	#formatting
	print <<END;

  </BODY>
</HTML>
END