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