[2] | 1 | #!/usr/bin/perl -w -T
|
---|
| 2 | # dns/cgi-bin/dns.cgi
|
---|
| 3 | ###
|
---|
| 4 | # SVN revision info
|
---|
| 5 | # $Date: 2010-01-13 22:46:21 +0000 (Wed, 13 Jan 2010) $
|
---|
| 6 | # SVN revision $Rev: 57 $
|
---|
| 7 | # Last update by $Author: kdeugau $
|
---|
| 8 | ###
|
---|
[3] | 9 | # Copyright (C) 2008,2009 - Kris Deugau <kdeugau@deepnet.cx>
|
---|
[2] | 10 |
|
---|
| 11 | use strict;
|
---|
| 12 | use warnings;
|
---|
| 13 |
|
---|
| 14 | use CGI::Carp qw (fatalsToBrowser);
|
---|
| 15 | use CGI::Simple;
|
---|
| 16 | use HTML::Template;
|
---|
| 17 | use CGI::Session;
|
---|
[29] | 18 | use Crypt::PasswdMD5;
|
---|
[30] | 19 | use Net::DNS;
|
---|
[2] | 20 | use DBI;
|
---|
| 21 |
|
---|
| 22 | use lib '.';
|
---|
| 23 | # custom modules
|
---|
| 24 | use DNSDB qw(:ALL);
|
---|
| 25 |
|
---|
[13] | 26 | my @debugbits; # temp, to be spit out near the end of processing
|
---|
[38] | 27 | my $debugenv = 0;
|
---|
[13] | 28 |
|
---|
[2] | 29 | # Let's do these templates right...
|
---|
| 30 | my $templatedir = "templates";
|
---|
| 31 | my $sessiondir = "session";
|
---|
| 32 |
|
---|
| 33 | # Set up the CGI object...
|
---|
| 34 | my $q = new CGI::Simple;
|
---|
| 35 | # ... and get query-string params as well as POST params if necessary
|
---|
| 36 | $q->parse_query_string;
|
---|
| 37 |
|
---|
| 38 | # This is probably excessive fiddling, but it puts the parameters somewhere my fingers know about...
|
---|
[7] | 39 | my %webvar = $q->Vars;
|
---|
[2] | 40 |
|
---|
[13] | 41 | # persistent stuff needed on most/all pages
|
---|
[2] | 42 | my $sid = ($webvar{sid} ? $webvar{sid} : undef);
|
---|
| 43 | my $session = new CGI::Session("driver:File", $sid, {Directory => $sessiondir});
|
---|
| 44 | #$sid = $session->id() if !$sid;
|
---|
| 45 | if (!$sid) {
|
---|
| 46 | # init stuff. can probably axe this down to just above if'n'when user manipulation happens
|
---|
| 47 | $sid = $session->id();
|
---|
| 48 | # need to know the "upper" group the user can deal with; may as well
|
---|
| 49 | # stick this in the session rather than calling out to the DB every time.
|
---|
[18] | 50 | $session->param('logingroup',1);
|
---|
| 51 | $session->param('curgroup',1); # yes, we *do* need to track this too. er, probably.
|
---|
[51] | 52 | $session->param('domlistsortby','domain');
|
---|
| 53 | $session->param('domlistorder','ASC');
|
---|
[54] | 54 | $session->param('useradminsortby','user');
|
---|
[51] | 55 | $session->param('useradminorder','ASC');
|
---|
| 56 | $session->param('grpmansortby','group');
|
---|
| 57 | $session->param('grpmanorder','ASC');
|
---|
| 58 | $session->param('reclistsortby','name');
|
---|
| 59 | $session->param('reclistorder','ASC');
|
---|
[53] | 60 | # $session->param('filter','login');
|
---|
| 61 | # $session->param('startwith','login');
|
---|
| 62 | # $session->param('searchsubs','login');
|
---|
[2] | 63 | }
|
---|
| 64 |
|
---|
[19] | 65 | my $logingroup = ($session->param('logingroup') ? $session->param('logingroup') : 1);
|
---|
| 66 | my $curgroup = ($session->param('curgroup') ? $session->param('curgroup') : $logingroup);
|
---|
[17] | 67 | my $group = ($webvar{group} ? $webvar{group} : 1);
|
---|
[18] | 68 |
|
---|
[54] | 69 | # per-page startwith, filter, searchsubs
|
---|
| 70 | $session->param($webvar{page}.'startwith', $webvar{startwith}) if $webvar{startwith};
|
---|
| 71 | $session->param($webvar{page}.'filter', $webvar{filter}) if $webvar{filter};
|
---|
| 72 | $webvar{searchsubs} =~ s/^n ?// if $webvar{searchsubs};
|
---|
[57] | 73 | $session->param($webvar{page}.'searchsubs', $webvar{searchsubs}) if defined($webvar{searchsubs});
|
---|
[54] | 74 |
|
---|
| 75 | my $startwith = $session->param($webvar{page}.'startwith');
|
---|
| 76 | my $filter = $session->param($webvar{page}.'filter');
|
---|
| 77 | my $searchsubs = $session->param($webvar{page}.'searchsubs');
|
---|
| 78 |
|
---|
[57] | 79 | push @debugbits, "foo<br>\n" if defined($webvar{searchsubs});
|
---|
[54] | 80 |
|
---|
[26] | 81 | # nrgh, can't handle login here because we don't have a database handle to check the user/pass with yet
|
---|
[2] | 82 |
|
---|
| 83 | my $header = HTML::Template->new(filename => "$templatedir/header.tmpl");
|
---|
| 84 | my $footer = HTML::Template->new(filename => "$templatedir/footer.tmpl");
|
---|
| 85 |
|
---|
| 86 | # default
|
---|
[38] | 87 | #my $perpage = 15;
|
---|
| 88 | my $perpage = 3;
|
---|
[2] | 89 | my $offset = ($webvar{offset} ? $webvar{offset} : 0);
|
---|
| 90 |
|
---|
| 91 | # NB: these must match the field name and SQL ascend/descend syntax respectively
|
---|
[41] | 92 | my $sortby = "domain";
|
---|
| 93 | my $sortorder = "ASC";
|
---|
[2] | 94 |
|
---|
[29] | 95 | my ($dbh,$msg) = connectDB("dnsdb","dnsdb","secret","dbhost");
|
---|
[2] | 96 | #my $dbh = DBI->connect("DBI:mysql:database=vegadns","vegadns","secret",
|
---|
| 97 | # { AutoCommit => 0 }) or die $DBI::errstr;
|
---|
| 98 |
|
---|
| 99 | ##fixme. PLEASE! <G>
|
---|
| 100 | print $msg if !$dbh;
|
---|
| 101 |
|
---|
| 102 | # fiddle hardcoded "defaults" as per system/user (?) prefs
|
---|
| 103 | initGlobals($dbh);
|
---|
| 104 |
|
---|
[26] | 105 | # handle login redirect
|
---|
[30] | 106 | if ($webvar{action}) {
|
---|
| 107 | if ($webvar{action} eq 'login') {
|
---|
| 108 | my $sth = $dbh->prepare("SELECT user_id,group_id,password,firstname,lastname FROM users WHERE username=?");
|
---|
| 109 | $sth->execute($webvar{username});
|
---|
| 110 | my ($uid,$gid,$pass,$fname,$lname) = $sth->fetchrow_array;
|
---|
| 111 | $webvar{loginfailed} = 1 if !defined($uid);
|
---|
[26] | 112 |
|
---|
[30] | 113 | if ($pass =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
|
---|
| 114 | $webvar{loginfailed} = 1 if $pass ne unix_md5_crypt($webvar{password},$1);
|
---|
| 115 | } else {
|
---|
| 116 | $webvar{loginfailed} = 1 if $pass ne $webvar{password};
|
---|
| 117 | }
|
---|
[29] | 118 |
|
---|
[30] | 119 | # set session bits
|
---|
| 120 | $session->param('logingroup',$gid);
|
---|
| 121 | $session->param('curgroup',$gid);
|
---|
| 122 | $session->param('username',$webvar{username});
|
---|
[26] | 123 |
|
---|
[30] | 124 | changepage(page => "domlist") if !defined($webvar{loginfailed});
|
---|
| 125 | } elsif ($webvar{action} eq 'logout') {
|
---|
| 126 | # delete the session
|
---|
| 127 | $session->delete();
|
---|
| 128 | $session->flush();
|
---|
| 129 |
|
---|
| 130 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}";
|
---|
| 131 | $newurl =~ s|/[^/]+$|/|;
|
---|
| 132 | print "Status: 302\nLocation: $newurl\n\n";
|
---|
| 133 | exit;
|
---|
| 134 |
|
---|
[57] | 135 | } elsif ($webvar{action} eq 'chgroup') {
|
---|
| 136 | # fiddle session-stored group data
|
---|
| 137 | # magic incantation to... uhhh...
|
---|
| 138 | $session->param('curgroup', $webvar{group});
|
---|
| 139 | $curgroup = ($webvar{group} ? $webvar{group} : $session->param('curgroup'));
|
---|
[30] | 140 | }
|
---|
[57] | 141 | } # handle global webvar{action}s
|
---|
[26] | 142 |
|
---|
[57] | 143 |
|
---|
[15] | 144 | ## Default page is a login page
|
---|
| 145 | #my $page; # to be initialized as an HTML::Template entity sooner or later
|
---|
[2] | 146 |
|
---|
[3] | 147 |
|
---|
[2] | 148 | # decide which page to spit out...
|
---|
[15] | 149 | $webvar{page} = 'login' if !$webvar{page};
|
---|
| 150 | #if (!$webvar{page}) {
|
---|
| 151 | # $page = HTML::Template->new(filename => "$templatedir/login.tmpl");
|
---|
| 152 | #} else {
|
---|
| 153 | #}
|
---|
[2] | 154 |
|
---|
[15] | 155 | my $page = HTML::Template->new(filename => "$templatedir/$webvar{page}.tmpl");
|
---|
| 156 |
|
---|
[2] | 157 | $page->param(sid => $sid);
|
---|
| 158 |
|
---|
[26] | 159 | if ($webvar{page} eq 'login') {
|
---|
[3] | 160 |
|
---|
[26] | 161 | $page->param(loginfailed => 1) if $webvar{loginfailed};
|
---|
| 162 | ##fixme: set up session init to actually *check* for session timeout
|
---|
| 163 | $page->param(timeout => 1) if $webvar{sesstimeout};
|
---|
| 164 |
|
---|
| 165 | } elsif ($webvar{page} eq 'domlist' or $webvar{page} eq 'index') {
|
---|
| 166 |
|
---|
[3] | 167 | # hmm. seeing problems in some possibly-not-so-corner cases.
|
---|
[10] | 168 | # this currently only handles "domain on", "domain off"
|
---|
[3] | 169 | if (defined($webvar{action})) {
|
---|
| 170 | domStatus($dbh,$webvar{id},$webvar{action});
|
---|
| 171 | }
|
---|
| 172 |
|
---|
[18] | 173 | $page->param(curpage => $webvar{page});
|
---|
| 174 |
|
---|
[11] | 175 | listdomains();
|
---|
[2] | 176 |
|
---|
[4] | 177 | } elsif ($webvar{page} eq 'newdomain') {
|
---|
[2] | 178 |
|
---|
[57] | 179 | # hmm. nothing to do here?
|
---|
| 180 | # - group list is filled by the same bit that fills the group list in the menu
|
---|
[2] | 181 |
|
---|
[57] | 182 | } elsif ($webvar{page} eq 'adddomain') {
|
---|
| 183 |
|
---|
| 184 | my ($code,$msg) = addDomain($dbh,$webvar{domain},$webvar{group},($webvar{makeactive} eq 'on' ? 1 : 0));
|
---|
| 185 |
|
---|
| 186 | if ($code eq 'OK') {
|
---|
| 187 | logaction($msg, $session->param("username"), $webvar{group}, "Added domain $webvar{domain}");
|
---|
| 188 | changepage(page => "reclist", id => $msg);
|
---|
| 189 | } else {
|
---|
| 190 | changepage(page => "newdomain", add_failed => 1, domain => $webvar{domain}, errmsg => $msg);
|
---|
| 191 | }
|
---|
| 192 |
|
---|
[11] | 193 | } elsif ($webvar{page} eq 'deldom') {
|
---|
| 194 |
|
---|
| 195 | $page->param(id => $webvar{id});
|
---|
| 196 | # first pass = confirm y/n (sorta)
|
---|
| 197 | if (!defined($webvar{del})) {
|
---|
| 198 | $page->param(del_getconf => 1);
|
---|
| 199 | $page->param(domain => domainName($dbh,$webvar{id}));
|
---|
| 200 | # print some neato things?
|
---|
| 201 |
|
---|
| 202 | # } else {
|
---|
| 203 | # #whether actually deleting or cancelling we redirect to the domain list, default format
|
---|
| 204 |
|
---|
| 205 | } elsif ($webvar{del} eq 'ok') {
|
---|
[57] | 206 | my $pargroup = parentID($webvar{id}, 'dom', 'group');
|
---|
[11] | 207 | my ($code,$msg) = delDomain($dbh, $webvar{id});
|
---|
| 208 | if ($code ne 'OK') {
|
---|
| 209 | # need to find failure mode
|
---|
| 210 | $page->param(del_failed => 1);
|
---|
| 211 | $page->param(errmsg => $msg);
|
---|
[22] | 212 | listdomains($curgroup);
|
---|
[11] | 213 | } else {
|
---|
[57] | 214 | ##fixme: need domain to put in log message
|
---|
| 215 | logaction($webvar{id}, $session->param("username"), $pargroup, "Deleted domain $webvar{domain}");
|
---|
| 216 | changepage(page => "domlist");
|
---|
[11] | 217 | }
|
---|
| 218 | } else {
|
---|
| 219 | # cancelled. whee!
|
---|
| 220 | changepage(page => "domlist");
|
---|
| 221 | }
|
---|
| 222 |
|
---|
[47] | 223 | } elsif ($webvar{page} eq 'reclist') {
|
---|
| 224 |
|
---|
| 225 | # Handle record list for both default records (per-group) and live domain records
|
---|
| 226 |
|
---|
| 227 | $page->param(defrec => $webvar{defrec});
|
---|
| 228 | $page->param(id => $webvar{id});
|
---|
| 229 | $page->param(curpage => $webvar{page});
|
---|
| 230 |
|
---|
| 231 | # select count(*) from (default_)?records where (group|domain)_id=?
|
---|
| 232 | my $sth = $dbh->prepare("SELECT count(*) FROM ".
|
---|
| 233 | ($webvar{defrec} eq 'y' ? 'default_' : '')."records ".
|
---|
| 234 | "WHERE ".($webvar{defrec} eq 'y' ? 'group' : 'domain')."_id=? ".
|
---|
| 235 | "AND NOT type=$reverse_typemap{SOA}");
|
---|
| 236 | $sth->execute($webvar{id});
|
---|
| 237 | my ($count) = ($sth->fetchrow_array);
|
---|
| 238 |
|
---|
| 239 | # fill the page-count and first-previous-next-last-all details
|
---|
| 240 | fill_pgcount($count,"records",domainName($dbh,$webvar{id}));
|
---|
| 241 | fill_fpnla($count); # should put some params on this sub...
|
---|
| 242 |
|
---|
| 243 | $page->param(defrec => $webvar{defrec});
|
---|
| 244 | if ($webvar{defrec} eq 'y') {
|
---|
| 245 | ##fixme: hardcoded group
|
---|
| 246 | showdomain('y',$curgroup);
|
---|
| 247 | } else {
|
---|
| 248 | showdomain('n',$webvar{id});
|
---|
| 249 | }
|
---|
| 250 |
|
---|
[13] | 251 | } elsif ($webvar{page} eq 'record') {
|
---|
[16] | 252 |
|
---|
[13] | 253 | if ($webvar{recact} eq 'new') {
|
---|
[16] | 254 |
|
---|
[15] | 255 | $page->param(todo => "Add record to");
|
---|
| 256 | $page->param(recact => "add");
|
---|
[16] | 257 | fill_rectypes();
|
---|
| 258 |
|
---|
[15] | 259 | } elsif ($webvar{recact} eq 'add') {
|
---|
| 260 |
|
---|
| 261 | my @recargs = ($dbh,$webvar{defrec},$webvar{parentid},$webvar{name},$webvar{type},$webvar{address},$webvar{ttl});
|
---|
| 262 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV}) {
|
---|
| 263 | push @recargs, $webvar{distance};
|
---|
| 264 | if ($webvar{type} == $reverse_typemap{SRV}) {
|
---|
| 265 | push @recargs, $webvar{weight};
|
---|
| 266 | push @recargs, $webvar{port};
|
---|
| 267 | }
|
---|
| 268 | }
|
---|
| 269 | my ($code,$msg) = addRec(@recargs);
|
---|
| 270 |
|
---|
| 271 | if ($code eq 'OK') {
|
---|
[55] | 272 | ##fixme: need more magic to get proper group - if domain was fiddled
|
---|
| 273 | # from search-subgroups listing, may not be "current" group
|
---|
[57] | 274 |
|
---|
| 275 | # SELECT group_id FROM domains WHERE domain_id=?;
|
---|
| 276 | # sth->execute($webvar{parentid});
|
---|
| 277 | ##log
|
---|
| 278 | if ($webvar{defrec} eq 'y') {
|
---|
| 279 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
| 280 | "Added default record '$typemap{$webvar{type}} $webvar{name} $webvar{address}', TTL $webvar{ttl}");
|
---|
| 281 | } else {
|
---|
| 282 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{parentid}, 'dom', 'group'),
|
---|
| 283 | "Added record '$typemap{$webvar{type}} $webvar{name} $webvar{address}', TTL $webvar{ttl}");
|
---|
| 284 | }
|
---|
[15] | 285 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
| 286 | } else {
|
---|
[24] | 287 |
|
---|
| 288 | $page->param(failed => 1);
|
---|
| 289 | $page->param(errmsg => $msg);
|
---|
| 290 | $page->param(wastrying => "adding");
|
---|
| 291 | $page->param(todo => "Add record to");
|
---|
| 292 | $page->param(recact => "add");
|
---|
| 293 | $page->param(parentid => $webvar{parentid});
|
---|
| 294 | $page->param(defrec => $webvar{defrec});
|
---|
| 295 | $page->param(id => $webvar{id});
|
---|
[16] | 296 | fill_recdata(); # populate the form... er, mostly.
|
---|
[15] | 297 | }
|
---|
| 298 |
|
---|
[13] | 299 | } elsif ($webvar{recact} eq 'edit') {
|
---|
[15] | 300 |
|
---|
[16] | 301 | $page->param(todo => "Update record");
|
---|
| 302 | $page->param(recact => "update");
|
---|
| 303 | $page->param(parentid => $webvar{parentid});
|
---|
[17] | 304 | $page->param(id => $webvar{id});
|
---|
[16] | 305 | $page->param(defrec => $webvar{defrec});
|
---|
[57] | 306 | ##fixme: SQL does not belong!
|
---|
[13] | 307 | my $sth = $dbh->prepare("SELECT host,type,val,distance,weight,port,ttl FROM ".
|
---|
| 308 | ($webvar{defrec} eq 'y' ? 'default_' : '')."records WHERE record_id=?");
|
---|
| 309 | $sth->execute($webvar{id});
|
---|
| 310 | my ($host,$type,$val,$distance,$weight,$port,$ttl) = $sth->fetchrow_array;
|
---|
| 311 | $page->param(name => $host);
|
---|
| 312 | $page->param(address => $val);
|
---|
| 313 | $page->param(distance => $distance);
|
---|
| 314 | $page->param(weight => $weight);
|
---|
| 315 | $page->param(port => $port);
|
---|
| 316 | $page->param(ttl => $ttl);
|
---|
[16] | 317 | fill_rectypes($type);
|
---|
| 318 |
|
---|
| 319 | } elsif ($webvar{recact} eq 'update') {
|
---|
| 320 |
|
---|
| 321 | my ($code,$msg) = updateRec($dbh,$webvar{defrec},$webvar{id},
|
---|
| 322 | $webvar{name},$webvar{type},$webvar{address},$webvar{ttl},
|
---|
| 323 | $webvar{distance},$webvar{weight},$webvar{port});
|
---|
| 324 |
|
---|
| 325 | if ($code eq 'OK') {
|
---|
[55] | 326 | ##fixme: need more magic to get proper group - if domain was fiddled
|
---|
| 327 | # from search-subgroups listing, may not be "current" group
|
---|
[57] | 328 |
|
---|
| 329 | # SELECT d.group_id FROM domains d INNER JOIN records r ON d.domain_id=r.domain_id WHERE r.record_id=?
|
---|
| 330 | # $sth->execute($webvar{id});
|
---|
| 331 | ##log
|
---|
| 332 | if ($webvar{defrec} eq 'y') {
|
---|
| 333 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
| 334 | "Updated default record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}");
|
---|
| 335 | } else {
|
---|
| 336 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{id}, 'rec', 'group'),
|
---|
| 337 | "Updated record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}");
|
---|
| 338 | }
|
---|
[17] | 339 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
[16] | 340 | } else {
|
---|
| 341 | $page->param(failed => 1);
|
---|
| 342 | $page->param(errmsg => $msg);
|
---|
| 343 | $page->param(wastrying => "updating");
|
---|
| 344 | $page->param(todo => "Update record");
|
---|
| 345 | $page->param(recact => "update");
|
---|
| 346 | $page->param(parentid => $webvar{parentid});
|
---|
| 347 | $page->param(defrec => $webvar{defrec});
|
---|
[17] | 348 | $page->param(id => $webvar{id});
|
---|
[16] | 349 | fill_recdata();
|
---|
| 350 | }
|
---|
[13] | 351 | }
|
---|
[16] | 352 |
|
---|
[13] | 353 | if ($webvar{defrec} eq 'y') {
|
---|
[20] | 354 | $page->param(dohere => "default records in group ".groupName($dbh,$webvar{parentid}));
|
---|
[13] | 355 | } else {
|
---|
[24] | 356 | $page->param(parentid => $webvar{parentid});
|
---|
| 357 | # $page->param(id => $webvar{id});
|
---|
[16] | 358 | $page->param(dohere => domainName($dbh,$webvar{parentid}));
|
---|
[13] | 359 | }
|
---|
| 360 |
|
---|
[2] | 361 | } elsif ($webvar{page} eq 'delrec') {
|
---|
| 362 |
|
---|
| 363 | $page->param(id => $webvar{id});
|
---|
| 364 | $page->param(defrec => $webvar{defrec});
|
---|
[39] | 365 | $page->param(parentid => $webvar{parentid});
|
---|
[2] | 366 | # first pass = confirm y/n (sorta)
|
---|
| 367 | if (!defined($webvar{del})) {
|
---|
| 368 | $page->param(del_getconf => 1);
|
---|
[3] | 369 | my %rec = getRecLine($dbh,$webvar{defrec},$webvar{id});
|
---|
| 370 | $page->param(host => $rec{host});
|
---|
| 371 | $page->param(ftype => $typemap{$rec{type}});
|
---|
| 372 | $page->param(recval => $rec{val});
|
---|
[39] | 373 | } elsif ($webvar{del} eq 'ok') {
|
---|
[57] | 374 | # get groupid of deleted record before we try to delete it
|
---|
| 375 | my $pargrp = parentID($webvar{id}, 'rec', 'group', $webvar{defrec});
|
---|
[3] | 376 | my ($code,$msg) = delRec($dbh,$webvar{defrec},$webvar{id});
|
---|
| 377 | if ($code ne 'OK') {
|
---|
| 378 | ## need to find failure mode
|
---|
[57] | 379 | #logaction(
|
---|
[3] | 380 | $page->param(del_failed => 1);
|
---|
| 381 | $page->param(errmsg => $msg);
|
---|
[39] | 382 | showdomain($webvar{defrec}, $webvar{parentid});
|
---|
| 383 | } else {
|
---|
[57] | 384 | ##log
|
---|
[39] | 385 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
[3] | 386 | }
|
---|
[39] | 387 | } else {
|
---|
| 388 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
[2] | 389 | }
|
---|
| 390 |
|
---|
| 391 | } elsif ($webvar{page} eq 'editsoa') {
|
---|
| 392 |
|
---|
[39] | 393 | fillsoa($webvar{defrec},$webvar{id});
|
---|
[2] | 394 |
|
---|
| 395 | } elsif ($webvar{page} eq 'updatesoa') {
|
---|
| 396 |
|
---|
| 397 | my $sth;
|
---|
| 398 | my $sql = '';
|
---|
| 399 | # no domain ID, so we're editing the default SOA for a group (we don't care which one here)
|
---|
| 400 | # plus a bit of magic to update the appropriate table
|
---|
[39] | 401 | $sql = "update ".($webvar{defrec} eq 'y' ? "default_records" : "records").
|
---|
[2] | 402 | " set host='$webvar{prins}:$webvar{contact}',".
|
---|
| 403 | " val='$webvar{refresh}:$webvar{retry}:$webvar{expire}:$webvar{minttl}',".
|
---|
| 404 | " ttl=$webvar{ttl} where record_id=$webvar{recid}";
|
---|
| 405 | $sth = $dbh->prepare($sql);
|
---|
| 406 | $sth->execute;
|
---|
| 407 |
|
---|
| 408 | if ($sth->err) {
|
---|
| 409 | $page->param(update_failed => 1);
|
---|
| 410 | $page->param(msg => $DBI::errstr);
|
---|
[39] | 411 | fillsoa($webvar{defrec},$webvar{id});
|
---|
[2] | 412 | } else {
|
---|
[57] | 413 |
|
---|
| 414 | ##fixme! need to set group ID properly here
|
---|
| 415 | # SELECT group_id FROM domains WHERE domain_id=?
|
---|
| 416 | # $sth->execute($webvar{id});
|
---|
| 417 | ##log
|
---|
[55] | 418 | logaction(0, $session->param("username"), $webvar{group},
|
---|
| 419 | "Updated SOA (ns $webvar{prins}, contact $webvar{contact}, refresh $webvar{refresh},".
|
---|
| 420 | " retry $webvar{retry}, expire $webvar{expire}, minTTL $webvar{minttl}, TTL $webvar{ttl}");
|
---|
[39] | 421 | changepage(page => "reclist", id => $webvar{id}, defrec => $webvar{defrec});
|
---|
[57] | 422 | # $page->param(update_failed => 0);
|
---|
[39] | 423 | # showdomain('y',1);
|
---|
[2] | 424 | }
|
---|
| 425 |
|
---|
[17] | 426 | } elsif ($webvar{page} eq 'grpman') {
|
---|
[2] | 427 |
|
---|
[22] | 428 | listgroups();
|
---|
[18] | 429 | $page->param(curpage => $webvar{page});
|
---|
| 430 |
|
---|
[17] | 431 | } elsif ($webvar{page} eq 'newgrp') {
|
---|
[20] | 432 |
|
---|
[18] | 433 | # do.. uhh.. stuff.. if we have no webvar{action}
|
---|
| 434 | if ($webvar{action} && $webvar{action} eq 'add') {
|
---|
| 435 | # not gonna provide the 4th param: template-or-clone flag, just yet
|
---|
| 436 | my ($code,$msg) = addGroup($dbh, $webvar{newgroup}, $webvar{pargroup});
|
---|
[57] | 437 | if ($code eq 'OK') {
|
---|
[55] | 438 | logaction(0, $session->param("username"), $webvar{pargroup}, "Added group $webvar{newgroup}");
|
---|
| 439 | changepage(page => "grpman");
|
---|
| 440 | }
|
---|
[18] | 441 | $page->param(add_failed => 1);
|
---|
| 442 | $page->param(errmsg => $msg);
|
---|
| 443 | $page->param(newgroup => $webvar{newgroup});
|
---|
[20] | 444 | fill_grouplist('pargroup',$webvar{pargroup});
|
---|
[19] | 445 | } else {
|
---|
| 446 | # $page->param
|
---|
[20] | 447 | fill_grouplist('pargroup',$curgroup);
|
---|
[19] | 448 |
|
---|
[18] | 449 | }
|
---|
[20] | 450 |
|
---|
[22] | 451 | } elsif ($webvar{page} eq 'delgrp') {
|
---|
[20] | 452 |
|
---|
| 453 | $page->param(id => $webvar{id});
|
---|
| 454 | # first pass = confirm y/n (sorta)
|
---|
| 455 | if (!defined($webvar{del})) {
|
---|
| 456 | $page->param(del_getconf => 1);
|
---|
[23] | 457 | # $page->param(groupname => groupName($dbh,$webvar{id}));
|
---|
[20] | 458 | # print some neato things?
|
---|
| 459 |
|
---|
| 460 | # } else {
|
---|
| 461 | # #whether actually deleting or cancelling we redirect to the group list, default format
|
---|
| 462 |
|
---|
| 463 | } elsif ($webvar{del} eq 'ok') {
|
---|
[57] | 464 | my $deleteme = groupName($dbh,$webvar{id}); # get this before we delete it...
|
---|
[20] | 465 | my ($code,$msg) = delGroup($dbh, $webvar{id});
|
---|
| 466 | if ($code ne 'OK') {
|
---|
| 467 | # need to find failure mode
|
---|
| 468 | $page->param(del_failed => 1);
|
---|
| 469 | $page->param(errmsg => $msg);
|
---|
[22] | 470 | $page->param(curpage => $webvar{page});
|
---|
| 471 | listgroups();
|
---|
[20] | 472 | } else {
|
---|
[57] | 473 | ##fixme: need to clean up log when deleting a major container
|
---|
| 474 | logaction(0, $session->param("username"), $webvar{curgroup}, "Deleted group $deleteme");
|
---|
[20] | 475 | # success. go back to the domain list, do not pass "GO"
|
---|
| 476 | changepage(page => "grpman");
|
---|
| 477 | }
|
---|
| 478 | } else {
|
---|
| 479 | # cancelled. whee!
|
---|
| 480 | changepage(page => "grpman");
|
---|
| 481 | }
|
---|
[23] | 482 | $page->param(delgroupname => groupName($dbh, $webvar{id}));
|
---|
[24] | 483 |
|
---|
| 484 | } elsif ($webvar{page} eq 'useradmin') {
|
---|
| 485 |
|
---|
[51] | 486 | if (defined($webvar{action})) {
|
---|
| 487 | userStatus($dbh,$webvar{id},$webvar{action});
|
---|
| 488 | }
|
---|
| 489 |
|
---|
[24] | 490 | $page->param(curpage => $webvar{page});
|
---|
| 491 |
|
---|
[51] | 492 | list_users();
|
---|
| 493 |
|
---|
[24] | 494 | } elsif ($webvar{page} eq 'newuser') {
|
---|
| 495 |
|
---|
| 496 | # foo?
|
---|
| 497 | fill_actypelist();
|
---|
| 498 |
|
---|
| 499 | } elsif ($webvar{page} eq 'adduser') {
|
---|
| 500 |
|
---|
| 501 | my ($code,$msg);
|
---|
| 502 |
|
---|
| 503 | if ($webvar{pass1} ne $webvar{pass2}) {
|
---|
| 504 | $code = 'FAIL';
|
---|
| 505 | $msg = "Passwords don't match";
|
---|
| 506 | } else {
|
---|
[38] | 507 | ($code,$msg) = addUser($dbh,$webvar{uname}, $webvar{group}, $webvar{pass1},
|
---|
[25] | 508 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype},
|
---|
| 509 | $webvar{fname}, $webvar{lname}, $webvar{phone});
|
---|
[24] | 510 | }
|
---|
| 511 |
|
---|
| 512 | # hokay, a bit of magic to decide which page we hit.
|
---|
| 513 | if ($code eq 'OK') {
|
---|
[57] | 514 | ##log
|
---|
[55] | 515 | logaction(0, $session->param("username"), $webvar{group},
|
---|
| 516 | "Added user $webvar{uname} ($webvar{fname} $webvar{lname})");
|
---|
[24] | 517 | changepage(page => "useradmin");
|
---|
| 518 | } else {
|
---|
[38] | 519 | # oddity - apparently, xhtml 1.0 strict swallows username as an HTML::Template var. O_o
|
---|
[24] | 520 | $page->param(add_failed => 1);
|
---|
[38] | 521 | $page->param(uname => $webvar{uname});
|
---|
[24] | 522 | $page->param(fname => $webvar{fname});
|
---|
| 523 | $page->param(lname => $webvar{lname});
|
---|
| 524 | $page->param(pass1 => $webvar{pass1});
|
---|
| 525 | $page->param(pass2 => $webvar{pass2});
|
---|
| 526 | $page->param(errmsg => $msg);
|
---|
| 527 | fill_actypelist();
|
---|
| 528 | }
|
---|
| 529 |
|
---|
[38] | 530 | # $page->param(add_failed => 1);
|
---|
[25] | 531 |
|
---|
| 532 | } elsif ($webvar{page} eq 'deluser') {
|
---|
| 533 |
|
---|
| 534 | $page->param(id => $webvar{id});
|
---|
| 535 | # first pass = confirm y/n (sorta)
|
---|
| 536 | if (!defined($webvar{del})) {
|
---|
| 537 | $page->param(del_getconf => 1);
|
---|
| 538 | $page->param(user => userFullName($dbh,$webvar{id}));
|
---|
| 539 | } elsif ($webvar{del} eq 'ok') {
|
---|
[57] | 540 | ##fixme: find group id user is in (for logging) *before* we delete the user
|
---|
[25] | 541 | my ($code,$msg) = delUser($dbh, $webvar{id});
|
---|
| 542 | if ($code ne 'OK') {
|
---|
| 543 | # need to find failure mode
|
---|
| 544 | $page->param(del_failed => 1);
|
---|
| 545 | $page->param(errmsg => $msg);
|
---|
| 546 | list_users($curgroup);
|
---|
| 547 | } else {
|
---|
| 548 | # success. go back to the domain list, do not pass "GO"
|
---|
[57] | 549 | ##log
|
---|
| 550 | logaction(0, $session->param("username"), $webvar{group}, "Added domain $webvar{domain}");
|
---|
[25] | 551 | changepage(page => "useradmin");
|
---|
| 552 | }
|
---|
| 553 | } else {
|
---|
| 554 | # cancelled. whee!
|
---|
| 555 | changepage(page => "useradmin");
|
---|
| 556 | }
|
---|
| 557 |
|
---|
[30] | 558 | } elsif ($webvar{page} eq 'dnsq') {
|
---|
| 559 |
|
---|
| 560 | $page->param(qfor => $webvar{qfor}) if $webvar{qfor};
|
---|
[31] | 561 | fill_rectypes($webvar{type} ? $webvar{type} : '', 1);
|
---|
| 562 | $page->param(nrecurse => $webvar{nrecurse}) if $webvar{nrecurse};
|
---|
[30] | 563 | $page->param(resolver => $webvar{resolver}) if $webvar{resolver};
|
---|
| 564 |
|
---|
| 565 | if ($webvar{qfor}) {
|
---|
| 566 | my $resolv = Net::DNS::Resolver->new;
|
---|
[31] | 567 | $resolv->tcp_timeout(5); # make me adjustable!
|
---|
| 568 | $resolv->udp_timeout(5); # make me adjustable!
|
---|
| 569 | $resolv->recurse(0) if $webvar{nrecurse};
|
---|
| 570 | $resolv->nameservers($webvar{resolver}) if $webvar{resolver};
|
---|
[30] | 571 | my $query = $resolv->query($webvar{qfor}, $typemap{$webvar{type}});
|
---|
| 572 | if ($query) {
|
---|
| 573 |
|
---|
| 574 | $page->param(showresults => 1);
|
---|
| 575 |
|
---|
| 576 | my @answer;
|
---|
| 577 | foreach my $rr ($query->answer) {
|
---|
| 578 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 579 | my %row;
|
---|
| 580 | my ($host,$ttl,$class,$type,$data) =
|
---|
[31] | 581 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/s);
|
---|
[30] | 582 | $row{host} = $host;
|
---|
| 583 | $row{ftype} = $type;
|
---|
[31] | 584 | $row{rdata} = ($type eq 'SOA' ? "<pre>$data</pre>" : $data);
|
---|
[30] | 585 | push @answer, \%row;
|
---|
| 586 | }
|
---|
| 587 | $page->param(answer => \@answer);
|
---|
| 588 |
|
---|
| 589 | my @additional;
|
---|
| 590 | foreach my $rr ($query->additional) {
|
---|
| 591 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 592 | my %row;
|
---|
| 593 | my ($host,$ttl,$class,$type,$data) =
|
---|
| 594 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/);
|
---|
| 595 | $row{host} = $host;
|
---|
| 596 | $row{ftype} = $type;
|
---|
| 597 | $row{rdata} = $data;
|
---|
| 598 | push @additional, \%row;
|
---|
| 599 | }
|
---|
| 600 | $page->param(additional => \@additional);
|
---|
| 601 |
|
---|
| 602 | my @authority;
|
---|
| 603 | foreach my $rr ($query->authority) {
|
---|
| 604 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 605 | my %row;
|
---|
| 606 | my ($host,$ttl,$class,$type,$data) =
|
---|
| 607 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/);
|
---|
| 608 | $row{host} = $host;
|
---|
| 609 | $row{ftype} = $type;
|
---|
| 610 | $row{rdata} = $data;
|
---|
| 611 | push @authority, \%row;
|
---|
| 612 | }
|
---|
| 613 | $page->param(authority => \@authority);
|
---|
| 614 |
|
---|
| 615 | $page->param(usedresolver => $resolv->answerfrom);
|
---|
| 616 | $page->param(frtype => $typemap{$webvar{type}});
|
---|
| 617 |
|
---|
| 618 | } else {
|
---|
| 619 | $page->param(errmsg => $resolv->errorstring);
|
---|
| 620 | }
|
---|
| 621 | }
|
---|
| 622 | ## done DNS query
|
---|
| 623 |
|
---|
[31] | 624 | } elsif ($webvar{page} eq 'axfr') {
|
---|
| 625 |
|
---|
| 626 | # don't need this while we've got the dropdown in the menu. hmm.
|
---|
| 627 | #fill_grouplist;
|
---|
| 628 |
|
---|
| 629 | $page->param(ifrom => $webvar{ifrom}) if $webvar{ifrom};
|
---|
| 630 | $page->param(rwsoa => $webvar{rwsoa}) if $webvar{rwsoa};
|
---|
| 631 | $page->param(rwns => $webvar{rwns}) if $webvar{rwns};
|
---|
[37] | 632 | $page->param(dominactive => 1) if (!$webvar{domactive} && $webvar{doit}); # eww.
|
---|
[31] | 633 | $page->param(importdoms => $webvar{importdoms}) if $webvar{importdoms};
|
---|
[33] | 634 |
|
---|
| 635 | ##fixme: check group too?
|
---|
| 636 | if ($webvar{doit} eq 'y' && !$webvar{ifrom}) {
|
---|
| 637 | $page->param(errmsg => "Need to set host to import from");
|
---|
| 638 | } elsif ($webvar{doit} eq 'y' && !$webvar{importdoms}) {
|
---|
| 639 | $page->param(errmsg => "Need domains to import");
|
---|
| 640 | } else {
|
---|
| 641 | my @domlist = split /\s+/, $webvar{importdoms};
|
---|
| 642 | my @results;
|
---|
| 643 | my $rnum = 0;
|
---|
| 644 | foreach my $domain (@domlist) {
|
---|
[34] | 645 | my %row;
|
---|
| 646 | my ($code,$msg) = importAXFR($dbh, $webvar{ifrom}, $domain, $webvar{group},
|
---|
| 647 | $webvar{domstatus}, $webvar{rwsoa}, $webvar{rwns});
|
---|
[35] | 648 | $row{domok} = $msg if $code eq 'OK';
|
---|
| 649 | if ($code eq 'WARN') {
|
---|
| 650 | $msg =~ s|\n|<br />|g;
|
---|
| 651 | $row{domwarn} = $msg;
|
---|
| 652 | }
|
---|
[37] | 653 | if ($code eq 'FAIL') {
|
---|
| 654 | $msg =~ s|\n|<br />|g;
|
---|
| 655 | $row{domerr} = $msg;
|
---|
| 656 | }
|
---|
[33] | 657 | # do stuff! DNSDB::importAXFR($webvar{ifrom}, $webvar{rwsoa}, $webvar{rwns}, $domain, <flags>)
|
---|
| 658 | $row{domain} = $domain;
|
---|
| 659 | # $row{row} = $rnum++;
|
---|
| 660 | push @results, \%row;
|
---|
| 661 | }
|
---|
| 662 | $page->param(axfrresults => \@results);
|
---|
| 663 | }
|
---|
| 664 |
|
---|
[48] | 665 | } elsif ($webvar{page} eq 'whoisq') {
|
---|
[47] | 666 |
|
---|
[48] | 667 | if ($webvar{qfor}) {
|
---|
| 668 | use Net::Whois::Raw;
|
---|
| 669 | use Text::Wrap;
|
---|
| 670 |
|
---|
| 671 | # caching useful?
|
---|
| 672 | #$Net::Whois::Raw::CACHE_DIR = "/var/spool/pwhois/";
|
---|
| 673 | #$Net::Whois::Raw::CACHE_TIME = 60;
|
---|
| 674 |
|
---|
| 675 | my ($dominfo, $whois_server) = whois($webvar{qfor});
|
---|
| 676 | ##fixme: if we're given an IP, try rwhois as well as whois so we get the real final data
|
---|
| 677 |
|
---|
| 678 | # le sigh. idjits spit out data without linefeeds...
|
---|
| 679 | $Text::Wrap::columns = 88;
|
---|
| 680 |
|
---|
| 681 | # &%$@%@# high-bit crap. We should probably find a way to properly recode these instead of one-by-one.
|
---|
| 682 | # Mainly an XHTML validation thing.
|
---|
| 683 | $dominfo =~ s/\xa9/\©/g;
|
---|
| 684 | $dominfo =~ s/\xae/\®/g;
|
---|
| 685 |
|
---|
| 686 | $page->param(qfor => $webvar{qfor});
|
---|
| 687 | $page->param(dominfo => wrap('','',$dominfo));
|
---|
| 688 | $page->param(whois_server => $whois_server);
|
---|
| 689 | } else {
|
---|
| 690 | $page->param(errmsg => "Missing host or domain to query in WHOIS") if $webvar{askaway};
|
---|
| 691 | }
|
---|
| 692 |
|
---|
[47] | 693 | } elsif ($webvar{page} eq 'log') {
|
---|
| 694 |
|
---|
| 695 | ##fixme put in some real log-munching stuff
|
---|
| 696 | ##fixme need to add bits to *create* log entries...
|
---|
| 697 | my $sth = $dbh->prepare("SELECT * FROM log");
|
---|
| 698 | $sth->execute;
|
---|
| 699 | my @logbits;
|
---|
| 700 | while (my @data = $sth->fetchrow_array) {
|
---|
| 701 | my %row;
|
---|
| 702 | # (1,1,1,'test@test','Test','frobbed the whatsit',now());
|
---|
| 703 | $row{userfname} = $data[4];
|
---|
| 704 | $row{userid} = $data[1];
|
---|
| 705 | $row{useremail} = $data[3];
|
---|
| 706 | $row{logentry} = $data[5];
|
---|
| 707 | $row{logtime} = $data[6];
|
---|
| 708 | push @logbits, \%row;
|
---|
| 709 | }
|
---|
| 710 | $page->param(logentries => \@logbits);
|
---|
| 711 |
|
---|
[2] | 712 | }
|
---|
| 713 |
|
---|
| 714 |
|
---|
[17] | 715 | # start output here so we can redirect pages.
|
---|
[7] | 716 | print "Content-type: text/html\n\n", $header->output;
|
---|
| 717 |
|
---|
[20] | 718 | ##common bits
|
---|
[17] | 719 | if ($webvar{page} ne 'login') {
|
---|
[30] | 720 | $page->param(username => $session->param("username"));
|
---|
| 721 |
|
---|
[20] | 722 | $page->param(group => $curgroup);
|
---|
| 723 | $page->param(groupname => groupName($dbh,$curgroup));
|
---|
[43] | 724 | $page->param(logingrp => groupName($dbh,$logingroup));
|
---|
[20] | 725 |
|
---|
[24] | 726 | # group tree. should go elsewhere, probably
|
---|
| 727 | my $tmpgrplist = fill_grptree($logingroup,$curgroup);
|
---|
| 728 | $page->param(grptree => $tmpgrplist);
|
---|
| 729 |
|
---|
[42] | 730 | $page->param(inlogingrp => $curgroup == $logingroup);
|
---|
| 731 |
|
---|
[20] | 732 | # stuff for menu group change. nb: this is icky.
|
---|
| 733 | fill_grouplist("grouplist");
|
---|
[53] | 734 |
|
---|
| 735 | ## set up "URL to self"
|
---|
[38] | 736 | # @#$%@%@#% XHTML - & in a URL must be escaped. >:(
|
---|
| 737 | my $tmp_ruri = $ENV{REQUEST_URI};
|
---|
| 738 | $tmp_ruri =~ s/\&([a-z])/\&\;$1/g;
|
---|
[53] | 739 |
|
---|
[39] | 740 | # le sigh. and we need to strip any previous action
|
---|
| 741 | $tmp_ruri =~ s/\&action=[^&]+//g;
|
---|
[52] | 742 |
|
---|
[53] | 743 | # and search filter options. these get stored in the session, but discarded
|
---|
| 744 | # as soon as you switch to a different page.
|
---|
| 745 | ##fixme: think about retaining these on a per-page basis, as well as offset; same as the sort-order bits
|
---|
| 746 | no warnings qw(uninitialized);
|
---|
| 747 | $tmp_ruri =~ s/\&startwith=[a-z09-]*(\&)?/$1/g;
|
---|
| 748 | $tmp_ruri =~ s/\&searchsubs=[a-z09-]*(\&)?/$1/g;
|
---|
| 749 | $tmp_ruri =~ s/\&filter=[a-z09-]*(\&)?/$1/g;
|
---|
| 750 | use warnings qw(uninitialized);
|
---|
[52] | 751 |
|
---|
[53] | 752 | # fill in the URL-to-self
|
---|
[38] | 753 | $page->param(whereami => $tmp_ruri);
|
---|
[17] | 754 | }
|
---|
[13] | 755 |
|
---|
[24] | 756 | foreach (@debugbits) { print; }
|
---|
| 757 |
|
---|
[2] | 758 | # spit it out
|
---|
| 759 | print $page->output;
|
---|
| 760 |
|
---|
[38] | 761 | if ($debugenv) {
|
---|
| 762 | print "<div id=\"debug\">webvar keys: <pre>\n";
|
---|
| 763 | foreach my $key (keys %webvar) {
|
---|
| 764 | print "key: $key\tval: $webvar{$key}\n";
|
---|
| 765 | }
|
---|
| 766 | print "</pre>\nsession:\n<pre>\n";
|
---|
| 767 | my $sesdata = $session->dataref();
|
---|
| 768 | foreach my $key (keys %$sesdata) {
|
---|
| 769 | print "key: $key\tval: ".$sesdata->{$key}."\n";
|
---|
| 770 | }
|
---|
| 771 | print "</pre>\nENV:\n<pre>\n";
|
---|
| 772 | foreach my $key (keys %ENV) {
|
---|
| 773 | print "key: $key\tval: $ENV{$key}\n";
|
---|
| 774 | }
|
---|
| 775 | print "</pre></div>\n";
|
---|
[2] | 776 | }
|
---|
| 777 |
|
---|
| 778 | print $footer->output;
|
---|
| 779 |
|
---|
[18] | 780 | # as per the docs, Just In Case
|
---|
| 781 | $session->flush();
|
---|
[2] | 782 |
|
---|
| 783 | exit 0;
|
---|
| 784 |
|
---|
| 785 |
|
---|
[24] | 786 | sub fill_grptree {
|
---|
| 787 | my $root = shift;
|
---|
| 788 | my $cur = shift;
|
---|
| 789 |
|
---|
| 790 | my @childlist;
|
---|
| 791 |
|
---|
| 792 | my $grptree = HTML::Template->new(filename => 'templates/grptree.tmpl');
|
---|
| 793 | getChildren($dbh,$root,\@childlist,'immediate');
|
---|
| 794 | return if $#childlist == -1;
|
---|
| 795 | my @grouplist;
|
---|
| 796 | foreach (@childlist) {
|
---|
| 797 | my %row;
|
---|
| 798 | $row{grpname} = groupName($dbh,$_);
|
---|
| 799 | $row{grpname} = "<b>$row{grpname}</b>" if $_ == $cur;
|
---|
| 800 | $row{subs} = fill_grptree($_,$cur);
|
---|
| 801 | push @grouplist, \%row;
|
---|
| 802 | }
|
---|
| 803 | $grptree->param(treelvl => \@grouplist);
|
---|
| 804 | return $grptree->output;
|
---|
| 805 | }
|
---|
| 806 |
|
---|
[11] | 807 | sub changepage {
|
---|
| 808 | my %params = @_; # think this works the way I want...
|
---|
| 809 |
|
---|
| 810 | # handle user check
|
---|
| 811 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}?sid=$sid";
|
---|
| 812 | foreach (keys %params) {
|
---|
| 813 | $newurl .= "&$_=$params{$_}";
|
---|
| 814 | }
|
---|
| 815 |
|
---|
[30] | 816 | # Just In Case
|
---|
| 817 | $session->flush();
|
---|
| 818 |
|
---|
[11] | 819 | print "Status: 302\nLocation: $newurl\n\n";
|
---|
| 820 | exit;
|
---|
| 821 | } # end changepage
|
---|
| 822 |
|
---|
[2] | 823 | sub fillsoa {
|
---|
| 824 | my $def = shift;
|
---|
| 825 | my $id = shift;
|
---|
[39] | 826 | my $domname = ($def eq 'y' ? '' : "DOMAIN");
|
---|
[2] | 827 |
|
---|
[39] | 828 | $page->param(defrec => $def);
|
---|
[2] | 829 |
|
---|
[39] | 830 | # i had a good reason to do this when I wrote it...
|
---|
| 831 | # $page->param(domain => $domname);
|
---|
| 832 | # $page->param(group => $DNSDB::group);
|
---|
| 833 | $page->param(isgrp => 1) if $def eq 'y';
|
---|
| 834 | $page->param(parent => ($def eq 'y' ? groupName($dbh, $DNSDB::group) : domainName($dbh, $id)) );
|
---|
[2] | 835 |
|
---|
| 836 | # defaults
|
---|
[17] | 837 | $page->param(defcontact => $DNSDB::def{contact});
|
---|
| 838 | $page->param(defns => $DNSDB::def{prins});
|
---|
| 839 | $page->param(defsoattl => $DNSDB::def{soattl});
|
---|
| 840 | $page->param(defrefresh => $DNSDB::def{refresh});
|
---|
| 841 | $page->param(defretry => $DNSDB::def{retry});
|
---|
| 842 | $page->param(defexpire => $DNSDB::def{expire});
|
---|
| 843 | $page->param(defminttl => $DNSDB::def{minttl});
|
---|
[2] | 844 |
|
---|
| 845 | # there are probably better ways to do this. TMTOWTDI.
|
---|
| 846 | my %soa = getSOA($dbh,$def,$id);
|
---|
| 847 |
|
---|
[39] | 848 | $page->param(id => $id);
|
---|
[2] | 849 | $page->param(recid => $soa{recid});
|
---|
| 850 | $page->param(prins => ($soa{prins} ? $soa{prins} : $DNSDB::def{prins}));
|
---|
| 851 | $page->param(contact => ($soa{contact} ? $soa{contact} : $DNSDB::def{contact}));
|
---|
| 852 | $page->param(refresh => ($soa{refresh} ? $soa{refresh} : $DNSDB::def{refresh}));
|
---|
| 853 | $page->param(retry => ($soa{retry} ? $soa{retry} : $DNSDB::def{retry}));
|
---|
| 854 | $page->param(expire => ($soa{expire} ? $soa{expire} : $DNSDB::def{expire}));
|
---|
| 855 | $page->param(minttl => ($soa{minttl} ? $soa{minttl} : $DNSDB::def{minttl}));
|
---|
| 856 | $page->param(ttl => ($soa{ttl} ? $soa{ttl} : $DNSDB::def{soattl}));
|
---|
| 857 | }
|
---|
| 858 |
|
---|
| 859 | sub showdomain {
|
---|
| 860 | my $def = shift;
|
---|
| 861 | my $id = shift;
|
---|
| 862 |
|
---|
| 863 | # get the SOA first
|
---|
| 864 | my %soa = getSOA($dbh,$def,$id);
|
---|
| 865 |
|
---|
| 866 | $page->param(recid => $soa{recid});
|
---|
| 867 | $page->param(contact => $soa{contact});
|
---|
| 868 | $page->param(prins => $soa{prins});
|
---|
| 869 | $page->param(refresh => $soa{refresh});
|
---|
| 870 | $page->param(retry => $soa{retry});
|
---|
| 871 | $page->param(expire => $soa{expire});
|
---|
| 872 | $page->param(minttl => $soa{minttl});
|
---|
| 873 | $page->param(ttl => $soa{ttl});
|
---|
| 874 |
|
---|
| 875 | # my @foo2 = getDomRecs($dbh,'def',1);
|
---|
[4] | 876 | my $foo2 = getDomRecs($dbh,$def,$id,$perpage,$webvar{offset});
|
---|
[2] | 877 |
|
---|
| 878 | my $row = 0;
|
---|
| 879 | foreach my $rec (@$foo2) {
|
---|
| 880 | $rec->{type} = $typemap{$rec->{type}};
|
---|
| 881 | $rec->{row} = $row % 2;
|
---|
| 882 | $rec->{defrec} = $webvar{defrec};
|
---|
| 883 | $rec->{sid} = $webvar{sid};
|
---|
[13] | 884 | $rec->{id} = $id;
|
---|
[23] | 885 | $rec->{distance} = 'n/a' unless ($rec->{type} eq 'MX' || $rec->{type} eq 'SRV');
|
---|
| 886 | $rec->{weight} = 'n/a' unless ($rec->{type} eq 'SRV');
|
---|
| 887 | $rec->{port} = 'n/a' unless ($rec->{type} eq 'SRV');
|
---|
[2] | 888 | $row++;
|
---|
| 889 | }
|
---|
| 890 | $page->param(reclist => $foo2);
|
---|
| 891 | }
|
---|
| 892 |
|
---|
[16] | 893 | # fill in record type list on add/update/edit record template
|
---|
| 894 | sub fill_rectypes {
|
---|
[13] | 895 | my $type = shift || $reverse_typemap{A};
|
---|
[31] | 896 | my $soaflag = shift || 0;
|
---|
[13] | 897 |
|
---|
[17] | 898 | my $sth = $dbh->prepare("SELECT val,name FROM rectypes WHERE stdflag=1 ORDER BY listorder");
|
---|
[2] | 899 | $sth->execute;
|
---|
| 900 | my @typelist;
|
---|
| 901 | while (my ($rval,$rname) = $sth->fetchrow_array()) {
|
---|
| 902 | my %row = ( recval => $rval, recname => $rname );
|
---|
[13] | 903 | $row{tselect} = 1 if $rval == $type;
|
---|
[2] | 904 | push @typelist, \%row;
|
---|
| 905 | }
|
---|
[31] | 906 | if ($soaflag) {
|
---|
| 907 | my %row = ( recval => $reverse_typemap{SOA}, recname => 'SOA' );
|
---|
| 908 | $row{tselect} = 1 if $reverse_typemap{SOA} == $type;
|
---|
| 909 | push @typelist, \%row;
|
---|
| 910 | }
|
---|
[2] | 911 | $page->param(typelist => \@typelist);
|
---|
[31] | 912 | } # fill_rectypes
|
---|
[16] | 913 |
|
---|
| 914 | sub fill_recdata {
|
---|
| 915 | fill_rectypes($webvar{type});
|
---|
| 916 |
|
---|
| 917 | $page->param(name => $webvar{name});
|
---|
| 918 | $page->param(address => $webvar{address});
|
---|
| 919 | $page->param(distance => $webvar{distance})
|
---|
| 920 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV});
|
---|
| 921 | $page->param(weight => $webvar{weight}) if $webvar{type} == $reverse_typemap{SRV};
|
---|
| 922 | $page->param(port => $webvar{port}) if $webvar{type} == $reverse_typemap{SRV};
|
---|
[2] | 923 | $page->param(ttl => ($webvar{ttl} ? $webvar{ttl} : $DNSDB::def{minttl}));
|
---|
| 924 | }
|
---|
[7] | 925 |
|
---|
[24] | 926 | sub fill_actypelist {
|
---|
| 927 | my @actypes;
|
---|
| 928 |
|
---|
| 929 | my %row1 = (actypeval => 'u', actypename => 'user');
|
---|
| 930 | $row1{typesel} = 1 if $webvar{accttype} eq 'u';
|
---|
| 931 | push @actypes, \%row1;
|
---|
| 932 |
|
---|
| 933 | my %row2 = (actypeval => 'S', actypename => 'superuser');
|
---|
| 934 | $row2{typesel} = 1 if $webvar{accttype} eq 'S';
|
---|
| 935 | push @actypes, \%row2;
|
---|
| 936 |
|
---|
| 937 | $page->param(actypelist => \@actypes);
|
---|
| 938 | }
|
---|
| 939 |
|
---|
[7] | 940 | sub fill_fpnla {
|
---|
| 941 | my $count = shift;
|
---|
| 942 | ##fixme
|
---|
| 943 | if ($offset eq 'all') {
|
---|
[41] | 944 | # uhm....
|
---|
[7] | 945 | } else {
|
---|
| 946 | # all these bits only have sensible behaviour if offset is numeric. err, probably.
|
---|
| 947 | if ($count > $perpage) {
|
---|
| 948 | # if there are more results than the default, always show the "all" link
|
---|
| 949 | $page->param(navall => 1);
|
---|
| 950 |
|
---|
| 951 | if ($offset > 0) {
|
---|
| 952 | $page->param(navfirst => 1);
|
---|
| 953 | $page->param(navprev => 1);
|
---|
| 954 | $page->param(prevoffs => $offset-1);
|
---|
| 955 | }
|
---|
| 956 |
|
---|
| 957 | # show "next" and "last" links if we're not on the last page of results
|
---|
| 958 | if ( (($offset+1) * $perpage - $count) < 0 ) {
|
---|
| 959 | $page->param(navnext => 1);
|
---|
| 960 | $page->param(nextoffs => $offset+1);
|
---|
| 961 | $page->param(navlast => 1);
|
---|
[8] | 962 | $page->param(lastoffs => int (($count-1)/$perpage));
|
---|
[7] | 963 | }
|
---|
| 964 | }
|
---|
| 965 | }
|
---|
[10] | 966 | } # end fill_fpnla()
|
---|
| 967 |
|
---|
[12] | 968 | sub fill_pgcount {
|
---|
| 969 | my $pgcount = shift;
|
---|
| 970 | my $pgtype = shift;
|
---|
| 971 | my $parent = shift;
|
---|
| 972 |
|
---|
| 973 | $page->param(ntot => $pgcount);
|
---|
| 974 | $page->param(nfirst => (($offset eq 'all' ? 0 : $offset)*$perpage+1));
|
---|
| 975 | $page->param(npglast => ($offset eq 'all' ? $pgcount :
|
---|
| 976 | ( (($offset+1)*$perpage) > $pgcount ? $pgcount : (($offset+1)*$perpage) )
|
---|
| 977 | ));
|
---|
| 978 | $page->param(pgtype => $pgtype);
|
---|
| 979 | $page->param(parent => $parent);
|
---|
| 980 | } # end fill_pgcount()
|
---|
| 981 |
|
---|
[11] | 982 | sub listdomains {
|
---|
[41] | 983 |
|
---|
[53] | 984 | ##fixme: $logingroup or $curgroup?
|
---|
[52] | 985 | my @childgroups;
|
---|
[57] | 986 | #getChildren($dbh, $curgroup, \@childgroups, 'all') if $searchsubs;
|
---|
[52] | 987 | my $childlist = join(',',@childgroups);
|
---|
| 988 |
|
---|
[57] | 989 | my $sql = "SELECT count(*) FROM domains WHERE group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[53] | 990 | ($startwith ? " AND domain ~* '^[$startwith]'" : '').
|
---|
| 991 | ($filter ? " AND domain ~* '$filter'" : '');
|
---|
[52] | 992 | my $sth = $dbh->prepare($sql);
|
---|
| 993 | $sth->execute;
|
---|
[17] | 994 | my ($count) = $sth->fetchrow_array;
|
---|
| 995 |
|
---|
[12] | 996 | # fill page count and first-previous-next-last-all bits
|
---|
| 997 | ##fixme - hardcoded group bit
|
---|
[20] | 998 | fill_pgcount($count,"domains",groupName($dbh,$curgroup));
|
---|
[10] | 999 | fill_fpnla($count);
|
---|
| 1000 |
|
---|
[41] | 1001 | # sort/order
|
---|
[51] | 1002 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1003 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[41] | 1004 |
|
---|
[51] | 1005 | $sortby = $session->param($webvar{page}.'sortby');
|
---|
| 1006 | $sortorder = $session->param($webvar{page}.'order');
|
---|
| 1007 |
|
---|
[44] | 1008 | # set up the headers
|
---|
| 1009 | my @cols = ('domain', 'status', 'group');
|
---|
| 1010 | my %colheads = (domain => 'Domain', status => 'Status', group => 'Group');
|
---|
[54] | 1011 | fill_colheads($sortby, $sortorder, \@cols, \%colheads);
|
---|
[41] | 1012 |
|
---|
[47] | 1013 | # $page->param(sortorder => $sortorder);
|
---|
[41] | 1014 | # hack! hack! pthbttt. have to rethink the status column storage,
|
---|
| 1015 | # or inactive comes "before" active. *sigh*
|
---|
| 1016 | $sortorder = ($sortorder eq 'ASC' ? 'DESC' : 'ASC') if $sortby eq 'status';
|
---|
| 1017 |
|
---|
[51] | 1018 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[53] | 1019 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/;
|
---|
[41] | 1020 |
|
---|
[53] | 1021 | $page->param(filter => $filter) if $filter;
|
---|
| 1022 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[41] | 1023 |
|
---|
| 1024 | ##fixme
|
---|
| 1025 | ##fixme push the SQL and direct database fiddling off into a sub in DNSDB.pm
|
---|
| 1026 | ##fixme
|
---|
| 1027 |
|
---|
[20] | 1028 | $page->param(group => $curgroup);
|
---|
[10] | 1029 | my @domlist;
|
---|
[52] | 1030 | $sql = "SELECT domain_id,domain,status,groups.group_name AS group FROM domains".
|
---|
[20] | 1031 | " INNER JOIN groups ON domains.group_id=groups.group_id".
|
---|
[57] | 1032 | " WHERE domains.group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[41] | 1033 | ##fixme: don't do variable subs in SQL, use placeholders and params in ->execute()
|
---|
[53] | 1034 | ($startwith ? " AND domain ~* '^[$startwith]'" : '').
|
---|
| 1035 | ($filter ? " AND domain ~* '$filter'" : '').
|
---|
[41] | 1036 | " ORDER BY ".($sortby eq 'group' ? 'groups.group_name' : $sortby).
|
---|
| 1037 | " $sortorder ".($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage);
|
---|
| 1038 | $sth = $dbh->prepare($sql);
|
---|
[52] | 1039 | $sth->execute;
|
---|
[10] | 1040 | my $rownum = 0;
|
---|
| 1041 | while (my @data = $sth->fetchrow_array) {
|
---|
| 1042 | my %row;
|
---|
| 1043 | $row{domainid} = $data[0];
|
---|
| 1044 | $row{domain} = $data[1];
|
---|
| 1045 | $row{status} = ($data[2] ? 'Active' : 'Inactive');
|
---|
| 1046 | $row{group} = $data[3];
|
---|
| 1047 | $row{bg} = ($rownum++)%2;
|
---|
| 1048 | # $row{mkactive} = ($data[2] eq 'inactive' ? 1 : 0);
|
---|
| 1049 | $row{mkactive} = !$data[2];
|
---|
| 1050 | $row{sid} = $sid;
|
---|
| 1051 | $row{offset} = $offset;
|
---|
| 1052 | ##fixme: need to clean up status indicator/usage/inversion
|
---|
| 1053 | push @domlist, \%row;
|
---|
| 1054 | }
|
---|
| 1055 | $page->param(domtable => \@domlist);
|
---|
[11] | 1056 | } # end listdomains()
|
---|
[18] | 1057 |
|
---|
[22] | 1058 | sub listgroups {
|
---|
[53] | 1059 |
|
---|
[26] | 1060 | my @childgroups;
|
---|
[53] | 1061 | getChildren($dbh, $logingroup, \@childgroups, 'all') if $searchsubs;
|
---|
[26] | 1062 | my $childlist = join(',',@childgroups);
|
---|
| 1063 |
|
---|
[54] | 1064 | my $sql = "SELECT count(*) FROM groups WHERE parent_group_id IN ($logingroup".($childlist ? ",$childlist" : '').")".
|
---|
[53] | 1065 | ($startwith ? " AND group_name ~* '^[$startwith]'" : '').
|
---|
| 1066 | ($filter ? " AND group_name ~* '$filter'" : '');
|
---|
[26] | 1067 | my $sth = $dbh->prepare($sql);
|
---|
| 1068 |
|
---|
[22] | 1069 | $sth->execute;
|
---|
| 1070 | my ($count) = ($sth->fetchrow_array);
|
---|
| 1071 | # fill page count and first-previous-next-last-all bits
|
---|
| 1072 | ##fixme - hardcoded group bit
|
---|
| 1073 | fill_pgcount($count,"groups",'');
|
---|
| 1074 | fill_fpnla($count);
|
---|
| 1075 |
|
---|
[51] | 1076 | # $sortby = 'group';
|
---|
[42] | 1077 | # sort/order
|
---|
[51] | 1078 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1079 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[42] | 1080 |
|
---|
[51] | 1081 | $sortby = $session->param($webvar{page}.'sortby');
|
---|
| 1082 | $sortorder = $session->param($webvar{page}.'order');
|
---|
| 1083 |
|
---|
[44] | 1084 | # set up the headers
|
---|
| 1085 | my @cols = ('group','parent','nusers','ndomains');
|
---|
| 1086 | my %colnames = (group => 'Group', parent => 'Parent Group', nusers => 'Users', ndomains => 'Domains');
|
---|
[54] | 1087 | fill_colheads($sortby, $sortorder, \@cols, \%colnames);
|
---|
[42] | 1088 |
|
---|
[51] | 1089 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
| 1090 | $page->param("start$webvar{startwith}" => 1) if $webvar{startwith} && $webvar{startwith} =~ /^[a-z]$/;
|
---|
| 1091 |
|
---|
[53] | 1092 | $page->param(filter => $filter) if $filter;
|
---|
| 1093 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[51] | 1094 |
|
---|
| 1095 | # munge sortby for columns in database
|
---|
| 1096 | $sortby = 'g.group_name' if $sortby eq 'group';
|
---|
| 1097 | $sortby = 'g2.group_name' if $sortby eq 'parent';
|
---|
| 1098 |
|
---|
[22] | 1099 | my @grouplist;
|
---|
| 1100 | $sth = $dbh->prepare("SELECT g.group_id, g.group_name, g2.group_name, ".
|
---|
[51] | 1101 | "count(distinct(u.username)) AS nusers, count(distinct(d.domain)) AS ndomains ".
|
---|
[22] | 1102 | "FROM groups g ".
|
---|
| 1103 | "INNER JOIN groups g2 ON g2.group_id=g.parent_group_id ".
|
---|
| 1104 | "LEFT OUTER JOIN users u ON u.group_id=g.group_id ".
|
---|
| 1105 | "LEFT OUTER JOIN domains d ON d.group_id=g.group_id ".
|
---|
[54] | 1106 | "WHERE g.parent_group_id IN ($logingroup".($childlist ? ",$childlist" : '').") ".
|
---|
[51] | 1107 | ##fixme: don't do variable subs in SQL, use placeholders and params in ->execute()
|
---|
[53] | 1108 | ($startwith ? " AND g.group_name ~* '^[$startwith]'" : '').
|
---|
| 1109 | ($filter ? " AND g.group_name ~* '$filter'" : '').
|
---|
[51] | 1110 | " GROUP BY g.group_id, g.group_name, g2.group_name ".
|
---|
| 1111 | " ORDER BY $sortby $sortorder ".
|
---|
| 1112 | ($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage));
|
---|
[22] | 1113 | $sth->execute;
|
---|
| 1114 |
|
---|
| 1115 | my $rownum = 0;
|
---|
| 1116 | while (my @data = $sth->fetchrow_array) {
|
---|
| 1117 | my %row;
|
---|
| 1118 | $row{groupid} = $data[0];
|
---|
| 1119 | $row{groupname} = $data[1];
|
---|
| 1120 | $row{pgroup} = $data[2];
|
---|
| 1121 | $row{nusers} = $data[3];
|
---|
| 1122 | $row{ndomains} = $data[4];
|
---|
| 1123 | $row{bg} = ($rownum++)%2;
|
---|
| 1124 | $row{sid} = $sid;
|
---|
| 1125 | push @grouplist, \%row;
|
---|
| 1126 | }
|
---|
| 1127 | $page->param(grouptable => \@grouplist);
|
---|
| 1128 | } # end listgroups()
|
---|
| 1129 |
|
---|
[20] | 1130 | sub fill_grouplist {
|
---|
[19] | 1131 | my $template_var = shift;
|
---|
| 1132 | my $cur = shift || $curgroup;
|
---|
[26] | 1133 |
|
---|
| 1134 | my @childgroups;
|
---|
| 1135 | getChildren($dbh, $logingroup, \@childgroups, 'all');
|
---|
| 1136 | my $childlist = join(',',@childgroups);
|
---|
| 1137 |
|
---|
[18] | 1138 | # weesa gonna discard parent_group_id for now
|
---|
[26] | 1139 | my $sth = $dbh->prepare("SELECT group_id,parent_group_id,group_name FROM groups ".
|
---|
| 1140 | "WHERE group_id IN ($logingroup".($childlist ? ",$childlist" : '').")".
|
---|
| 1141 | "ORDER BY group_id");
|
---|
[18] | 1142 | $sth->execute;
|
---|
[20] | 1143 | my @grouplist;
|
---|
| 1144 | while (my ($groupid,$pargroup,$groupname) = $sth->fetchrow_array()) {
|
---|
[18] | 1145 | my %row;
|
---|
[20] | 1146 | $row{groupname} = $groupname;
|
---|
| 1147 | $row{groupval} = $groupid;
|
---|
[18] | 1148 | ##fixme: need magic
|
---|
[20] | 1149 | # $row{defgroup} = '';
|
---|
| 1150 | $row{groupactive} = 1 if $groupid == $cur;
|
---|
| 1151 | push @grouplist, \%row;
|
---|
[18] | 1152 | }
|
---|
| 1153 |
|
---|
[20] | 1154 | $page->param("$template_var" => \@grouplist);
|
---|
[18] | 1155 |
|
---|
[24] | 1156 | } # end fill_grouplist()
|
---|
| 1157 |
|
---|
| 1158 | sub list_users {
|
---|
[52] | 1159 |
|
---|
| 1160 | my @childgroups;
|
---|
[53] | 1161 | getChildren($dbh, $curgroup, \@childgroups, 'all') if $searchsubs;
|
---|
[52] | 1162 | my $childlist = join(',',@childgroups);
|
---|
| 1163 |
|
---|
| 1164 | my $sql = "SELECT count(*) FROM users WHERE group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[53] | 1165 | ($startwith ? " AND username ~* '^[$startwith]'" : '').
|
---|
| 1166 | ($filter ? " AND username ~* '$filter'" : '');
|
---|
[52] | 1167 | my $sth = $dbh->prepare($sql);
|
---|
| 1168 | $sth->execute;
|
---|
[24] | 1169 | my ($count) = ($sth->fetchrow_array);
|
---|
| 1170 |
|
---|
| 1171 | # fill page count and first-previous-next-last-all bits
|
---|
| 1172 | ##fixme - hardcoded group bit
|
---|
| 1173 | fill_pgcount($count,"users",'');
|
---|
| 1174 | fill_fpnla($count);
|
---|
| 1175 |
|
---|
[51] | 1176 | # $sortby = 'user';
|
---|
[44] | 1177 | # sort/order
|
---|
[51] | 1178 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1179 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[44] | 1180 |
|
---|
[51] | 1181 | $sortby = $session->param($webvar{page}.'sortby');
|
---|
| 1182 | $sortorder = $session->param($webvar{page}.'order');
|
---|
| 1183 |
|
---|
[44] | 1184 | # set up the headers
|
---|
| 1185 | my @cols = ('user','fname','type','group','status');
|
---|
| 1186 | my %colnames = (user => 'Username', fname => 'Full Name', type => 'Type', group => 'Group', status => 'Status');
|
---|
[54] | 1187 | fill_colheads($sortby, $sortorder, \@cols, \%colnames);
|
---|
[44] | 1188 |
|
---|
[51] | 1189 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[53] | 1190 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^[a-z]$/;
|
---|
[51] | 1191 |
|
---|
[53] | 1192 | $page->param(filter => $filter) if $filter;
|
---|
| 1193 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[51] | 1194 |
|
---|
| 1195 | # munge sortby for columns in database
|
---|
| 1196 | $sortby = 'u.username' if $sortby eq 'user';
|
---|
| 1197 | $sortby = 'u.type' if $sortby eq 'type';
|
---|
| 1198 | $sortby = 'g.group_name' if $sortby eq 'group';
|
---|
| 1199 | $sortby = 'u.status' if $sortby eq 'status';
|
---|
| 1200 |
|
---|
[24] | 1201 | my @userlist;
|
---|
[52] | 1202 | $sql = "SELECT u.user_id, u.username, u.firstname || ' ' || u.lastname AS fname, u.type, g.group_name, u.status ".
|
---|
[24] | 1203 | "FROM users u ".
|
---|
| 1204 | "INNER JOIN groups g ON u.group_id=g.group_id ".
|
---|
[52] | 1205 | "WHERE u.group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[51] | 1206 | ##fixme: don't do variable subs in SQL, use placeholders and params in ->execute()
|
---|
[53] | 1207 | ($startwith ? " AND u.username ~* '^[$startwith]'" : '').
|
---|
| 1208 | ($filter ? " AND u.username ~* '$filter'" : '').
|
---|
[51] | 1209 | " ORDER BY $sortby $sortorder ".
|
---|
[52] | 1210 | ($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage);
|
---|
[51] | 1211 |
|
---|
[52] | 1212 | $sth = $dbh->prepare($sql);
|
---|
| 1213 | $sth->execute;
|
---|
[24] | 1214 |
|
---|
| 1215 | my $rownum = 0;
|
---|
| 1216 | while (my @data = $sth->fetchrow_array) {
|
---|
[41] | 1217 | no warnings "uninitialized"; # Just In Case something stupid happens and a user gets no first or last name
|
---|
[24] | 1218 | my %row;
|
---|
| 1219 | $row{userid} = $data[0];
|
---|
| 1220 | $row{username} = $data[1];
|
---|
[51] | 1221 | $row{userfull} = $data[2];
|
---|
| 1222 | $row{usertype} = ($data[3] eq 'S' ? 'superuser' : "user");
|
---|
| 1223 | $row{usergroup} = $data[4];
|
---|
| 1224 | $row{active} = $data[5];
|
---|
[24] | 1225 | $row{bg} = ($rownum++)%2;
|
---|
| 1226 | $row{sid} = $sid;
|
---|
| 1227 | push @userlist, \%row;
|
---|
| 1228 | }
|
---|
| 1229 | $page->param(usertable => \@userlist);
|
---|
[55] | 1230 | } # end list_users()
|
---|
[43] | 1231 |
|
---|
| 1232 | # Generate all of the glop necessary to add or not the appropriate marker/flag for
|
---|
| 1233 | # the sort order and column in domain, user, group, and record lists
|
---|
| 1234 | # Takes an array ref and hash ref
|
---|
| 1235 | sub fill_colheads {
|
---|
[54] | 1236 | my $sortby = shift;
|
---|
| 1237 | my $sortorder = shift;
|
---|
[43] | 1238 | my $cols = shift;
|
---|
| 1239 | my $colnames = shift;
|
---|
| 1240 |
|
---|
| 1241 | my @headings;
|
---|
| 1242 |
|
---|
| 1243 | foreach my $col (@$cols) {
|
---|
| 1244 | my %coldata;
|
---|
| 1245 | $coldata{firstcol} = 1 if $col eq $cols->[0];
|
---|
| 1246 | $coldata{sid} = $sid;
|
---|
| 1247 | $coldata{page} = $webvar{page};
|
---|
| 1248 | $coldata{offset} = $webvar{offset} if $webvar{offset};
|
---|
| 1249 | $coldata{sortby} = $col;
|
---|
| 1250 | $coldata{colname} = $colnames->{$col};
|
---|
| 1251 | if ($col eq $sortby) {
|
---|
| 1252 | $coldata{order} = ($sortorder eq 'ASC' ? 'DESC' : 'ASC');
|
---|
| 1253 | $coldata{sortorder} = $sortorder;
|
---|
| 1254 | } else {
|
---|
| 1255 | $coldata{order} = 'ASC';
|
---|
| 1256 | }
|
---|
| 1257 | push @headings, \%coldata;
|
---|
| 1258 | }
|
---|
| 1259 |
|
---|
| 1260 | $page->param(colheads => \@headings);
|
---|
| 1261 |
|
---|
[54] | 1262 | } # end fill_colheads()
|
---|
[55] | 1263 |
|
---|
| 1264 | sub logaction {
|
---|
[57] | 1265 | my ($domid,$username,$groupid,$entry) = shift;
|
---|
[55] | 1266 |
|
---|
| 1267 | my $sth = dbh->prepare("SELECT user_id, firstname || ' ' || lastname FROM users WHERE username=?");
|
---|
| 1268 | $sth->execute($username);
|
---|
| 1269 | my ($user_id, $fullname) = $sth->fetchrow_array;
|
---|
| 1270 |
|
---|
| 1271 | $sth = $dbh->prepare("INSERT INTO log (domain_id,user_id,group_id,email,name,entry) ".
|
---|
| 1272 | "VALUES (?,?,?,?,?,?)");
|
---|
[57] | 1273 | $sth->execute($domid,$user_id,$groupid,$username,$fullname,$entry);
|
---|
[55] | 1274 |
|
---|
| 1275 | } # end logaction()
|
---|
[57] | 1276 |
|
---|
| 1277 | #sub parentID($dbh, $id, $idtype, $partype[, $defrec])
|
---|
| 1278 | sub parentID {
|
---|
| 1279 | my $id = shift;
|
---|
| 1280 | my $idtype = shift;
|
---|
| 1281 | my $partype = shift;
|
---|
| 1282 | my $defrec = shift || '';
|
---|
| 1283 |
|
---|
| 1284 | my $sql = '';
|
---|
| 1285 |
|
---|
| 1286 | if ($idtype eq 'dom') {
|
---|
| 1287 | return $id if $defrec eq 'y';
|
---|
| 1288 | $sql = "SELECT group_id FROM domains WHERE domain_id=?";
|
---|
| 1289 | } elsif ($idtype eq 'rec') {
|
---|
| 1290 | if ($defrec && $defrec eq 'y') {
|
---|
| 1291 | } else {
|
---|
| 1292 | return
|
---|
| 1293 | $sql = "SELECT d.group_id FROM domains d".
|
---|
| 1294 | " INNER JOIN records r ON d.domain_id=r.domain_id".
|
---|
| 1295 | " WHERE r.record_id=?";
|
---|
| 1296 | }
|
---|
| 1297 | } elsif ($idtype eq 'group') {
|
---|
| 1298 | $sql = "SELECT parent_group_id FROM groups WHERE group_id=?";
|
---|
| 1299 | } elsif ($idtype eq 'user') {
|
---|
| 1300 | $sql = "SELECT group_id FROM users WHERE user_id=?";
|
---|
| 1301 | } else {
|
---|
| 1302 | return "FOO", "BAR"; # can't get here.... we think.
|
---|
| 1303 | }
|
---|
| 1304 | } |
---|