[2] | 1 | #!/usr/bin/perl -w -T
|
---|
| 2 | # dns/cgi-bin/dns.cgi
|
---|
| 3 | ###
|
---|
| 4 | # SVN revision info
|
---|
| 5 | # $Date: 2011-06-24 21:30:23 +0000 (Fri, 24 Jun 2011) $
|
---|
| 6 | # SVN revision $Rev: 98 $
|
---|
| 7 | # Last update by $Author: kdeugau $
|
---|
| 8 | ###
|
---|
[87] | 9 | # Copyright (C) 2008-2011 - 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;
|
---|
[92] | 19 | use Digest::MD5 qw(md5_hex);
|
---|
[30] | 20 | use Net::DNS;
|
---|
[2] | 21 | use DBI;
|
---|
[83] | 22 | use Data::Dumper;
|
---|
[2] | 23 |
|
---|
[95] | 24 | #sub is_tainted {
|
---|
| 25 | # # from perldoc perlsec
|
---|
| 26 | # return ! eval { eval("#" . substr(join("", @_), 0, 0)); 1 };
|
---|
| 27 | #}
|
---|
| 28 | #use Cwd 'abs_path';
|
---|
| 29 | #use File::Basename;
|
---|
| 30 | #use lib dirname( abs_path $0 );
|
---|
| 31 | #die "argh! tainted!" if is_tainted($0);
|
---|
| 32 | #die "argh! \@INC got tainted!" if is_tainted(@INC);
|
---|
| 33 |
|
---|
| 34 | # custom modules
|
---|
[2] | 35 | use lib '.';
|
---|
| 36 | use DNSDB qw(:ALL);
|
---|
| 37 |
|
---|
[13] | 38 | my @debugbits; # temp, to be spit out near the end of processing
|
---|
[61] | 39 | my $debugenv = 1;
|
---|
[13] | 40 |
|
---|
[2] | 41 | # Let's do these templates right...
|
---|
| 42 | my $templatedir = "templates";
|
---|
| 43 | my $sessiondir = "session";
|
---|
| 44 |
|
---|
| 45 | # Set up the CGI object...
|
---|
| 46 | my $q = new CGI::Simple;
|
---|
| 47 | # ... and get query-string params as well as POST params if necessary
|
---|
| 48 | $q->parse_query_string;
|
---|
| 49 |
|
---|
| 50 | # This is probably excessive fiddling, but it puts the parameters somewhere my fingers know about...
|
---|
[7] | 51 | my %webvar = $q->Vars;
|
---|
[2] | 52 |
|
---|
[13] | 53 | # persistent stuff needed on most/all pages
|
---|
[2] | 54 | my $sid = ($webvar{sid} ? $webvar{sid} : undef);
|
---|
[68] | 55 | my $session = new CGI::Session("driver:File", $sid, {Directory => $sessiondir})
|
---|
| 56 | or die CGI::Session->errstr();
|
---|
[2] | 57 | #$sid = $session->id() if !$sid;
|
---|
| 58 | if (!$sid) {
|
---|
| 59 | # init stuff. can probably axe this down to just above if'n'when user manipulation happens
|
---|
| 60 | $sid = $session->id();
|
---|
| 61 | # need to know the "upper" group the user can deal with; may as well
|
---|
| 62 | # stick this in the session rather than calling out to the DB every time.
|
---|
[18] | 63 | $session->param('logingroup',1);
|
---|
| 64 | $session->param('curgroup',1); # yes, we *do* need to track this too. er, probably.
|
---|
[51] | 65 | $session->param('domlistsortby','domain');
|
---|
| 66 | $session->param('domlistorder','ASC');
|
---|
[54] | 67 | $session->param('useradminsortby','user');
|
---|
[51] | 68 | $session->param('useradminorder','ASC');
|
---|
| 69 | $session->param('grpmansortby','group');
|
---|
| 70 | $session->param('grpmanorder','ASC');
|
---|
[76] | 71 | $session->param('reclistsortby','host');
|
---|
[51] | 72 | $session->param('reclistorder','ASC');
|
---|
[53] | 73 | # $session->param('filter','login');
|
---|
| 74 | # $session->param('startwith','login');
|
---|
| 75 | # $session->param('searchsubs','login');
|
---|
[2] | 76 | }
|
---|
| 77 |
|
---|
[19] | 78 | my $logingroup = ($session->param('logingroup') ? $session->param('logingroup') : 1);
|
---|
| 79 | my $curgroup = ($session->param('curgroup') ? $session->param('curgroup') : $logingroup);
|
---|
[17] | 80 | my $group = ($webvar{group} ? $webvar{group} : 1);
|
---|
[18] | 81 |
|
---|
[54] | 82 | # per-page startwith, filter, searchsubs
|
---|
[64] | 83 | $session->param($webvar{page}.'startwith', $webvar{startwith}) if defined($webvar{startwith});
|
---|
[62] | 84 | $session->param($webvar{page}.'filter', $webvar{filter}) if defined($webvar{filter});
|
---|
[54] | 85 | $webvar{searchsubs} =~ s/^n ?// if $webvar{searchsubs};
|
---|
[57] | 86 | $session->param($webvar{page}.'searchsubs', $webvar{searchsubs}) if defined($webvar{searchsubs});
|
---|
[54] | 87 |
|
---|
[68] | 88 | # decide which page to spit out...
|
---|
| 89 | # also set $webvar{page} before we try to use it.
|
---|
| 90 | $webvar{page} = 'login' if !$webvar{page};
|
---|
| 91 |
|
---|
[54] | 92 | my $startwith = $session->param($webvar{page}.'startwith');
|
---|
| 93 | my $filter = $session->param($webvar{page}.'filter');
|
---|
| 94 | my $searchsubs = $session->param($webvar{page}.'searchsubs');
|
---|
| 95 |
|
---|
[26] | 96 | # nrgh, can't handle login here because we don't have a database handle to check the user/pass with yet
|
---|
[2] | 97 |
|
---|
| 98 | my $header = HTML::Template->new(filename => "$templatedir/header.tmpl");
|
---|
| 99 | my $footer = HTML::Template->new(filename => "$templatedir/footer.tmpl");
|
---|
| 100 |
|
---|
| 101 | # default
|
---|
[38] | 102 | #my $perpage = 15;
|
---|
[98] | 103 | my $perpage = 5;
|
---|
[2] | 104 | my $offset = ($webvar{offset} ? $webvar{offset} : 0);
|
---|
| 105 |
|
---|
| 106 | # NB: these must match the field name and SQL ascend/descend syntax respectively
|
---|
[41] | 107 | my $sortby = "domain";
|
---|
| 108 | my $sortorder = "ASC";
|
---|
[2] | 109 |
|
---|
[68] | 110 | my ($dbh,$msg) = connectDB("dnsdb","dnsdb","secret","newdbhost");
|
---|
[2] | 111 | #my $dbh = DBI->connect("DBI:mysql:database=vegadns","vegadns","secret",
|
---|
| 112 | # { AutoCommit => 0 }) or die $DBI::errstr;
|
---|
| 113 |
|
---|
| 114 | ##fixme. PLEASE! <G>
|
---|
| 115 | print $msg if !$dbh;
|
---|
| 116 |
|
---|
| 117 | # fiddle hardcoded "defaults" as per system/user (?) prefs
|
---|
| 118 | initGlobals($dbh);
|
---|
| 119 |
|
---|
[26] | 120 | # handle login redirect
|
---|
[30] | 121 | if ($webvar{action}) {
|
---|
| 122 | if ($webvar{action} eq 'login') {
|
---|
[65] | 123 | # Snag ACL/permissions here too
|
---|
[30] | 124 | my $sth = $dbh->prepare("SELECT user_id,group_id,password,firstname,lastname FROM users WHERE username=?");
|
---|
| 125 | $sth->execute($webvar{username});
|
---|
| 126 | my ($uid,$gid,$pass,$fname,$lname) = $sth->fetchrow_array;
|
---|
| 127 | $webvar{loginfailed} = 1 if !defined($uid);
|
---|
[26] | 128 |
|
---|
[30] | 129 | if ($pass =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
|
---|
[92] | 130 | # native passwords (crypt-md5)
|
---|
[30] | 131 | $webvar{loginfailed} = 1 if $pass ne unix_md5_crypt($webvar{password},$1);
|
---|
[92] | 132 | } elsif ($pass =~ /^[0-9a-f]{32}$/) {
|
---|
| 133 | # VegaDNS import (hex-coded MD5)
|
---|
| 134 | $webvar{loginfailed} = 1 if $pass ne md5_hex($webvar{password});
|
---|
[30] | 135 | } else {
|
---|
[92] | 136 | # plaintext (convenient now and then)
|
---|
[30] | 137 | $webvar{loginfailed} = 1 if $pass ne $webvar{password};
|
---|
| 138 | }
|
---|
[29] | 139 |
|
---|
[30] | 140 | # set session bits
|
---|
| 141 | $session->param('logingroup',$gid);
|
---|
| 142 | $session->param('curgroup',$gid);
|
---|
[65] | 143 | $session->param('uid',$uid);
|
---|
[30] | 144 | $session->param('username',$webvar{username});
|
---|
[26] | 145 |
|
---|
[30] | 146 | changepage(page => "domlist") if !defined($webvar{loginfailed});
|
---|
| 147 | } elsif ($webvar{action} eq 'logout') {
|
---|
| 148 | # delete the session
|
---|
| 149 | $session->delete();
|
---|
| 150 | $session->flush();
|
---|
| 151 |
|
---|
| 152 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}";
|
---|
| 153 | $newurl =~ s|/[^/]+$|/|;
|
---|
| 154 | print "Status: 302\nLocation: $newurl\n\n";
|
---|
| 155 | exit;
|
---|
| 156 |
|
---|
[57] | 157 | } elsif ($webvar{action} eq 'chgroup') {
|
---|
| 158 | # fiddle session-stored group data
|
---|
| 159 | # magic incantation to... uhhh...
|
---|
| 160 | $session->param('curgroup', $webvar{group});
|
---|
| 161 | $curgroup = ($webvar{group} ? $webvar{group} : $session->param('curgroup'));
|
---|
[30] | 162 | }
|
---|
[57] | 163 | } # handle global webvar{action}s
|
---|
[26] | 164 |
|
---|
[65] | 165 | initPermissions($dbh,$session->param('uid'));
|
---|
[57] | 166 |
|
---|
[15] | 167 | ## Default page is a login page
|
---|
| 168 | #my $page; # to be initialized as an HTML::Template entity sooner or later
|
---|
[2] | 169 |
|
---|
[3] | 170 |
|
---|
[15] | 171 | #if (!$webvar{page}) {
|
---|
| 172 | # $page = HTML::Template->new(filename => "$templatedir/login.tmpl");
|
---|
| 173 | #} else {
|
---|
| 174 | #}
|
---|
[2] | 175 |
|
---|
[15] | 176 | my $page = HTML::Template->new(filename => "$templatedir/$webvar{page}.tmpl");
|
---|
| 177 |
|
---|
[2] | 178 | $page->param(sid => $sid);
|
---|
| 179 |
|
---|
[26] | 180 | if ($webvar{page} eq 'login') {
|
---|
[3] | 181 |
|
---|
[26] | 182 | $page->param(loginfailed => 1) if $webvar{loginfailed};
|
---|
| 183 | ##fixme: set up session init to actually *check* for session timeout
|
---|
| 184 | $page->param(timeout => 1) if $webvar{sesstimeout};
|
---|
| 185 |
|
---|
| 186 | } elsif ($webvar{page} eq 'domlist' or $webvar{page} eq 'index') {
|
---|
| 187 |
|
---|
[3] | 188 | # hmm. seeing problems in some possibly-not-so-corner cases.
|
---|
[10] | 189 | # this currently only handles "domain on", "domain off"
|
---|
[3] | 190 | if (defined($webvar{action})) {
|
---|
[62] | 191 | my $stat = domStatus($dbh,$webvar{id},$webvar{action});
|
---|
| 192 | logaction($webvar{id}, $session->param("username"), parentID($webvar{id}, 'dom', 'group'),
|
---|
| 193 | "Changed ".domainName($dbh, $webvar{id})." state to ".($stat ? 'active' : 'inactive'));
|
---|
[3] | 194 | }
|
---|
| 195 |
|
---|
[18] | 196 | $page->param(curpage => $webvar{page});
|
---|
[95] | 197 | $page->param(errmsg => $webvar{errmsg}) if $webvar{errmsg};
|
---|
| 198 | # if ($webvar{del_failed}) {
|
---|
| 199 | # $page->param(del_failed => 1);
|
---|
| 200 | # $page->param(errmsg => $webvar{errmsg});
|
---|
| 201 | # }
|
---|
[18] | 202 |
|
---|
[11] | 203 | listdomains();
|
---|
[2] | 204 |
|
---|
[4] | 205 | } elsif ($webvar{page} eq 'newdomain') {
|
---|
[2] | 206 |
|
---|
[95] | 207 | changepage(page => "domlist", errmsg => "You are not permitted to add domains")
|
---|
| 208 | unless ($permissions{admin} || $permissions{domain_create});
|
---|
| 209 |
|
---|
[57] | 210 | # hmm. nothing to do here?
|
---|
| 211 | # - group list is filled by the same bit that fills the group list in the menu
|
---|
[62] | 212 | if ($webvar{add_failed}) {
|
---|
| 213 | $page->param(add_failed => 1);
|
---|
| 214 | $page->param(errmsg => $webvar{errmsg});
|
---|
| 215 | $page->param(domain => $webvar{domain});
|
---|
| 216 | }
|
---|
[2] | 217 |
|
---|
[57] | 218 | } elsif ($webvar{page} eq 'adddomain') {
|
---|
| 219 |
|
---|
[95] | 220 | changepage(page => "domlist", errmsg => "You are not permitted to add domains")
|
---|
| 221 | unless ($permissions{admin} || $permissions{domain_create});
|
---|
| 222 |
|
---|
[57] | 223 | my ($code,$msg) = addDomain($dbh,$webvar{domain},$webvar{group},($webvar{makeactive} eq 'on' ? 1 : 0));
|
---|
| 224 |
|
---|
| 225 | if ($code eq 'OK') {
|
---|
| 226 | logaction($msg, $session->param("username"), $webvar{group}, "Added domain $webvar{domain}");
|
---|
| 227 | changepage(page => "reclist", id => $msg);
|
---|
| 228 | } else {
|
---|
[62] | 229 | logaction(0, $session->param("username"), $webvar{group}, "Failed adding domain $webvar{domain} ($msg)");
|
---|
[57] | 230 | changepage(page => "newdomain", add_failed => 1, domain => $webvar{domain}, errmsg => $msg);
|
---|
| 231 | }
|
---|
| 232 |
|
---|
[11] | 233 | } elsif ($webvar{page} eq 'deldom') {
|
---|
| 234 |
|
---|
[95] | 235 | changepage(page => "domlist", errmsg => "You are not permitted to delete domains")
|
---|
| 236 | unless ($permissions{admin} || $permissions{domain_delete});
|
---|
| 237 |
|
---|
[11] | 238 | $page->param(id => $webvar{id});
|
---|
[88] | 239 |
|
---|
[11] | 240 | # first pass = confirm y/n (sorta)
|
---|
| 241 | if (!defined($webvar{del})) {
|
---|
[88] | 242 |
|
---|
[11] | 243 | $page->param(del_getconf => 1);
|
---|
| 244 | $page->param(domain => domainName($dbh,$webvar{id}));
|
---|
| 245 |
|
---|
[88] | 246 | } elsif ($webvar{del} eq 'ok') {
|
---|
[11] | 247 |
|
---|
[57] | 248 | my $pargroup = parentID($webvar{id}, 'dom', 'group');
|
---|
[61] | 249 | my $dom = domainName($dbh, $webvar{id});
|
---|
[11] | 250 | my ($code,$msg) = delDomain($dbh, $webvar{id});
|
---|
| 251 | if ($code ne 'OK') {
|
---|
| 252 | # need to find failure mode
|
---|
[62] | 253 | logaction($webvar{id}, $session->param("username"), $pargroup, "Failed to delete domain $dom ($msg)");
|
---|
[95] | 254 | changepage(page => "domlist", errmsg => "Error deleting domain $dom: $msg");
|
---|
[11] | 255 | } else {
|
---|
[61] | 256 | logaction($webvar{id}, $session->param("username"), $pargroup, "Deleted domain $dom");
|
---|
| 257 | changepage(page => "domlist");
|
---|
[11] | 258 | }
|
---|
[88] | 259 |
|
---|
[11] | 260 | } else {
|
---|
| 261 | # cancelled. whee!
|
---|
| 262 | changepage(page => "domlist");
|
---|
| 263 | }
|
---|
| 264 |
|
---|
[47] | 265 | } elsif ($webvar{page} eq 'reclist') {
|
---|
| 266 |
|
---|
[95] | 267 | ##fixme: ACL needs pondering. Does "edit domain" interact with record add/remove/etc?
|
---|
| 268 | # Note this seems to be answered "no" in Vega.
|
---|
| 269 | # ACLs
|
---|
| 270 | $page->param(record_create => ($permissions{admin} || $permissions{record_create}) );
|
---|
| 271 | # $page->param(record_edit => ($permissions{admin} || $permissions{record_edit}) );
|
---|
| 272 | $page->param(record_delete => ($permissions{admin} || $permissions{record_delete}) );
|
---|
| 273 |
|
---|
[47] | 274 | # Handle record list for both default records (per-group) and live domain records
|
---|
| 275 |
|
---|
| 276 | $page->param(defrec => $webvar{defrec});
|
---|
| 277 | $page->param(id => $webvar{id});
|
---|
| 278 | $page->param(curpage => $webvar{page});
|
---|
| 279 |
|
---|
[91] | 280 | my $count = getRecCount($dbh, $webvar{defrec}, $webvar{id});
|
---|
[47] | 281 |
|
---|
[76] | 282 | # $sortby = 'host';
|
---|
| 283 | # sort/order
|
---|
| 284 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 285 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
| 286 |
|
---|
| 287 | $sortby = $session->param($webvar{page}.'sortby');
|
---|
| 288 | $sortorder = $session->param($webvar{page}.'order');
|
---|
| 289 |
|
---|
[72] | 290 | # set up the headers
|
---|
| 291 | my @cols = ('host', 'type', 'val', 'distance', 'weight', 'port', 'ttl');
|
---|
| 292 | my %colheads = (host => 'Name', type => 'Type', val => 'Address',
|
---|
| 293 | distance => 'Distance', weight => 'Weight', port => 'Port', ttl => 'TTL');
|
---|
| 294 | my %custom = (id => $webvar{id}, defrec => $webvar{defrec});
|
---|
| 295 | fill_colheads($sortby, $sortorder, \@cols, \%colheads, \%custom);
|
---|
| 296 |
|
---|
[47] | 297 | # fill the page-count and first-previous-next-last-all details
|
---|
[97] | 298 | fill_pgcount($count,"records",
|
---|
| 299 | ($webvar{defrec} eq 'y' ? "group ".groupName($dbh,$webvar{id}) : domainName($dbh,$webvar{id})));
|
---|
[47] | 300 | fill_fpnla($count); # should put some params on this sub...
|
---|
| 301 |
|
---|
| 302 | $page->param(defrec => $webvar{defrec});
|
---|
| 303 | if ($webvar{defrec} eq 'y') {
|
---|
| 304 | showdomain('y',$curgroup);
|
---|
| 305 | } else {
|
---|
| 306 | showdomain('n',$webvar{id});
|
---|
[60] | 307 | $page->param(logdom => 1);
|
---|
[47] | 308 | }
|
---|
| 309 |
|
---|
[95] | 310 | $page->param(errmsg => $webvar{errmsg}) if $webvar{errmsg};
|
---|
[63] | 311 |
|
---|
[13] | 312 | } elsif ($webvar{page} eq 'record') {
|
---|
[16] | 313 |
|
---|
[13] | 314 | if ($webvar{recact} eq 'new') {
|
---|
[16] | 315 |
|
---|
[95] | 316 | changepage(page => "reclist", errmsg => "You are not permitted to add records", id => $webvar{parentid})
|
---|
| 317 | unless ($permissions{admin} || $permissions{record_create});
|
---|
| 318 |
|
---|
[87] | 319 | $page->param(todo => "Add record");
|
---|
[15] | 320 | $page->param(recact => "add");
|
---|
[59] | 321 | $page->param(parentid => $webvar{parentid});
|
---|
| 322 | $page->param(defrec => $webvar{defrec});
|
---|
[16] | 323 |
|
---|
[59] | 324 | fill_recdata();
|
---|
| 325 |
|
---|
[15] | 326 | } elsif ($webvar{recact} eq 'add') {
|
---|
| 327 |
|
---|
[95] | 328 | changepage(page => "reclist", errmsg => "You are not permitted to add records", id => $webvar{parentid})
|
---|
| 329 | unless ($permissions{admin} || $permissions{record_create});
|
---|
| 330 |
|
---|
[15] | 331 | my @recargs = ($dbh,$webvar{defrec},$webvar{parentid},$webvar{name},$webvar{type},$webvar{address},$webvar{ttl});
|
---|
| 332 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV}) {
|
---|
| 333 | push @recargs, $webvar{distance};
|
---|
| 334 | if ($webvar{type} == $reverse_typemap{SRV}) {
|
---|
| 335 | push @recargs, $webvar{weight};
|
---|
| 336 | push @recargs, $webvar{port};
|
---|
| 337 | }
|
---|
| 338 | }
|
---|
[59] | 339 |
|
---|
[15] | 340 | my ($code,$msg) = addRec(@recargs);
|
---|
| 341 |
|
---|
| 342 | if ($code eq 'OK') {
|
---|
[57] | 343 | if ($webvar{defrec} eq 'y') {
|
---|
| 344 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
[63] | 345 | "Added default record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}");
|
---|
[57] | 346 | } else {
|
---|
| 347 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{parentid}, 'dom', 'group'),
|
---|
[63] | 348 | "Added record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}");
|
---|
[57] | 349 | }
|
---|
[15] | 350 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
| 351 | } else {
|
---|
[24] | 352 | $page->param(failed => 1);
|
---|
| 353 | $page->param(errmsg => $msg);
|
---|
| 354 | $page->param(wastrying => "adding");
|
---|
[87] | 355 | $page->param(todo => "Add record");
|
---|
[24] | 356 | $page->param(recact => "add");
|
---|
| 357 | $page->param(parentid => $webvar{parentid});
|
---|
| 358 | $page->param(defrec => $webvar{defrec});
|
---|
| 359 | $page->param(id => $webvar{id});
|
---|
[16] | 360 | fill_recdata(); # populate the form... er, mostly.
|
---|
[59] | 361 | if ($webvar{defrec} eq 'y') {
|
---|
| 362 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
[63] | 363 | "Failed adding default record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[59] | 364 | } else {
|
---|
| 365 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{parentid}, 'dom', 'group'),
|
---|
[63] | 366 | "Failed adding record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[59] | 367 | }
|
---|
[15] | 368 | }
|
---|
| 369 |
|
---|
[13] | 370 | } elsif ($webvar{recact} eq 'edit') {
|
---|
[15] | 371 |
|
---|
[95] | 372 | changepage(page => "reclist", errmsg => "You are not permitted to edit records", id => $webvar{parentid})
|
---|
| 373 | unless ($permissions{admin} || $permissions{record_edit});
|
---|
| 374 |
|
---|
[16] | 375 | $page->param(todo => "Update record");
|
---|
| 376 | $page->param(recact => "update");
|
---|
| 377 | $page->param(parentid => $webvar{parentid});
|
---|
[17] | 378 | $page->param(id => $webvar{id});
|
---|
[16] | 379 | $page->param(defrec => $webvar{defrec});
|
---|
[90] | 380 | my $recdata = getRecLine($dbh, $webvar{defrec}, $webvar{id});
|
---|
| 381 | $page->param(name => $recdata->{host});
|
---|
| 382 | $page->param(address => $recdata->{val});
|
---|
| 383 | $page->param(distance => $recdata->{distance});
|
---|
| 384 | $page->param(weight => $recdata->{weight});
|
---|
| 385 | $page->param(port => $recdata->{port});
|
---|
| 386 | $page->param(ttl => $recdata->{ttl});
|
---|
| 387 | fill_rectypes($recdata->{type});
|
---|
[16] | 388 |
|
---|
| 389 | } elsif ($webvar{recact} eq 'update') {
|
---|
| 390 |
|
---|
[95] | 391 | changepage(page => "reclist", errmsg => "You are not permitted to edit records", id => $webvar{parentid})
|
---|
| 392 | unless ($permissions{admin} || $permissions{record_edit});
|
---|
| 393 |
|
---|
[16] | 394 | my ($code,$msg) = updateRec($dbh,$webvar{defrec},$webvar{id},
|
---|
| 395 | $webvar{name},$webvar{type},$webvar{address},$webvar{ttl},
|
---|
| 396 | $webvar{distance},$webvar{weight},$webvar{port});
|
---|
| 397 |
|
---|
| 398 | if ($code eq 'OK') {
|
---|
[55] | 399 | ##fixme: need more magic to get proper group - if domain was fiddled
|
---|
| 400 | # from search-subgroups listing, may not be "current" group
|
---|
[57] | 401 |
|
---|
| 402 | # SELECT d.group_id FROM domains d INNER JOIN records r ON d.domain_id=r.domain_id WHERE r.record_id=?
|
---|
| 403 | # $sth->execute($webvar{id});
|
---|
| 404 | ##log
|
---|
| 405 | if ($webvar{defrec} eq 'y') {
|
---|
| 406 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
| 407 | "Updated default record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}");
|
---|
| 408 | } else {
|
---|
| 409 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{id}, 'rec', 'group'),
|
---|
| 410 | "Updated record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}");
|
---|
| 411 | }
|
---|
[17] | 412 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
[16] | 413 | } else {
|
---|
| 414 | $page->param(failed => 1);
|
---|
| 415 | $page->param(errmsg => $msg);
|
---|
| 416 | $page->param(wastrying => "updating");
|
---|
| 417 | $page->param(todo => "Update record");
|
---|
| 418 | $page->param(recact => "update");
|
---|
| 419 | $page->param(parentid => $webvar{parentid});
|
---|
| 420 | $page->param(defrec => $webvar{defrec});
|
---|
[17] | 421 | $page->param(id => $webvar{id});
|
---|
[16] | 422 | fill_recdata();
|
---|
[59] | 423 | if ($webvar{defrec} eq 'y') {
|
---|
| 424 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
[63] | 425 | "Failed updating default record '$typemap{$webvar{type}} $webvar{name} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[59] | 426 | } else {
|
---|
| 427 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{parentid}, 'dom', 'group'),
|
---|
[63] | 428 | "Failed updating record '$typemap{$webvar{type}} $webvar{name} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[59] | 429 | }
|
---|
[16] | 430 | }
|
---|
[13] | 431 | }
|
---|
[16] | 432 |
|
---|
[13] | 433 | if ($webvar{defrec} eq 'y') {
|
---|
[20] | 434 | $page->param(dohere => "default records in group ".groupName($dbh,$webvar{parentid}));
|
---|
[13] | 435 | } else {
|
---|
[24] | 436 | $page->param(parentid => $webvar{parentid});
|
---|
[16] | 437 | $page->param(dohere => domainName($dbh,$webvar{parentid}));
|
---|
[13] | 438 | }
|
---|
| 439 |
|
---|
[2] | 440 | } elsif ($webvar{page} eq 'delrec') {
|
---|
| 441 |
|
---|
[95] | 442 | changepage(page => "reclist", errmsg => "You are not permitted to delete records", id => $webvar{parentid})
|
---|
| 443 | unless ($permissions{admin} || $permissions{record_delete});
|
---|
| 444 |
|
---|
[2] | 445 | $page->param(id => $webvar{id});
|
---|
| 446 | $page->param(defrec => $webvar{defrec});
|
---|
[39] | 447 | $page->param(parentid => $webvar{parentid});
|
---|
[2] | 448 | # first pass = confirm y/n (sorta)
|
---|
| 449 | if (!defined($webvar{del})) {
|
---|
| 450 | $page->param(del_getconf => 1);
|
---|
[3] | 451 | my %rec = getRecLine($dbh,$webvar{defrec},$webvar{id});
|
---|
| 452 | $page->param(host => $rec{host});
|
---|
| 453 | $page->param(ftype => $typemap{$rec{type}});
|
---|
| 454 | $page->param(recval => $rec{val});
|
---|
[39] | 455 | } elsif ($webvar{del} eq 'ok') {
|
---|
[62] | 456 | # get rec data before we try to delete it
|
---|
| 457 | my %rec = getRecLine($dbh,$webvar{defrec},$webvar{id});
|
---|
[3] | 458 | my ($code,$msg) = delRec($dbh,$webvar{defrec},$webvar{id});
|
---|
| 459 | if ($code ne 'OK') {
|
---|
| 460 | ## need to find failure mode
|
---|
[62] | 461 | if ($webvar{defrec} eq 'y') {
|
---|
| 462 | logaction(0, $session->param("username"), $rec{parid},
|
---|
[63] | 463 | "Failed deleting default record '$rec{host} $typemap{$rec{type}} $rec{val}', TTL $rec{ttl} ($msg)");
|
---|
[62] | 464 | } else {
|
---|
| 465 | logaction($rec{parid}, $session->param("username"), parentID($rec{parid}, 'dom', 'group'),
|
---|
[63] | 466 | "Failed deleting record '$rec{host} $typemap{$rec{type}} $rec{val}', TTL $rec{ttl} ($msg)");
|
---|
[62] | 467 | }
|
---|
[88] | 468 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec},
|
---|
[95] | 469 | errmsg => "Error deleting record: $msg");
|
---|
| 470 | # $page->param(del_failed => 1);
|
---|
| 471 | # $page->param(errmsg => $msg);
|
---|
| 472 | # showdomain($webvar{defrec}, $webvar{parentid});
|
---|
[39] | 473 | } else {
|
---|
[62] | 474 | if ($webvar{defrec} eq 'y') {
|
---|
| 475 | logaction(0, $session->param("username"), $rec{parid},
|
---|
| 476 | "Deleted default record '$rec{host} $typemap{$rec{type}} $rec{val}', TTL $rec{ttl}");
|
---|
| 477 | } else {
|
---|
| 478 | logaction($rec{parid}, $session->param("username"), parentID($rec{parid}, 'dom', 'group'),
|
---|
| 479 | "Deleted record '$rec{host} $typemap{$rec{type}} $rec{val}', TTL $rec{ttl}");
|
---|
| 480 | }
|
---|
[39] | 481 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
[3] | 482 | }
|
---|
[39] | 483 | } else {
|
---|
| 484 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
[2] | 485 | }
|
---|
| 486 |
|
---|
| 487 | } elsif ($webvar{page} eq 'editsoa') {
|
---|
| 488 |
|
---|
[39] | 489 | fillsoa($webvar{defrec},$webvar{id});
|
---|
[2] | 490 |
|
---|
| 491 | } elsif ($webvar{page} eq 'updatesoa') {
|
---|
| 492 |
|
---|
| 493 | my $sth;
|
---|
| 494 | my $sql = '';
|
---|
| 495 | # no domain ID, so we're editing the default SOA for a group (we don't care which one here)
|
---|
| 496 | # plus a bit of magic to update the appropriate table
|
---|
[39] | 497 | $sql = "update ".($webvar{defrec} eq 'y' ? "default_records" : "records").
|
---|
[2] | 498 | " set host='$webvar{prins}:$webvar{contact}',".
|
---|
| 499 | " val='$webvar{refresh}:$webvar{retry}:$webvar{expire}:$webvar{minttl}',".
|
---|
| 500 | " ttl=$webvar{ttl} where record_id=$webvar{recid}";
|
---|
| 501 | $sth = $dbh->prepare($sql);
|
---|
| 502 | $sth->execute;
|
---|
| 503 |
|
---|
| 504 | if ($sth->err) {
|
---|
| 505 | $page->param(update_failed => 1);
|
---|
| 506 | $page->param(msg => $DBI::errstr);
|
---|
[39] | 507 | fillsoa($webvar{defrec},$webvar{id});
|
---|
[2] | 508 | } else {
|
---|
[57] | 509 |
|
---|
| 510 | ##fixme! need to set group ID properly here
|
---|
| 511 | # SELECT group_id FROM domains WHERE domain_id=?
|
---|
| 512 | # $sth->execute($webvar{id});
|
---|
| 513 | ##log
|
---|
[55] | 514 | logaction(0, $session->param("username"), $webvar{group},
|
---|
| 515 | "Updated SOA (ns $webvar{prins}, contact $webvar{contact}, refresh $webvar{refresh},".
|
---|
| 516 | " retry $webvar{retry}, expire $webvar{expire}, minTTL $webvar{minttl}, TTL $webvar{ttl}");
|
---|
[39] | 517 | changepage(page => "reclist", id => $webvar{id}, defrec => $webvar{defrec});
|
---|
[57] | 518 | # $page->param(update_failed => 0);
|
---|
[39] | 519 | # showdomain('y',1);
|
---|
[2] | 520 | }
|
---|
| 521 |
|
---|
[17] | 522 | } elsif ($webvar{page} eq 'grpman') {
|
---|
[2] | 523 |
|
---|
[22] | 524 | listgroups();
|
---|
[18] | 525 | $page->param(curpage => $webvar{page});
|
---|
| 526 |
|
---|
[17] | 527 | } elsif ($webvar{page} eq 'newgrp') {
|
---|
[20] | 528 |
|
---|
[18] | 529 | # do.. uhh.. stuff.. if we have no webvar{action}
|
---|
| 530 | if ($webvar{action} && $webvar{action} eq 'add') {
|
---|
[66] | 531 | my %newperms;
|
---|
| 532 | foreach (@permtypes) {
|
---|
| 533 | $newperms{$_} = 0;
|
---|
[92] | 534 | $newperms{$_} = (defined($webvar{$_}) && $webvar{$_} eq 'on' ? 1 : 0);
|
---|
[66] | 535 | }
|
---|
[88] | 536 | # not gonna provide the 4th param: template-or-clone flag, just yet
|
---|
[66] | 537 | my ($code,$msg) = addGroup($dbh, $webvar{newgroup}, $webvar{pargroup}, \%newperms);
|
---|
[57] | 538 | if ($code eq 'OK') {
|
---|
[55] | 539 | logaction(0, $session->param("username"), $webvar{pargroup}, "Added group $webvar{newgroup}");
|
---|
| 540 | changepage(page => "grpman");
|
---|
| 541 | }
|
---|
[66] | 542 | # no point in doing extra work
|
---|
| 543 | fill_permissions($page, \%newperms);
|
---|
[18] | 544 | $page->param(add_failed => 1);
|
---|
| 545 | $page->param(errmsg => $msg);
|
---|
| 546 | $page->param(newgroup => $webvar{newgroup});
|
---|
[66] | 547 | fill_grouplist('pargroup',$webvar{pargroup});
|
---|
[19] | 548 | } else {
|
---|
[66] | 549 | fill_grouplist('pargroup',$curgroup);
|
---|
[88] | 550 | # fill default permissions with immediate parent's current ones
|
---|
[66] | 551 | my %parperms;
|
---|
| 552 | getPermissions($dbh, 'group', $curgroup, \%parperms);
|
---|
| 553 | fill_permissions($page, \%parperms);
|
---|
[18] | 554 | }
|
---|
[20] | 555 |
|
---|
[22] | 556 | } elsif ($webvar{page} eq 'delgrp') {
|
---|
[20] | 557 |
|
---|
| 558 | $page->param(id => $webvar{id});
|
---|
| 559 | # first pass = confirm y/n (sorta)
|
---|
| 560 | if (!defined($webvar{del})) {
|
---|
| 561 | $page->param(del_getconf => 1);
|
---|
[23] | 562 | # $page->param(groupname => groupName($dbh,$webvar{id}));
|
---|
[20] | 563 | # print some neato things?
|
---|
| 564 |
|
---|
| 565 | # } else {
|
---|
| 566 | # #whether actually deleting or cancelling we redirect to the group list, default format
|
---|
| 567 |
|
---|
| 568 | } elsif ($webvar{del} eq 'ok') {
|
---|
[57] | 569 | my $deleteme = groupName($dbh,$webvar{id}); # get this before we delete it...
|
---|
[20] | 570 | my ($code,$msg) = delGroup($dbh, $webvar{id});
|
---|
| 571 | if ($code ne 'OK') {
|
---|
| 572 | # need to find failure mode
|
---|
[92] | 573 | changepage(page => "grpman", del_failed => 1, errmsg => $msg);
|
---|
[88] | 574 | ##fixme: log
|
---|
[20] | 575 | } else {
|
---|
[57] | 576 | ##fixme: need to clean up log when deleting a major container
|
---|
| 577 | logaction(0, $session->param("username"), $webvar{curgroup}, "Deleted group $deleteme");
|
---|
[20] | 578 | # success. go back to the domain list, do not pass "GO"
|
---|
| 579 | changepage(page => "grpman");
|
---|
| 580 | }
|
---|
| 581 | } else {
|
---|
| 582 | # cancelled. whee!
|
---|
| 583 | changepage(page => "grpman");
|
---|
| 584 | }
|
---|
[23] | 585 | $page->param(delgroupname => groupName($dbh, $webvar{id}));
|
---|
[24] | 586 |
|
---|
[65] | 587 | } elsif ($webvar{page} eq 'edgroup') {
|
---|
| 588 |
|
---|
| 589 | if ($webvar{action} eq 'updperms') {
|
---|
| 590 | # extra safety check; make sure user can't construct a URL to bypass ACLs
|
---|
| 591 | my %curperms;
|
---|
| 592 | getPermissions($dbh, 'group', $webvar{gid}, \%curperms);
|
---|
[66] | 593 | my %chperms;
|
---|
| 594 | foreach (@permtypes) {
|
---|
[65] | 595 | $webvar{$_} = 0 if !defined($webvar{$_});
|
---|
| 596 | $webvar{$_} = 1 if $webvar{$_} eq 'on';
|
---|
[66] | 597 | $chperms{$_} = $webvar{$_} if $curperms{$_} ne $webvar{$_};
|
---|
[65] | 598 | }
|
---|
[66] | 599 | my ($code,$msg) = changePermissions($dbh, 'group', $webvar{gid}, \%chperms);
|
---|
| 600 | if ($code eq 'OK') {
|
---|
| 601 | logaction(0, $session->param("username"), $webvar{gid}, "Changed default permissions in group $webvar{gid}");
|
---|
| 602 | changepage(page => "grpman");
|
---|
| 603 | }
|
---|
| 604 | # no point in doing extra work
|
---|
| 605 | fill_permissions($page, \%chperms);
|
---|
| 606 | $page->param(errmsg => $msg);
|
---|
[65] | 607 | }
|
---|
| 608 | $page->param(gid => $webvar{gid});
|
---|
| 609 | $page->param(grpmeddle => groupName($dbh, $webvar{gid}));
|
---|
| 610 | my %grpperms;
|
---|
| 611 | getPermissions($dbh, 'group', $webvar{gid}, \%grpperms);
|
---|
[66] | 612 | fill_permissions($page, \%grpperms);
|
---|
[65] | 613 |
|
---|
[24] | 614 | } elsif ($webvar{page} eq 'useradmin') {
|
---|
| 615 |
|
---|
[51] | 616 | if (defined($webvar{action})) {
|
---|
| 617 | userStatus($dbh,$webvar{id},$webvar{action});
|
---|
| 618 | }
|
---|
| 619 |
|
---|
[24] | 620 | $page->param(curpage => $webvar{page});
|
---|
| 621 |
|
---|
[51] | 622 | list_users();
|
---|
| 623 |
|
---|
[67] | 624 | } elsif ($webvar{page} eq 'user') {
|
---|
| 625 |
|
---|
[83] | 626 | #fill_actypelist($webvar{accttype});
|
---|
[67] | 627 | fill_clonemelist();
|
---|
| 628 | my %grpperms;
|
---|
| 629 | getPermissions($dbh, 'group', $curgroup, \%grpperms);
|
---|
[83] | 630 |
|
---|
[67] | 631 | my $grppermlist = new HTML::Template(filename => "$templatedir/permlist.tmpl");
|
---|
| 632 | my %noaccess;
|
---|
| 633 | fill_permissions($grppermlist, \%grpperms, \%noaccess);
|
---|
| 634 | $grppermlist->param(info => 1);
|
---|
| 635 | $page->param(grpperms => $grppermlist->output);
|
---|
[83] | 636 |
|
---|
[67] | 637 | $page->param(is_admin => $permissions{admin});
|
---|
| 638 |
|
---|
[88] | 639 | $webvar{action} = '' if !$webvar{action};
|
---|
| 640 |
|
---|
[83] | 641 | if ($webvar{action} eq 'add' or $webvar{action} eq 'update') {
|
---|
[67] | 642 |
|
---|
[83] | 643 | $page->param(add => 1) if $webvar{action} eq 'add';
|
---|
| 644 |
|
---|
[67] | 645 | my ($code,$msg);
|
---|
| 646 |
|
---|
| 647 | my $alterperms = 0; # flag iff we need to force custom permissions due to user's current access limits
|
---|
| 648 |
|
---|
[87] | 649 | my %newperms; # we're going to prefill the existing permissions, so we can change them.
|
---|
| 650 | getPermissions($dbh, 'user', $webvar{uid}, \%newperms);
|
---|
| 651 |
|
---|
[67] | 652 | if ($webvar{pass1} ne $webvar{pass2}) {
|
---|
| 653 | $code = 'FAIL';
|
---|
| 654 | $msg = "Passwords don't match";
|
---|
| 655 | } else {
|
---|
| 656 |
|
---|
[83] | 657 | # assemble a permission string - far simpler than trying to pass an
|
---|
| 658 | # indeterminate set of permission flags individually
|
---|
[67] | 659 |
|
---|
[83] | 660 | # But first, we have to see if the user can add any particular
|
---|
| 661 | # permissions; otherwise we have a priviledge escalation. Whee.
|
---|
| 662 |
|
---|
| 663 | if (!$permissions{admin}) {
|
---|
| 664 | my %grpperms;
|
---|
| 665 | getPermissions($dbh, 'group', $curgroup, \%grpperms);
|
---|
| 666 | my $ret = comparePermissions(\%permissions, \%grpperms);
|
---|
| 667 | if ($ret ne '<' && $ret ne '!') {
|
---|
| 668 | # User's permissions are not a superset or equivalent to group. Can't inherit
|
---|
| 669 | # (and include access user doesn't currently have), so we force custom.
|
---|
| 670 | $webvar{perms_type} = 'custom';
|
---|
| 671 | $alterperms = 1;
|
---|
| 672 | }
|
---|
| 673 | }
|
---|
| 674 |
|
---|
[67] | 675 | my $permstring;
|
---|
| 676 | if ($webvar{perms_type} eq 'custom') {
|
---|
| 677 | $permstring = 'C:';
|
---|
| 678 | foreach (@permtypes) {
|
---|
[87] | 679 | if ($permissions{admin} || $permissions{$_}) {
|
---|
[67] | 680 | $permstring .= ",$_" if defined($webvar{$_}) && $webvar{$_} eq 'on';
|
---|
[87] | 681 | $newperms{$_} = (defined($webvar{$_}) && $webvar{$_} eq 'on' ? 1 : 0);
|
---|
[67] | 682 | }
|
---|
| 683 | }
|
---|
| 684 | $page->param(perm_custom => 1);
|
---|
| 685 | } elsif ($permissions{admin} && $webvar{perms_type} eq 'clone') {
|
---|
| 686 | $permstring = "c:$webvar{clonesrc}";
|
---|
[87] | 687 | getPermissions($dbh, 'user', $webvar{clonesrc}, \%newperms);
|
---|
[67] | 688 | $page->param(perm_clone => 1);
|
---|
| 689 | } else {
|
---|
| 690 | $permstring = 'i';
|
---|
| 691 | }
|
---|
[83] | 692 | if ($webvar{action} eq 'add') {
|
---|
| 693 | ($code,$msg) = addUser($dbh, $webvar{uname}, $curgroup, $webvar{pass1},
|
---|
| 694 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype}, $permstring,
|
---|
| 695 | $webvar{fname}, $webvar{lname}, $webvar{phone});
|
---|
[90] | 696 | logaction(0, $session->param("username"), $curgroup, "Added user $webvar{uname} (uid $msg)")
|
---|
| 697 | if $code eq 'OK';
|
---|
[83] | 698 | } else {
|
---|
| 699 | # User update is icky. I'd really like to do this in one atomic
|
---|
| 700 | # operation, but that would duplicate a **lot** of code in DNSDB.pm
|
---|
| 701 | # Allowing for changing group, but not coding web support just yet.
|
---|
| 702 | ($code,$msg) = updateUser($dbh, $webvar{uid}, $webvar{uname}, $webvar{gid}, $webvar{pass1},
|
---|
| 703 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype},
|
---|
| 704 | $webvar{fname}, $webvar{lname}, $webvar{phone});
|
---|
| 705 | if ($code eq 'OK') {
|
---|
[90] | 706 | $newperms{admin} = 1 if $webvar{accttype} eq 'S';
|
---|
[87] | 707 | ($code,$msg) = changePermissions($dbh, 'user', $webvar{uid}, \%newperms, ($permstring eq 'i'));
|
---|
[83] | 708 | }
|
---|
[90] | 709 | logaction(0, $session->param("username"), $curgroup,
|
---|
| 710 | "Updated uid $webvar{uid}, user $webvar{uname} ($webvar{fname} $webvar{lname})");
|
---|
[83] | 711 | }
|
---|
[67] | 712 | }
|
---|
| 713 |
|
---|
| 714 | if ($code eq 'OK') {
|
---|
[83] | 715 |
|
---|
[67] | 716 | if ($alterperms) {
|
---|
| 717 | changepage(page => "useradmin", warnmsg =>
|
---|
[83] | 718 | "You can only grant permissions you hold. $webvar{uname} ".
|
---|
| 719 | ($webvar{action} eq 'add' ? 'added' : 'updated')." with reduced access.");
|
---|
[67] | 720 | } else {
|
---|
| 721 | changepage(page => "useradmin");
|
---|
| 722 | }
|
---|
[83] | 723 |
|
---|
| 724 | # add/update failed:
|
---|
[67] | 725 | } else {
|
---|
| 726 | $page->param(add_failed => 1);
|
---|
[83] | 727 | $page->param(action => $webvar{action});
|
---|
| 728 | $page->param(set_permgroup => 1);
|
---|
[87] | 729 | if ($webvar{perms_type} eq 'inherit') { # set permission class radio
|
---|
| 730 | $page->param(perm_inherit => 1);
|
---|
| 731 | } elsif ($webvar{perms_type} eq 'clone') {
|
---|
| 732 | $page->param(perm_clone => 1);
|
---|
| 733 | } else {
|
---|
| 734 | $page->param(perm_custom => 1);
|
---|
| 735 | }
|
---|
[67] | 736 | $page->param(uname => $webvar{uname});
|
---|
| 737 | $page->param(fname => $webvar{fname});
|
---|
| 738 | $page->param(lname => $webvar{lname});
|
---|
| 739 | $page->param(pass1 => $webvar{pass1});
|
---|
| 740 | $page->param(pass2 => $webvar{pass2});
|
---|
| 741 | $page->param(errmsg => $msg);
|
---|
[83] | 742 | fill_permissions($page, \%newperms);
|
---|
| 743 | fill_actypelist($webvar{accttype});
|
---|
[67] | 744 | fill_clonemelist();
|
---|
[88] | 745 | ##fixme: log
|
---|
[67] | 746 | }
|
---|
| 747 |
|
---|
| 748 | } elsif ($webvar{action} eq 'edit') {
|
---|
[83] | 749 |
|
---|
| 750 | $page->param(set_permgroup => 1);
|
---|
| 751 | $page->param(action => 'update');
|
---|
| 752 | $page->param(uid => $webvar{user});
|
---|
| 753 | fill_clonemelist();
|
---|
| 754 |
|
---|
| 755 | my $userinfo = getUserData($dbh,$webvar{user});
|
---|
| 756 | fill_actypelist($userinfo->{type});
|
---|
| 757 | # not using this yet, but adding it now means we can *much* more easily do so later.
|
---|
| 758 | $page->param(gid => $webvar{group_id});
|
---|
| 759 |
|
---|
| 760 | my %curperms;
|
---|
| 761 | getPermissions($dbh, 'user', $webvar{user}, \%curperms);
|
---|
| 762 | fill_permissions($page, \%curperms);
|
---|
| 763 |
|
---|
| 764 | $page->param(uname => $userinfo->{username});
|
---|
| 765 | $page->param(fname => $userinfo->{firstname});
|
---|
| 766 | $page->param(lname => $userinfo->{lastname});
|
---|
[87] | 767 | $page->param(set_permgroup => 1);
|
---|
[83] | 768 | if ($userinfo->{inherit_perm}) {
|
---|
| 769 | $page->param(perm_inherit => 1);
|
---|
| 770 | } else {
|
---|
| 771 | $page->param(perm_custom => 1);
|
---|
| 772 | }
|
---|
[87] | 773 | ##work
|
---|
[83] | 774 | # } elsif ($webvar{action} eq 'update') {
|
---|
[67] | 775 | } else {
|
---|
| 776 | # default is "new"
|
---|
[83] | 777 | $page->param(add => 1);
|
---|
| 778 | $page->param(action => 'add');
|
---|
| 779 | fill_permissions($page, \%grpperms);
|
---|
| 780 | fill_actypelist();
|
---|
[67] | 781 | }
|
---|
| 782 |
|
---|
[24] | 783 | } elsif ($webvar{page} eq 'newuser') {
|
---|
| 784 |
|
---|
| 785 | # foo?
|
---|
| 786 | fill_actypelist();
|
---|
[65] | 787 | fill_clonemelist();
|
---|
[24] | 788 |
|
---|
[67] | 789 | my %grpperms;
|
---|
| 790 | getPermissions($dbh, 'group', $curgroup, \%grpperms);
|
---|
| 791 | fill_permissions($page, \%grpperms);
|
---|
| 792 |
|
---|
| 793 | my $grppermlist = new HTML::Template(filename => "$templatedir/permlist.tmpl");
|
---|
| 794 | my %noaccess;
|
---|
| 795 | fill_permissions($grppermlist, \%grpperms, \%noaccess);
|
---|
| 796 | $grppermlist->param(info => 1);
|
---|
| 797 | $page->param(grpperms => $grppermlist->output);
|
---|
| 798 |
|
---|
[88] | 799 | #} elsif ($webvar{page} eq 'adduser') {
|
---|
| 800 | #
|
---|
| 801 | # my ($code,$msg);
|
---|
| 802 | #
|
---|
| 803 | # if ($webvar{pass1} ne $webvar{pass2}) {
|
---|
| 804 | # $code = 'FAIL';
|
---|
| 805 | # $msg = "Passwords don't match";
|
---|
| 806 | # } else {
|
---|
| 807 | ## assemble a permission string - far simpler than trying to pass an
|
---|
| 808 | ## indeterminate set of permission flags individually
|
---|
| 809 | #my $permstring;
|
---|
| 810 | #if ($webvar{perms_type} eq 'custom') {
|
---|
| 811 | # $permstring = 'C:,g:,u:,d:,r:';
|
---|
| 812 | # $page->param(perm_custom => 1);
|
---|
| 813 | #} elsif ($webvar{perms_type} eq 'clone') {
|
---|
| 814 | # $permstring = 'c:';
|
---|
| 815 | # $page->param(perm_clone => 1);
|
---|
| 816 | #} else {
|
---|
| 817 | # $permstring = 'i';
|
---|
| 818 | ## $page->param(perm_inherit => 1);
|
---|
| 819 | #}
|
---|
| 820 | # ($code,$msg) = addUser($dbh,$webvar{uname}, $webvar{group}, $webvar{pass1},
|
---|
| 821 | # ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype},
|
---|
| 822 | # $webvar{fname}, $webvar{lname}, $webvar{phone});
|
---|
| 823 | # }
|
---|
| 824 | #
|
---|
| 825 | ## hokay, a bit of magic to decide which page we hit.
|
---|
| 826 | # if ($code eq 'OK') {
|
---|
| 827 | ###log
|
---|
| 828 | # logaction(0, $session->param("username"), $webvar{group},
|
---|
| 829 | # "Added user $webvar{uname} ($webvar{fname} $webvar{lname})");
|
---|
| 830 | # changepage(page => "useradmin");
|
---|
| 831 | # } else {
|
---|
| 832 | ## oddity - apparently, xhtml 1.0 strict swallows username as an HTML::Template var. O_o
|
---|
| 833 | # $page->param(add_failed => 1);
|
---|
| 834 | # $page->param(uname => $webvar{uname});
|
---|
| 835 | # $page->param(fname => $webvar{fname});
|
---|
| 836 | # $page->param(lname => $webvar{lname});
|
---|
| 837 | # $page->param(pass1 => $webvar{pass1});
|
---|
| 838 | # $page->param(pass2 => $webvar{pass2});
|
---|
| 839 | # $page->param(errmsg => $msg);
|
---|
| 840 | # fill_actypelist($webvar{accttype});
|
---|
| 841 | # fill_clonemelist();
|
---|
| 842 | # }
|
---|
| 843 | #
|
---|
| 844 | ## $page->param(add_failed => 1);
|
---|
| 845 | #
|
---|
[90] | 846 |
|
---|
| 847 | } elsif ($webvar{page} eq 'deluser') {
|
---|
| 848 |
|
---|
| 849 | $page->param(id => $webvar{id});
|
---|
| 850 | # first pass = confirm y/n (sorta)
|
---|
| 851 | if (!defined($webvar{del})) {
|
---|
| 852 | $page->param(del_getconf => 1);
|
---|
| 853 | $page->param(user => userFullName($dbh,$webvar{id}));
|
---|
| 854 | } elsif ($webvar{del} eq 'ok') {
|
---|
| 855 | ##fixme: find group id user is in (for logging) *before* we delete the user
|
---|
| 856 | ##fixme: get other user data too for log
|
---|
[93] | 857 | my $userref = getUserData($dbh, $webvar{id});
|
---|
[90] | 858 | my ($code,$msg) = delUser($dbh, $webvar{id});
|
---|
| 859 | if ($code ne 'OK') {
|
---|
| 860 | # need to find failure mode
|
---|
| 861 | $page->param(del_failed => 1);
|
---|
| 862 | $page->param(errmsg => $msg);
|
---|
| 863 | list_users($curgroup);
|
---|
| 864 | } else {
|
---|
| 865 | # success. go back to the user list, do not pass "GO"
|
---|
[93] | 866 | # actions on users have a domain id of 0, always
|
---|
| 867 | logaction(0, $session->param("username"), $curgroup, "Deleted user $webvar{id}/".$userref->{username}.
|
---|
| 868 | " (".$userref->{lastname}.", ".$userref->{firstname}.")");
|
---|
[90] | 869 | changepage(page => "useradmin");
|
---|
| 870 | }
|
---|
| 871 | } else {
|
---|
| 872 | # cancelled. whee!
|
---|
| 873 | changepage(page => "useradmin");
|
---|
| 874 | }
|
---|
| 875 |
|
---|
[88] | 876 | #} elsif ($webvar{page} eq 'edituser') {
|
---|
[24] | 877 |
|
---|
[30] | 878 | } elsif ($webvar{page} eq 'dnsq') {
|
---|
| 879 |
|
---|
| 880 | $page->param(qfor => $webvar{qfor}) if $webvar{qfor};
|
---|
[31] | 881 | fill_rectypes($webvar{type} ? $webvar{type} : '', 1);
|
---|
| 882 | $page->param(nrecurse => $webvar{nrecurse}) if $webvar{nrecurse};
|
---|
[30] | 883 | $page->param(resolver => $webvar{resolver}) if $webvar{resolver};
|
---|
| 884 |
|
---|
| 885 | if ($webvar{qfor}) {
|
---|
| 886 | my $resolv = Net::DNS::Resolver->new;
|
---|
[31] | 887 | $resolv->tcp_timeout(5); # make me adjustable!
|
---|
| 888 | $resolv->udp_timeout(5); # make me adjustable!
|
---|
| 889 | $resolv->recurse(0) if $webvar{nrecurse};
|
---|
| 890 | $resolv->nameservers($webvar{resolver}) if $webvar{resolver};
|
---|
[30] | 891 | my $query = $resolv->query($webvar{qfor}, $typemap{$webvar{type}});
|
---|
| 892 | if ($query) {
|
---|
| 893 |
|
---|
| 894 | $page->param(showresults => 1);
|
---|
| 895 |
|
---|
| 896 | my @answer;
|
---|
| 897 | foreach my $rr ($query->answer) {
|
---|
| 898 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 899 | my %row;
|
---|
| 900 | my ($host,$ttl,$class,$type,$data) =
|
---|
[31] | 901 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/s);
|
---|
[30] | 902 | $row{host} = $host;
|
---|
| 903 | $row{ftype} = $type;
|
---|
[31] | 904 | $row{rdata} = ($type eq 'SOA' ? "<pre>$data</pre>" : $data);
|
---|
[30] | 905 | push @answer, \%row;
|
---|
| 906 | }
|
---|
| 907 | $page->param(answer => \@answer);
|
---|
| 908 |
|
---|
| 909 | my @additional;
|
---|
| 910 | foreach my $rr ($query->additional) {
|
---|
| 911 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 912 | my %row;
|
---|
| 913 | my ($host,$ttl,$class,$type,$data) =
|
---|
| 914 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/);
|
---|
| 915 | $row{host} = $host;
|
---|
| 916 | $row{ftype} = $type;
|
---|
| 917 | $row{rdata} = $data;
|
---|
| 918 | push @additional, \%row;
|
---|
| 919 | }
|
---|
| 920 | $page->param(additional => \@additional);
|
---|
| 921 |
|
---|
| 922 | my @authority;
|
---|
| 923 | foreach my $rr ($query->authority) {
|
---|
| 924 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 925 | my %row;
|
---|
| 926 | my ($host,$ttl,$class,$type,$data) =
|
---|
| 927 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/);
|
---|
| 928 | $row{host} = $host;
|
---|
| 929 | $row{ftype} = $type;
|
---|
| 930 | $row{rdata} = $data;
|
---|
| 931 | push @authority, \%row;
|
---|
| 932 | }
|
---|
| 933 | $page->param(authority => \@authority);
|
---|
| 934 |
|
---|
| 935 | $page->param(usedresolver => $resolv->answerfrom);
|
---|
| 936 | $page->param(frtype => $typemap{$webvar{type}});
|
---|
| 937 |
|
---|
| 938 | } else {
|
---|
| 939 | $page->param(errmsg => $resolv->errorstring);
|
---|
| 940 | }
|
---|
| 941 | }
|
---|
| 942 | ## done DNS query
|
---|
| 943 |
|
---|
[31] | 944 | } elsif ($webvar{page} eq 'axfr') {
|
---|
| 945 |
|
---|
| 946 | # don't need this while we've got the dropdown in the menu. hmm.
|
---|
| 947 | #fill_grouplist;
|
---|
| 948 |
|
---|
| 949 | $page->param(ifrom => $webvar{ifrom}) if $webvar{ifrom};
|
---|
| 950 | $page->param(rwsoa => $webvar{rwsoa}) if $webvar{rwsoa};
|
---|
| 951 | $page->param(rwns => $webvar{rwns}) if $webvar{rwns};
|
---|
[37] | 952 | $page->param(dominactive => 1) if (!$webvar{domactive} && $webvar{doit}); # eww.
|
---|
[31] | 953 | $page->param(importdoms => $webvar{importdoms}) if $webvar{importdoms};
|
---|
[33] | 954 |
|
---|
[91] | 955 | # shut up warning about uninitialized variable
|
---|
| 956 | $webvar{doit} = '' if !defined($webvar{doit});
|
---|
| 957 |
|
---|
[33] | 958 | if ($webvar{doit} eq 'y' && !$webvar{ifrom}) {
|
---|
| 959 | $page->param(errmsg => "Need to set host to import from");
|
---|
| 960 | } elsif ($webvar{doit} eq 'y' && !$webvar{importdoms}) {
|
---|
| 961 | $page->param(errmsg => "Need domains to import");
|
---|
[91] | 962 | } elsif ($webvar{doit} eq 'y') {
|
---|
[33] | 963 | my @domlist = split /\s+/, $webvar{importdoms};
|
---|
| 964 | my @results;
|
---|
| 965 | foreach my $domain (@domlist) {
|
---|
[34] | 966 | my %row;
|
---|
| 967 | my ($code,$msg) = importAXFR($dbh, $webvar{ifrom}, $domain, $webvar{group},
|
---|
| 968 | $webvar{domstatus}, $webvar{rwsoa}, $webvar{rwns});
|
---|
[35] | 969 | $row{domok} = $msg if $code eq 'OK';
|
---|
| 970 | if ($code eq 'WARN') {
|
---|
| 971 | $msg =~ s|\n|<br />|g;
|
---|
| 972 | $row{domwarn} = $msg;
|
---|
| 973 | }
|
---|
[37] | 974 | if ($code eq 'FAIL') {
|
---|
[91] | 975 | $msg =~ s|\n|<br />\n|g;
|
---|
[37] | 976 | $row{domerr} = $msg;
|
---|
| 977 | }
|
---|
[91] | 978 | $msg = "<br />\n".$msg if $msg =~ m|<br />|;
|
---|
| 979 | logaction(domainID($dbh, $domain), $session->param("username"), $webvar{group},
|
---|
| 980 | "AXFR import $domain from $webvar{ifrom} ($code): $msg");
|
---|
[33] | 981 | $row{domain} = $domain;
|
---|
| 982 | push @results, \%row;
|
---|
| 983 | }
|
---|
| 984 | $page->param(axfrresults => \@results);
|
---|
| 985 | }
|
---|
| 986 |
|
---|
[48] | 987 | } elsif ($webvar{page} eq 'whoisq') {
|
---|
[47] | 988 |
|
---|
[48] | 989 | if ($webvar{qfor}) {
|
---|
| 990 | use Net::Whois::Raw;
|
---|
| 991 | use Text::Wrap;
|
---|
| 992 |
|
---|
| 993 | # caching useful?
|
---|
| 994 | #$Net::Whois::Raw::CACHE_DIR = "/var/spool/pwhois/";
|
---|
| 995 | #$Net::Whois::Raw::CACHE_TIME = 60;
|
---|
| 996 |
|
---|
| 997 | my ($dominfo, $whois_server) = whois($webvar{qfor});
|
---|
| 998 | ##fixme: if we're given an IP, try rwhois as well as whois so we get the real final data
|
---|
| 999 |
|
---|
| 1000 | # le sigh. idjits spit out data without linefeeds...
|
---|
| 1001 | $Text::Wrap::columns = 88;
|
---|
| 1002 |
|
---|
[93] | 1003 | # &%$@%@# high-bit crap. We should probably find a way to properly recode these
|
---|
| 1004 | # instead of one-by-one. Note CGI::Simple's escapeHTML() doesn't do more than
|
---|
| 1005 | # the bare minimum. :/
|
---|
[48] | 1006 | # Mainly an XHTML validation thing.
|
---|
[93] | 1007 | $dominfo = $q->escapeHTML($dominfo);
|
---|
[48] | 1008 | $dominfo =~ s/\xa9/\©/g;
|
---|
| 1009 | $dominfo =~ s/\xae/\®/g;
|
---|
| 1010 |
|
---|
| 1011 | $page->param(qfor => $webvar{qfor});
|
---|
| 1012 | $page->param(dominfo => wrap('','',$dominfo));
|
---|
| 1013 | $page->param(whois_server => $whois_server);
|
---|
| 1014 | } else {
|
---|
| 1015 | $page->param(errmsg => "Missing host or domain to query in WHOIS") if $webvar{askaway};
|
---|
| 1016 | }
|
---|
| 1017 |
|
---|
[47] | 1018 | } elsif ($webvar{page} eq 'log') {
|
---|
| 1019 |
|
---|
| 1020 | ##fixme put in some real log-munching stuff
|
---|
| 1021 | ##fixme need to add bits to *create* log entries...
|
---|
[59] | 1022 | my $sql = "SELECT user_id, email, name, entry, date_trunc('second',stamp) FROM log WHERE ";
|
---|
[60] | 1023 | my $id = $curgroup; # we do this because the group log may be called from (almost) any page,
|
---|
| 1024 | # but the others are much more limited. this is probably non-optimal.
|
---|
[61] | 1025 | if ($webvar{ltype} && $webvar{ltype} eq 'user') {
|
---|
[60] | 1026 | $sql .= "user_id=?";
|
---|
| 1027 | $id = $webvar{id};
|
---|
| 1028 | $page->param(logfor => 'user '.userFullName($dbh,$id));
|
---|
| 1029 | } elsif ($webvar{ltype} && $webvar{ltype} eq 'dom') {
|
---|
[59] | 1030 | $sql .= "domain_id=?";
|
---|
| 1031 | $id = $webvar{id};
|
---|
[60] | 1032 | $page->param(logfor => 'domain '.domainName($dbh,$id));
|
---|
[59] | 1033 | } else {
|
---|
| 1034 | # Default to listing curgroup log
|
---|
| 1035 | $sql .= "group_id=?";
|
---|
[60] | 1036 | $page->param(logfor => 'group '.groupName($dbh,$id));
|
---|
[59] | 1037 | }
|
---|
| 1038 | my $sth = $dbh->prepare($sql);
|
---|
| 1039 | $sth->execute($id);
|
---|
[47] | 1040 | my @logbits;
|
---|
[59] | 1041 | while (my ($uid, $email, $name, $entry, $stamp) = $sth->fetchrow_array) {
|
---|
[47] | 1042 | my %row;
|
---|
[59] | 1043 | $row{userfname} = $name;
|
---|
| 1044 | $row{userid} = $uid;
|
---|
| 1045 | $row{useremail} = $email;
|
---|
| 1046 | $row{logentry} = $entry;
|
---|
| 1047 | ($row{logtime}) = ($stamp =~ /^(.+)-\d\d$/);
|
---|
[47] | 1048 | push @logbits, \%row;
|
---|
| 1049 | }
|
---|
| 1050 | $page->param(logentries => \@logbits);
|
---|
| 1051 |
|
---|
[60] | 1052 | } # end $webvar{page} dance
|
---|
[2] | 1053 |
|
---|
| 1054 |
|
---|
[17] | 1055 | # start output here so we can redirect pages.
|
---|
[7] | 1056 | print "Content-type: text/html\n\n", $header->output;
|
---|
| 1057 |
|
---|
[20] | 1058 | ##common bits
|
---|
[17] | 1059 | if ($webvar{page} ne 'login') {
|
---|
[30] | 1060 | $page->param(username => $session->param("username"));
|
---|
| 1061 |
|
---|
[20] | 1062 | $page->param(group => $curgroup);
|
---|
| 1063 | $page->param(groupname => groupName($dbh,$curgroup));
|
---|
[43] | 1064 | $page->param(logingrp => groupName($dbh,$logingroup));
|
---|
[20] | 1065 |
|
---|
[24] | 1066 | # group tree. should go elsewhere, probably
|
---|
| 1067 | my $tmpgrplist = fill_grptree($logingroup,$curgroup);
|
---|
| 1068 | $page->param(grptree => $tmpgrplist);
|
---|
[65] | 1069 | $page->param(subs => ($tmpgrplist ? 1 : 0)); # probably not useful to pass gobs of data in for a boolean
|
---|
[42] | 1070 | $page->param(inlogingrp => $curgroup == $logingroup);
|
---|
| 1071 |
|
---|
[20] | 1072 | # stuff for menu group change. nb: this is icky.
|
---|
| 1073 | fill_grouplist("grouplist");
|
---|
[53] | 1074 |
|
---|
| 1075 | ## set up "URL to self"
|
---|
[38] | 1076 | # @#$%@%@#% XHTML - & in a URL must be escaped. >:(
|
---|
| 1077 | my $tmp_ruri = $ENV{REQUEST_URI};
|
---|
| 1078 | $tmp_ruri =~ s/\&([a-z])/\&\;$1/g;
|
---|
[53] | 1079 |
|
---|
[39] | 1080 | # le sigh. and we need to strip any previous action
|
---|
| 1081 | $tmp_ruri =~ s/\&action=[^&]+//g;
|
---|
[52] | 1082 |
|
---|
[53] | 1083 | # and search filter options. these get stored in the session, but discarded
|
---|
| 1084 | # as soon as you switch to a different page.
|
---|
| 1085 | ##fixme: think about retaining these on a per-page basis, as well as offset; same as the sort-order bits
|
---|
| 1086 | no warnings qw(uninitialized);
|
---|
| 1087 | $tmp_ruri =~ s/\&startwith=[a-z09-]*(\&)?/$1/g;
|
---|
| 1088 | $tmp_ruri =~ s/\&searchsubs=[a-z09-]*(\&)?/$1/g;
|
---|
| 1089 | $tmp_ruri =~ s/\&filter=[a-z09-]*(\&)?/$1/g;
|
---|
| 1090 | use warnings qw(uninitialized);
|
---|
[52] | 1091 |
|
---|
[53] | 1092 | # fill in the URL-to-self
|
---|
[38] | 1093 | $page->param(whereami => $tmp_ruri);
|
---|
[17] | 1094 | }
|
---|
[13] | 1095 |
|
---|
[87] | 1096 | print "<pre>\n";
|
---|
[24] | 1097 | foreach (@debugbits) { print; }
|
---|
[87] | 1098 | print "</pre>\n";
|
---|
[24] | 1099 |
|
---|
[2] | 1100 | # spit it out
|
---|
| 1101 | print $page->output;
|
---|
| 1102 |
|
---|
[38] | 1103 | if ($debugenv) {
|
---|
| 1104 | print "<div id=\"debug\">webvar keys: <pre>\n";
|
---|
| 1105 | foreach my $key (keys %webvar) {
|
---|
| 1106 | print "key: $key\tval: $webvar{$key}\n";
|
---|
| 1107 | }
|
---|
| 1108 | print "</pre>\nsession:\n<pre>\n";
|
---|
| 1109 | my $sesdata = $session->dataref();
|
---|
| 1110 | foreach my $key (keys %$sesdata) {
|
---|
| 1111 | print "key: $key\tval: ".$sesdata->{$key}."\n";
|
---|
| 1112 | }
|
---|
| 1113 | print "</pre>\nENV:\n<pre>\n";
|
---|
| 1114 | foreach my $key (keys %ENV) {
|
---|
| 1115 | print "key: $key\tval: $ENV{$key}\n";
|
---|
| 1116 | }
|
---|
| 1117 | print "</pre></div>\n";
|
---|
[2] | 1118 | }
|
---|
| 1119 |
|
---|
| 1120 | print $footer->output;
|
---|
| 1121 |
|
---|
[18] | 1122 | # as per the docs, Just In Case
|
---|
| 1123 | $session->flush();
|
---|
[2] | 1124 |
|
---|
| 1125 | exit 0;
|
---|
| 1126 |
|
---|
| 1127 |
|
---|
[24] | 1128 | sub fill_grptree {
|
---|
| 1129 | my $root = shift;
|
---|
| 1130 | my $cur = shift;
|
---|
[69] | 1131 | my $indent = shift || ' ';
|
---|
[24] | 1132 |
|
---|
| 1133 | my @childlist;
|
---|
| 1134 |
|
---|
| 1135 | my $grptree = HTML::Template->new(filename => 'templates/grptree.tmpl');
|
---|
| 1136 | getChildren($dbh,$root,\@childlist,'immediate');
|
---|
| 1137 | return if $#childlist == -1;
|
---|
| 1138 | my @grouplist;
|
---|
| 1139 | foreach (@childlist) {
|
---|
| 1140 | my %row;
|
---|
| 1141 | $row{grpname} = groupName($dbh,$_);
|
---|
[69] | 1142 | # for all that HTML::Template is supposed to keep the HTML out of the Perl, this is so much more compact...
|
---|
| 1143 | $row{grpdisp} = ($_ == $cur ? "<b>$row{grpname}</b>" : $row{grpname});
|
---|
| 1144 | $row{subs} = fill_grptree($_,$cur,$indent.' ');
|
---|
| 1145 | $row{indent} = $indent;
|
---|
[24] | 1146 | push @grouplist, \%row;
|
---|
| 1147 | }
|
---|
[69] | 1148 | $grptree->param(indent => $indent);
|
---|
[24] | 1149 | $grptree->param(treelvl => \@grouplist);
|
---|
| 1150 | return $grptree->output;
|
---|
| 1151 | }
|
---|
| 1152 |
|
---|
[11] | 1153 | sub changepage {
|
---|
| 1154 | my %params = @_; # think this works the way I want...
|
---|
| 1155 |
|
---|
| 1156 | # handle user check
|
---|
| 1157 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}?sid=$sid";
|
---|
| 1158 | foreach (keys %params) {
|
---|
[92] | 1159 | $newurl .= "&$_=".$q->url_encode($params{$_});
|
---|
[11] | 1160 | }
|
---|
| 1161 |
|
---|
[30] | 1162 | # Just In Case
|
---|
| 1163 | $session->flush();
|
---|
| 1164 |
|
---|
[11] | 1165 | print "Status: 302\nLocation: $newurl\n\n";
|
---|
| 1166 | exit;
|
---|
| 1167 | } # end changepage
|
---|
| 1168 |
|
---|
[2] | 1169 | sub fillsoa {
|
---|
| 1170 | my $def = shift;
|
---|
| 1171 | my $id = shift;
|
---|
[39] | 1172 | my $domname = ($def eq 'y' ? '' : "DOMAIN");
|
---|
[2] | 1173 |
|
---|
[39] | 1174 | $page->param(defrec => $def);
|
---|
[2] | 1175 |
|
---|
[39] | 1176 | # i had a good reason to do this when I wrote it...
|
---|
| 1177 | # $page->param(domain => $domname);
|
---|
| 1178 | # $page->param(group => $DNSDB::group);
|
---|
| 1179 | $page->param(isgrp => 1) if $def eq 'y';
|
---|
| 1180 | $page->param(parent => ($def eq 'y' ? groupName($dbh, $DNSDB::group) : domainName($dbh, $id)) );
|
---|
[2] | 1181 |
|
---|
| 1182 | # defaults
|
---|
[17] | 1183 | $page->param(defcontact => $DNSDB::def{contact});
|
---|
| 1184 | $page->param(defns => $DNSDB::def{prins});
|
---|
| 1185 | $page->param(defsoattl => $DNSDB::def{soattl});
|
---|
| 1186 | $page->param(defrefresh => $DNSDB::def{refresh});
|
---|
| 1187 | $page->param(defretry => $DNSDB::def{retry});
|
---|
| 1188 | $page->param(defexpire => $DNSDB::def{expire});
|
---|
| 1189 | $page->param(defminttl => $DNSDB::def{minttl});
|
---|
[2] | 1190 |
|
---|
| 1191 | # there are probably better ways to do this. TMTOWTDI.
|
---|
| 1192 | my %soa = getSOA($dbh,$def,$id);
|
---|
| 1193 |
|
---|
[39] | 1194 | $page->param(id => $id);
|
---|
[2] | 1195 | $page->param(recid => $soa{recid});
|
---|
| 1196 | $page->param(prins => ($soa{prins} ? $soa{prins} : $DNSDB::def{prins}));
|
---|
| 1197 | $page->param(contact => ($soa{contact} ? $soa{contact} : $DNSDB::def{contact}));
|
---|
| 1198 | $page->param(refresh => ($soa{refresh} ? $soa{refresh} : $DNSDB::def{refresh}));
|
---|
| 1199 | $page->param(retry => ($soa{retry} ? $soa{retry} : $DNSDB::def{retry}));
|
---|
| 1200 | $page->param(expire => ($soa{expire} ? $soa{expire} : $DNSDB::def{expire}));
|
---|
| 1201 | $page->param(minttl => ($soa{minttl} ? $soa{minttl} : $DNSDB::def{minttl}));
|
---|
| 1202 | $page->param(ttl => ($soa{ttl} ? $soa{ttl} : $DNSDB::def{soattl}));
|
---|
| 1203 | }
|
---|
| 1204 |
|
---|
| 1205 | sub showdomain {
|
---|
| 1206 | my $def = shift;
|
---|
| 1207 | my $id = shift;
|
---|
| 1208 |
|
---|
| 1209 | # get the SOA first
|
---|
| 1210 | my %soa = getSOA($dbh,$def,$id);
|
---|
| 1211 |
|
---|
| 1212 | $page->param(recid => $soa{recid});
|
---|
| 1213 | $page->param(contact => $soa{contact});
|
---|
| 1214 | $page->param(prins => $soa{prins});
|
---|
| 1215 | $page->param(refresh => $soa{refresh});
|
---|
| 1216 | $page->param(retry => $soa{retry});
|
---|
| 1217 | $page->param(expire => $soa{expire});
|
---|
| 1218 | $page->param(minttl => $soa{minttl});
|
---|
| 1219 | $page->param(ttl => $soa{ttl});
|
---|
| 1220 |
|
---|
[72] | 1221 | $startwith = $session->param($webvar{page}.'startwith');
|
---|
| 1222 | $filter = $session->param($webvar{page}.'filter');
|
---|
| 1223 |
|
---|
[76] | 1224 | my $foo2 = getDomRecs($dbh,$def,$id,$perpage,$webvar{offset},$sortby,$sortorder);
|
---|
[2] | 1225 |
|
---|
| 1226 | my $row = 0;
|
---|
| 1227 | foreach my $rec (@$foo2) {
|
---|
| 1228 | $rec->{type} = $typemap{$rec->{type}};
|
---|
| 1229 | $rec->{row} = $row % 2;
|
---|
[62] | 1230 | $rec->{defrec} = $def;
|
---|
[2] | 1231 | $rec->{sid} = $webvar{sid};
|
---|
[13] | 1232 | $rec->{id} = $id;
|
---|
[23] | 1233 | $rec->{distance} = 'n/a' unless ($rec->{type} eq 'MX' || $rec->{type} eq 'SRV');
|
---|
| 1234 | $rec->{weight} = 'n/a' unless ($rec->{type} eq 'SRV');
|
---|
| 1235 | $rec->{port} = 'n/a' unless ($rec->{type} eq 'SRV');
|
---|
[2] | 1236 | $row++;
|
---|
[95] | 1237 | # ACLs
|
---|
| 1238 | $rec->{record_edit} = ($permissions{admin} || $permissions{record_edit});
|
---|
| 1239 | $rec->{record_delete} = ($permissions{admin} || $permissions{record_delete});
|
---|
[2] | 1240 | }
|
---|
| 1241 | $page->param(reclist => $foo2);
|
---|
| 1242 | }
|
---|
| 1243 |
|
---|
[16] | 1244 | # fill in record type list on add/update/edit record template
|
---|
| 1245 | sub fill_rectypes {
|
---|
[13] | 1246 | my $type = shift || $reverse_typemap{A};
|
---|
[31] | 1247 | my $soaflag = shift || 0;
|
---|
[13] | 1248 |
|
---|
[17] | 1249 | my $sth = $dbh->prepare("SELECT val,name FROM rectypes WHERE stdflag=1 ORDER BY listorder");
|
---|
[2] | 1250 | $sth->execute;
|
---|
| 1251 | my @typelist;
|
---|
| 1252 | while (my ($rval,$rname) = $sth->fetchrow_array()) {
|
---|
| 1253 | my %row = ( recval => $rval, recname => $rname );
|
---|
[13] | 1254 | $row{tselect} = 1 if $rval == $type;
|
---|
[2] | 1255 | push @typelist, \%row;
|
---|
| 1256 | }
|
---|
[31] | 1257 | if ($soaflag) {
|
---|
| 1258 | my %row = ( recval => $reverse_typemap{SOA}, recname => 'SOA' );
|
---|
| 1259 | $row{tselect} = 1 if $reverse_typemap{SOA} == $type;
|
---|
| 1260 | push @typelist, \%row;
|
---|
| 1261 | }
|
---|
[2] | 1262 | $page->param(typelist => \@typelist);
|
---|
[31] | 1263 | } # fill_rectypes
|
---|
[16] | 1264 |
|
---|
| 1265 | sub fill_recdata {
|
---|
| 1266 | fill_rectypes($webvar{type});
|
---|
| 1267 |
|
---|
[91] | 1268 | # le sigh. we may get called with many empty %webvar keys
|
---|
| 1269 | no warnings qw( uninitialized );
|
---|
| 1270 |
|
---|
[16] | 1271 | $page->param(name => $webvar{name});
|
---|
| 1272 | $page->param(address => $webvar{address});
|
---|
| 1273 | $page->param(distance => $webvar{distance})
|
---|
| 1274 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV});
|
---|
| 1275 | $page->param(weight => $webvar{weight}) if $webvar{type} == $reverse_typemap{SRV};
|
---|
| 1276 | $page->param(port => $webvar{port}) if $webvar{type} == $reverse_typemap{SRV};
|
---|
[2] | 1277 | $page->param(ttl => ($webvar{ttl} ? $webvar{ttl} : $DNSDB::def{minttl}));
|
---|
| 1278 | }
|
---|
[7] | 1279 |
|
---|
[24] | 1280 | sub fill_actypelist {
|
---|
[83] | 1281 | my $curtype = shift || 'u';
|
---|
| 1282 |
|
---|
[24] | 1283 | my @actypes;
|
---|
| 1284 |
|
---|
| 1285 | my %row1 = (actypeval => 'u', actypename => 'user');
|
---|
[83] | 1286 | $row1{typesel} = 1 if $curtype eq 'u';
|
---|
[24] | 1287 | push @actypes, \%row1;
|
---|
| 1288 |
|
---|
| 1289 | my %row2 = (actypeval => 'S', actypename => 'superuser');
|
---|
[83] | 1290 | $row2{typesel} = 1 if $curtype eq 'S';
|
---|
[24] | 1291 | push @actypes, \%row2;
|
---|
| 1292 |
|
---|
[83] | 1293 | $page->param(actypelist => \@actypes);
|
---|
[24] | 1294 | }
|
---|
| 1295 |
|
---|
[65] | 1296 | sub fill_clonemelist {
|
---|
| 1297 | my $sth = $dbh->prepare("SELECT username,user_id FROM users WHERE group_id=$curgroup");
|
---|
| 1298 | $sth->execute;
|
---|
| 1299 |
|
---|
[87] | 1300 | # shut up some warnings, but don't stomp on caller's state
|
---|
| 1301 | local $webvar{clonesrc} = 0 if !defined($webvar{clonesrc});
|
---|
| 1302 |
|
---|
[65] | 1303 | my @clonesrc;
|
---|
| 1304 | while (my ($username,$uid) = $sth->fetchrow_array) {
|
---|
| 1305 | my %row = (
|
---|
| 1306 | username => $username,
|
---|
| 1307 | uid => $uid,
|
---|
| 1308 | selected => ($webvar{clonesrc} == $uid ? 1 : 0)
|
---|
| 1309 | );
|
---|
| 1310 | push @clonesrc, \%row;
|
---|
| 1311 | }
|
---|
| 1312 | $page->param(clonesrc => \@clonesrc);
|
---|
| 1313 | }
|
---|
| 1314 |
|
---|
[7] | 1315 | sub fill_fpnla {
|
---|
| 1316 | my $count = shift;
|
---|
| 1317 | if ($offset eq 'all') {
|
---|
[70] | 1318 | $page->param(perpage => $perpage);
|
---|
[41] | 1319 | # uhm....
|
---|
[7] | 1320 | } else {
|
---|
| 1321 | # all these bits only have sensible behaviour if offset is numeric. err, probably.
|
---|
| 1322 | if ($count > $perpage) {
|
---|
| 1323 | # if there are more results than the default, always show the "all" link
|
---|
| 1324 | $page->param(navall => 1);
|
---|
| 1325 |
|
---|
| 1326 | if ($offset > 0) {
|
---|
| 1327 | $page->param(navfirst => 1);
|
---|
| 1328 | $page->param(navprev => 1);
|
---|
| 1329 | $page->param(prevoffs => $offset-1);
|
---|
| 1330 | }
|
---|
| 1331 |
|
---|
| 1332 | # show "next" and "last" links if we're not on the last page of results
|
---|
| 1333 | if ( (($offset+1) * $perpage - $count) < 0 ) {
|
---|
| 1334 | $page->param(navnext => 1);
|
---|
| 1335 | $page->param(nextoffs => $offset+1);
|
---|
| 1336 | $page->param(navlast => 1);
|
---|
[8] | 1337 | $page->param(lastoffs => int (($count-1)/$perpage));
|
---|
[7] | 1338 | }
|
---|
[87] | 1339 | } else {
|
---|
| 1340 | $page->param(onepage => 1);
|
---|
[7] | 1341 | }
|
---|
| 1342 | }
|
---|
[10] | 1343 | } # end fill_fpnla()
|
---|
| 1344 |
|
---|
[12] | 1345 | sub fill_pgcount {
|
---|
| 1346 | my $pgcount = shift;
|
---|
| 1347 | my $pgtype = shift;
|
---|
| 1348 | my $parent = shift;
|
---|
| 1349 |
|
---|
[98] | 1350 | # Fix display/UI bug where if you are not on the first page of the list, and
|
---|
| 1351 | # you add a search term or click one of the "starts with" links, you end up
|
---|
| 1352 | # on a page showing nothing.
|
---|
| 1353 | # For bonus points, this reverts to the original offset on clicking the "All" link (mostly)
|
---|
| 1354 | $offset-- while ($offset * $perpage) >= $pgcount;
|
---|
| 1355 |
|
---|
[12] | 1356 | $page->param(ntot => $pgcount);
|
---|
| 1357 | $page->param(nfirst => (($offset eq 'all' ? 0 : $offset)*$perpage+1));
|
---|
| 1358 | $page->param(npglast => ($offset eq 'all' ? $pgcount :
|
---|
| 1359 | ( (($offset+1)*$perpage) > $pgcount ? $pgcount : (($offset+1)*$perpage) )
|
---|
| 1360 | ));
|
---|
| 1361 | $page->param(pgtype => $pgtype);
|
---|
| 1362 | $page->param(parent => $parent);
|
---|
| 1363 | } # end fill_pgcount()
|
---|
| 1364 |
|
---|
[11] | 1365 | sub listdomains {
|
---|
[41] | 1366 |
|
---|
[62] | 1367 | $startwith = $session->param($webvar{page}.'startwith');
|
---|
| 1368 | $filter = $session->param($webvar{page}.'filter');
|
---|
| 1369 | $searchsubs = $session->param($webvar{page}.'searchsubs');
|
---|
| 1370 |
|
---|
[95] | 1371 | # ACLs
|
---|
| 1372 | $page->param(domain_create => ($permissions{admin} || $permissions{domain_create}) );
|
---|
| 1373 | $page->param(domain_edit => ($permissions{admin} || $permissions{domain_edit}) );
|
---|
| 1374 | $page->param(domain_delete => ($permissions{admin} || $permissions{domain_delete}) );
|
---|
| 1375 |
|
---|
[53] | 1376 | ##fixme: $logingroup or $curgroup?
|
---|
[52] | 1377 | my @childgroups;
|
---|
[61] | 1378 | getChildren($dbh, $curgroup, \@childgroups, 'all') if $searchsubs;
|
---|
[52] | 1379 | my $childlist = join(',',@childgroups);
|
---|
| 1380 |
|
---|
[57] | 1381 | my $sql = "SELECT count(*) FROM domains WHERE group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[53] | 1382 | ($startwith ? " AND domain ~* '^[$startwith]'" : '').
|
---|
| 1383 | ($filter ? " AND domain ~* '$filter'" : '');
|
---|
[52] | 1384 | my $sth = $dbh->prepare($sql);
|
---|
| 1385 | $sth->execute;
|
---|
[17] | 1386 | my ($count) = $sth->fetchrow_array;
|
---|
| 1387 |
|
---|
[12] | 1388 | # fill page count and first-previous-next-last-all bits
|
---|
[20] | 1389 | fill_pgcount($count,"domains",groupName($dbh,$curgroup));
|
---|
[10] | 1390 | fill_fpnla($count);
|
---|
| 1391 |
|
---|
[41] | 1392 | # sort/order
|
---|
[51] | 1393 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1394 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[41] | 1395 |
|
---|
[51] | 1396 | $sortby = $session->param($webvar{page}.'sortby');
|
---|
| 1397 | $sortorder = $session->param($webvar{page}.'order');
|
---|
| 1398 |
|
---|
[44] | 1399 | # set up the headers
|
---|
| 1400 | my @cols = ('domain', 'status', 'group');
|
---|
| 1401 | my %colheads = (domain => 'Domain', status => 'Status', group => 'Group');
|
---|
[54] | 1402 | fill_colheads($sortby, $sortorder, \@cols, \%colheads);
|
---|
[41] | 1403 |
|
---|
[47] | 1404 | # $page->param(sortorder => $sortorder);
|
---|
[41] | 1405 | # hack! hack! pthbttt. have to rethink the status column storage,
|
---|
| 1406 | # or inactive comes "before" active. *sigh*
|
---|
| 1407 | $sortorder = ($sortorder eq 'ASC' ? 'DESC' : 'ASC') if $sortby eq 'status';
|
---|
| 1408 |
|
---|
[51] | 1409 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[53] | 1410 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/;
|
---|
[41] | 1411 |
|
---|
[53] | 1412 | $page->param(filter => $filter) if $filter;
|
---|
| 1413 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[41] | 1414 |
|
---|
| 1415 | ##fixme
|
---|
| 1416 | ##fixme push the SQL and direct database fiddling off into a sub in DNSDB.pm
|
---|
| 1417 | ##fixme
|
---|
| 1418 |
|
---|
[20] | 1419 | $page->param(group => $curgroup);
|
---|
[10] | 1420 | my @domlist;
|
---|
[52] | 1421 | $sql = "SELECT domain_id,domain,status,groups.group_name AS group FROM domains".
|
---|
[20] | 1422 | " INNER JOIN groups ON domains.group_id=groups.group_id".
|
---|
[57] | 1423 | " WHERE domains.group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[41] | 1424 | ##fixme: don't do variable subs in SQL, use placeholders and params in ->execute()
|
---|
[53] | 1425 | ($startwith ? " AND domain ~* '^[$startwith]'" : '').
|
---|
| 1426 | ($filter ? " AND domain ~* '$filter'" : '').
|
---|
[41] | 1427 | " ORDER BY ".($sortby eq 'group' ? 'groups.group_name' : $sortby).
|
---|
| 1428 | " $sortorder ".($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage);
|
---|
| 1429 | $sth = $dbh->prepare($sql);
|
---|
[52] | 1430 | $sth->execute;
|
---|
[10] | 1431 | my $rownum = 0;
|
---|
| 1432 | while (my @data = $sth->fetchrow_array) {
|
---|
| 1433 | my %row;
|
---|
| 1434 | $row{domainid} = $data[0];
|
---|
| 1435 | $row{domain} = $data[1];
|
---|
| 1436 | $row{status} = ($data[2] ? 'Active' : 'Inactive');
|
---|
| 1437 | $row{group} = $data[3];
|
---|
| 1438 | $row{bg} = ($rownum++)%2;
|
---|
| 1439 | # $row{mkactive} = ($data[2] eq 'inactive' ? 1 : 0);
|
---|
| 1440 | $row{mkactive} = !$data[2];
|
---|
| 1441 | $row{sid} = $sid;
|
---|
| 1442 | $row{offset} = $offset;
|
---|
[95] | 1443 | # ACLs
|
---|
| 1444 | $row{domain_edit} = ($permissions{admin} || $permissions{domain_edit});
|
---|
| 1445 | $row{domain_delete} = ($permissions{admin} || $permissions{domain_delete});
|
---|
[10] | 1446 | ##fixme: need to clean up status indicator/usage/inversion
|
---|
| 1447 | push @domlist, \%row;
|
---|
| 1448 | }
|
---|
| 1449 | $page->param(domtable => \@domlist);
|
---|
[11] | 1450 | } # end listdomains()
|
---|
[18] | 1451 |
|
---|
[87] | 1452 |
|
---|
[22] | 1453 | sub listgroups {
|
---|
[53] | 1454 |
|
---|
[26] | 1455 | my @childgroups;
|
---|
[53] | 1456 | getChildren($dbh, $logingroup, \@childgroups, 'all') if $searchsubs;
|
---|
[26] | 1457 | my $childlist = join(',',@childgroups);
|
---|
| 1458 |
|
---|
[54] | 1459 | my $sql = "SELECT count(*) FROM groups WHERE parent_group_id IN ($logingroup".($childlist ? ",$childlist" : '').")".
|
---|
[53] | 1460 | ($startwith ? " AND group_name ~* '^[$startwith]'" : '').
|
---|
| 1461 | ($filter ? " AND group_name ~* '$filter'" : '');
|
---|
[26] | 1462 | my $sth = $dbh->prepare($sql);
|
---|
| 1463 |
|
---|
[22] | 1464 | $sth->execute;
|
---|
| 1465 | my ($count) = ($sth->fetchrow_array);
|
---|
| 1466 | # fill page count and first-previous-next-last-all bits
|
---|
| 1467 | ##fixme - hardcoded group bit
|
---|
| 1468 | fill_pgcount($count,"groups",'');
|
---|
| 1469 | fill_fpnla($count);
|
---|
| 1470 |
|
---|
[80] | 1471 | $page->param(gid => $curgroup);
|
---|
| 1472 |
|
---|
[51] | 1473 | # $sortby = 'group';
|
---|
[42] | 1474 | # sort/order
|
---|
[51] | 1475 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1476 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[42] | 1477 |
|
---|
[51] | 1478 | $sortby = $session->param($webvar{page}.'sortby');
|
---|
| 1479 | $sortorder = $session->param($webvar{page}.'order');
|
---|
| 1480 |
|
---|
[44] | 1481 | # set up the headers
|
---|
| 1482 | my @cols = ('group','parent','nusers','ndomains');
|
---|
| 1483 | my %colnames = (group => 'Group', parent => 'Parent Group', nusers => 'Users', ndomains => 'Domains');
|
---|
[54] | 1484 | fill_colheads($sortby, $sortorder, \@cols, \%colnames);
|
---|
[42] | 1485 |
|
---|
[51] | 1486 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[64] | 1487 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/;
|
---|
[51] | 1488 |
|
---|
[53] | 1489 | $page->param(filter => $filter) if $filter;
|
---|
| 1490 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[51] | 1491 |
|
---|
| 1492 | # munge sortby for columns in database
|
---|
| 1493 | $sortby = 'g.group_name' if $sortby eq 'group';
|
---|
| 1494 | $sortby = 'g2.group_name' if $sortby eq 'parent';
|
---|
| 1495 |
|
---|
[22] | 1496 | my @grouplist;
|
---|
| 1497 | $sth = $dbh->prepare("SELECT g.group_id, g.group_name, g2.group_name, ".
|
---|
[51] | 1498 | "count(distinct(u.username)) AS nusers, count(distinct(d.domain)) AS ndomains ".
|
---|
[22] | 1499 | "FROM groups g ".
|
---|
| 1500 | "INNER JOIN groups g2 ON g2.group_id=g.parent_group_id ".
|
---|
| 1501 | "LEFT OUTER JOIN users u ON u.group_id=g.group_id ".
|
---|
| 1502 | "LEFT OUTER JOIN domains d ON d.group_id=g.group_id ".
|
---|
[54] | 1503 | "WHERE g.parent_group_id IN ($logingroup".($childlist ? ",$childlist" : '').") ".
|
---|
[51] | 1504 | ##fixme: don't do variable subs in SQL, use placeholders and params in ->execute()
|
---|
[53] | 1505 | ($startwith ? " AND g.group_name ~* '^[$startwith]'" : '').
|
---|
| 1506 | ($filter ? " AND g.group_name ~* '$filter'" : '').
|
---|
[51] | 1507 | " GROUP BY g.group_id, g.group_name, g2.group_name ".
|
---|
| 1508 | " ORDER BY $sortby $sortorder ".
|
---|
| 1509 | ($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage));
|
---|
[22] | 1510 | $sth->execute;
|
---|
| 1511 |
|
---|
| 1512 | my $rownum = 0;
|
---|
| 1513 | while (my @data = $sth->fetchrow_array) {
|
---|
| 1514 | my %row;
|
---|
| 1515 | $row{groupid} = $data[0];
|
---|
| 1516 | $row{groupname} = $data[1];
|
---|
| 1517 | $row{pgroup} = $data[2];
|
---|
| 1518 | $row{nusers} = $data[3];
|
---|
| 1519 | $row{ndomains} = $data[4];
|
---|
| 1520 | $row{bg} = ($rownum++)%2;
|
---|
| 1521 | $row{sid} = $sid;
|
---|
| 1522 | push @grouplist, \%row;
|
---|
| 1523 | }
|
---|
| 1524 | $page->param(grouptable => \@grouplist);
|
---|
| 1525 | } # end listgroups()
|
---|
| 1526 |
|
---|
[92] | 1527 |
|
---|
[20] | 1528 | sub fill_grouplist {
|
---|
[19] | 1529 | my $template_var = shift;
|
---|
| 1530 | my $cur = shift || $curgroup;
|
---|
[26] | 1531 |
|
---|
| 1532 | my @childgroups;
|
---|
| 1533 | getChildren($dbh, $logingroup, \@childgroups, 'all');
|
---|
| 1534 | my $childlist = join(',',@childgroups);
|
---|
| 1535 |
|
---|
[18] | 1536 | # weesa gonna discard parent_group_id for now
|
---|
[26] | 1537 | my $sth = $dbh->prepare("SELECT group_id,parent_group_id,group_name FROM groups ".
|
---|
| 1538 | "WHERE group_id IN ($logingroup".($childlist ? ",$childlist" : '').")".
|
---|
| 1539 | "ORDER BY group_id");
|
---|
[18] | 1540 | $sth->execute;
|
---|
[20] | 1541 | my @grouplist;
|
---|
| 1542 | while (my ($groupid,$pargroup,$groupname) = $sth->fetchrow_array()) {
|
---|
[18] | 1543 | my %row;
|
---|
[20] | 1544 | $row{groupname} = $groupname;
|
---|
| 1545 | $row{groupval} = $groupid;
|
---|
[18] | 1546 | ##fixme: need magic
|
---|
[93] | 1547 | ## ... WTF?
|
---|
[20] | 1548 | # $row{defgroup} = '';
|
---|
| 1549 | $row{groupactive} = 1 if $groupid == $cur;
|
---|
| 1550 | push @grouplist, \%row;
|
---|
[18] | 1551 | }
|
---|
| 1552 |
|
---|
[20] | 1553 | $page->param("$template_var" => \@grouplist);
|
---|
[18] | 1554 |
|
---|
[24] | 1555 | } # end fill_grouplist()
|
---|
| 1556 |
|
---|
[92] | 1557 |
|
---|
[24] | 1558 | sub list_users {
|
---|
[52] | 1559 |
|
---|
| 1560 | my @childgroups;
|
---|
[53] | 1561 | getChildren($dbh, $curgroup, \@childgroups, 'all') if $searchsubs;
|
---|
[52] | 1562 | my $childlist = join(',',@childgroups);
|
---|
| 1563 |
|
---|
| 1564 | my $sql = "SELECT count(*) FROM users WHERE group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[53] | 1565 | ($startwith ? " AND username ~* '^[$startwith]'" : '').
|
---|
| 1566 | ($filter ? " AND username ~* '$filter'" : '');
|
---|
[52] | 1567 | my $sth = $dbh->prepare($sql);
|
---|
| 1568 | $sth->execute;
|
---|
[24] | 1569 | my ($count) = ($sth->fetchrow_array);
|
---|
| 1570 |
|
---|
| 1571 | # fill page count and first-previous-next-last-all bits
|
---|
| 1572 | ##fixme - hardcoded group bit
|
---|
| 1573 | fill_pgcount($count,"users",'');
|
---|
| 1574 | fill_fpnla($count);
|
---|
| 1575 |
|
---|
[51] | 1576 | # $sortby = 'user';
|
---|
[44] | 1577 | # sort/order
|
---|
[51] | 1578 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1579 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[44] | 1580 |
|
---|
[51] | 1581 | $sortby = $session->param($webvar{page}.'sortby');
|
---|
| 1582 | $sortorder = $session->param($webvar{page}.'order');
|
---|
| 1583 |
|
---|
[44] | 1584 | # set up the headers
|
---|
| 1585 | my @cols = ('user','fname','type','group','status');
|
---|
| 1586 | my %colnames = (user => 'Username', fname => 'Full Name', type => 'Type', group => 'Group', status => 'Status');
|
---|
[54] | 1587 | fill_colheads($sortby, $sortorder, \@cols, \%colnames);
|
---|
[44] | 1588 |
|
---|
[51] | 1589 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[64] | 1590 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/;
|
---|
[51] | 1591 |
|
---|
[53] | 1592 | $page->param(filter => $filter) if $filter;
|
---|
| 1593 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[51] | 1594 |
|
---|
| 1595 | # munge sortby for columns in database
|
---|
| 1596 | $sortby = 'u.username' if $sortby eq 'user';
|
---|
| 1597 | $sortby = 'u.type' if $sortby eq 'type';
|
---|
| 1598 | $sortby = 'g.group_name' if $sortby eq 'group';
|
---|
| 1599 | $sortby = 'u.status' if $sortby eq 'status';
|
---|
| 1600 |
|
---|
[24] | 1601 | my @userlist;
|
---|
[52] | 1602 | $sql = "SELECT u.user_id, u.username, u.firstname || ' ' || u.lastname AS fname, u.type, g.group_name, u.status ".
|
---|
[24] | 1603 | "FROM users u ".
|
---|
| 1604 | "INNER JOIN groups g ON u.group_id=g.group_id ".
|
---|
[52] | 1605 | "WHERE u.group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[51] | 1606 | ##fixme: don't do variable subs in SQL, use placeholders and params in ->execute()
|
---|
[53] | 1607 | ($startwith ? " AND u.username ~* '^[$startwith]'" : '').
|
---|
| 1608 | ($filter ? " AND u.username ~* '$filter'" : '').
|
---|
[51] | 1609 | " ORDER BY $sortby $sortorder ".
|
---|
[52] | 1610 | ($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage);
|
---|
[51] | 1611 |
|
---|
[52] | 1612 | $sth = $dbh->prepare($sql);
|
---|
| 1613 | $sth->execute;
|
---|
[24] | 1614 |
|
---|
| 1615 | my $rownum = 0;
|
---|
| 1616 | while (my @data = $sth->fetchrow_array) {
|
---|
[41] | 1617 | no warnings "uninitialized"; # Just In Case something stupid happens and a user gets no first or last name
|
---|
[24] | 1618 | my %row;
|
---|
| 1619 | $row{userid} = $data[0];
|
---|
| 1620 | $row{username} = $data[1];
|
---|
[51] | 1621 | $row{userfull} = $data[2];
|
---|
| 1622 | $row{usertype} = ($data[3] eq 'S' ? 'superuser' : "user");
|
---|
| 1623 | $row{usergroup} = $data[4];
|
---|
| 1624 | $row{active} = $data[5];
|
---|
[24] | 1625 | $row{bg} = ($rownum++)%2;
|
---|
| 1626 | $row{sid} = $sid;
|
---|
| 1627 | push @userlist, \%row;
|
---|
| 1628 | }
|
---|
| 1629 | $page->param(usertable => \@userlist);
|
---|
[55] | 1630 | } # end list_users()
|
---|
[43] | 1631 |
|
---|
[92] | 1632 |
|
---|
[43] | 1633 | # Generate all of the glop necessary to add or not the appropriate marker/flag for
|
---|
| 1634 | # the sort order and column in domain, user, group, and record lists
|
---|
| 1635 | # Takes an array ref and hash ref
|
---|
| 1636 | sub fill_colheads {
|
---|
[54] | 1637 | my $sortby = shift;
|
---|
| 1638 | my $sortorder = shift;
|
---|
[43] | 1639 | my $cols = shift;
|
---|
| 1640 | my $colnames = shift;
|
---|
[72] | 1641 | my $custom = shift;
|
---|
[43] | 1642 |
|
---|
| 1643 | my @headings;
|
---|
| 1644 |
|
---|
| 1645 | foreach my $col (@$cols) {
|
---|
| 1646 | my %coldata;
|
---|
| 1647 | $coldata{firstcol} = 1 if $col eq $cols->[0];
|
---|
| 1648 | $coldata{sid} = $sid;
|
---|
| 1649 | $coldata{page} = $webvar{page};
|
---|
| 1650 | $coldata{offset} = $webvar{offset} if $webvar{offset};
|
---|
| 1651 | $coldata{sortby} = $col;
|
---|
| 1652 | $coldata{colname} = $colnames->{$col};
|
---|
| 1653 | if ($col eq $sortby) {
|
---|
| 1654 | $coldata{order} = ($sortorder eq 'ASC' ? 'DESC' : 'ASC');
|
---|
| 1655 | $coldata{sortorder} = $sortorder;
|
---|
| 1656 | } else {
|
---|
| 1657 | $coldata{order} = 'ASC';
|
---|
| 1658 | }
|
---|
[72] | 1659 | if ($custom) {
|
---|
| 1660 | foreach my $ckey (keys %$custom) {
|
---|
| 1661 | $coldata{$ckey} = $custom->{$ckey};
|
---|
| 1662 | }
|
---|
| 1663 | }
|
---|
[43] | 1664 | push @headings, \%coldata;
|
---|
| 1665 | }
|
---|
| 1666 |
|
---|
| 1667 | $page->param(colheads => \@headings);
|
---|
| 1668 |
|
---|
[54] | 1669 | } # end fill_colheads()
|
---|
[55] | 1670 |
|
---|
[92] | 1671 |
|
---|
[55] | 1672 | sub logaction {
|
---|
[59] | 1673 | my $domid = shift;
|
---|
| 1674 | my $username = shift;
|
---|
| 1675 | my $groupid = shift;
|
---|
| 1676 | my $entry = shift;
|
---|
[55] | 1677 |
|
---|
[93] | 1678 | ##fixme: push SQL into DNSDB.pm
|
---|
[59] | 1679 | my $sth = $dbh->prepare("SELECT user_id, firstname || ' ' || lastname FROM users WHERE username=?");
|
---|
[55] | 1680 | $sth->execute($username);
|
---|
| 1681 | my ($user_id, $fullname) = $sth->fetchrow_array;
|
---|
| 1682 |
|
---|
| 1683 | $sth = $dbh->prepare("INSERT INTO log (domain_id,user_id,group_id,email,name,entry) ".
|
---|
| 1684 | "VALUES (?,?,?,?,?,?)");
|
---|
[57] | 1685 | $sth->execute($domid,$user_id,$groupid,$username,$fullname,$entry);
|
---|
[55] | 1686 | } # end logaction()
|
---|
[57] | 1687 |
|
---|
[92] | 1688 |
|
---|
[59] | 1689 | ##fixme: generalize to return appropriate id on all cases (ie, use $partype)
|
---|
[57] | 1690 | sub parentID {
|
---|
| 1691 | my $id = shift;
|
---|
| 1692 | my $idtype = shift;
|
---|
| 1693 | my $partype = shift;
|
---|
| 1694 | my $defrec = shift || '';
|
---|
| 1695 |
|
---|
| 1696 | my $sql = '';
|
---|
| 1697 |
|
---|
| 1698 | if ($idtype eq 'dom') {
|
---|
[59] | 1699 | return $id if $defrec eq 'y'; # "domain" + default records, we're really looking at a group.
|
---|
[57] | 1700 | $sql = "SELECT group_id FROM domains WHERE domain_id=?";
|
---|
| 1701 | } elsif ($idtype eq 'rec') {
|
---|
[59] | 1702 | if ($defrec eq 'y') {
|
---|
| 1703 | $sql = "SELECT group_id FROM default_records WHERE record_id=?";
|
---|
[57] | 1704 | } else {
|
---|
| 1705 | return
|
---|
| 1706 | $sql = "SELECT d.group_id FROM domains d".
|
---|
| 1707 | " INNER JOIN records r ON d.domain_id=r.domain_id".
|
---|
| 1708 | " WHERE r.record_id=?";
|
---|
| 1709 | }
|
---|
| 1710 | } elsif ($idtype eq 'group') {
|
---|
| 1711 | $sql = "SELECT parent_group_id FROM groups WHERE group_id=?";
|
---|
| 1712 | } elsif ($idtype eq 'user') {
|
---|
| 1713 | $sql = "SELECT group_id FROM users WHERE user_id=?";
|
---|
| 1714 | } else {
|
---|
| 1715 | return "FOO", "BAR"; # can't get here.... we think.
|
---|
| 1716 | }
|
---|
[59] | 1717 | my $sth = $dbh->prepare($sql);
|
---|
| 1718 | $sth->execute($id);
|
---|
| 1719 | my ($retid) = $sth->fetchrow_array;
|
---|
| 1720 | return $retid if $retid;
|
---|
| 1721 | # ahh! fall of the edge of the world if things went sideways
|
---|
| 1722 | ##fixme: really need to do a little more error handling, I think
|
---|
[64] | 1723 | } # end parentID()
|
---|
[66] | 1724 |
|
---|
[92] | 1725 |
|
---|
[66] | 1726 | # we have to do this in a variety of places; let's make it consistent
|
---|
| 1727 | sub fill_permissions {
|
---|
| 1728 | my $template = shift; # may need to do several sets on a single page
|
---|
| 1729 | my $permset = shift; # hashref to permissions on object
|
---|
[67] | 1730 | my $usercan = shift || \%permissions; # allow alternate user-is-allowed permission block
|
---|
[66] | 1731 |
|
---|
| 1732 | foreach (@permtypes) {
|
---|
[67] | 1733 | $template->param("may_$_" => ($usercan->{admin} || $usercan->{$_}));
|
---|
[66] | 1734 | $template->param($_ => $permset->{$_});
|
---|
| 1735 | }
|
---|
| 1736 | }
|
---|