#!/usr/bin/perl -Tw # # $Id: svc_acct.cgi,v 1.4 1998-12-23 03:09:19 ivan Exp $ # # 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 # # $Log: svc_acct.cgi,v $ # Revision 1.4 1998-12-23 03:09:19 ivan # $cgi->keywords instead of $cgi->query_string # # Revision 1.3 1998/12/17 09:57:23 ivan # s/CGI::(Base|Request)/CGI.pm/; # # Revision 1.2 1998/12/16 05:24:29 ivan # use FS::Conf; # use strict; use vars qw($conf); use CGI; use CGI::Carp qw(fatalsToBrowser); use FS::UID qw(cgisuidsetup); use FS::Record qw(qsearchs fields); use FS::Conf; my($cgi) = new CGI; &cgisuidsetup($cgi); $conf = new FS::Conf; my $mydomain = $conf->config('domain'); #untaint svcnum my($query) = $cgi->keywords; $query =~ /^(\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; print $cgi->header, header('Account View', ''); my $p = popurl(2); if ($pkgnum || $custnum) { print <View this package (#$pkgnum) | View this customer (#$custnum) | END } else { print <Cancel this (unaudited)account | END } print <Main menu
Service #$svcnum END print qq!
Edit this information!; #print qq!
Send account information!; print qq!

General | Shell account | !; print qq!SLIP/PPP account!; #formatting print qq!
General
!; #svc print "Service: ", $part_svc->svc, ""; #username print "
Username: ", $svc_acct->username, ""; #password if (substr($svc_acct->_password,0,1) eq "*") { print "
Password: (Login disabled)
"; } else { print "
Password: (hidden)
"; } # popnum -> svc_acct_pop record my($svc_acct_pop)=qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum}); #pop print "POP: ", $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!
!; if ($svc_acct->uid ne '') { print "Shell account"; print "
"; print "Uid: ", $svc_acct->uid, ""; print "
Gid: ", $svc_acct->gid, ""; print qq!
Finger name: !, $svc_acct->finger, qq!
!; print "Home directory: ", $svc_acct->dir, "
"; print "Shell: ", $svc_acct->shell, "
"; print "Quota: ", $svc_acct->quota, " (unimplemented)"; } else { print "No shell account."; } # SLIP/PPP print qq!
!; if ($svc_acct->slipip) { print "SLIP/PPP account
"; print "IP address: ", ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' ) ? "(Dynamic)" : $svc_acct->slipip ,""; my($attribute); foreach $attribute ( grep /^radius_/, fields('svc_acct') ) { #warn $attribute; $attribute =~ /^radius_(.*)$/; my($pattribute) = ($1); $pattribute =~ s/_/-/g; print "
Radius $pattribute: ". $svc_acct->getfield($attribute), ""; } } else { print "No SLIP/PPP account" } print "
"; #formatting print < END