[2] | 1 | #!/usr/bin/perl -w -T
|
---|
| 2 | # dns/cgi-bin/dns.cgi
|
---|
| 3 | ###
|
---|
| 4 | # SVN revision info
|
---|
| 5 | # $Date: 2012-02-17 22:55:18 +0000 (Fri, 17 Feb 2012) $
|
---|
| 6 | # SVN revision $Rev: 237 $
|
---|
| 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 |
|
---|
[216] | 34 | # don't remove! required for GNU/FHS-ish install from tarball
|
---|
| 35 | use lib '.'; ##uselib##
|
---|
| 36 |
|
---|
[2] | 37 | use DNSDB qw(:ALL);
|
---|
| 38 |
|
---|
[13] | 39 | my @debugbits; # temp, to be spit out near the end of processing
|
---|
[160] | 40 | my $debugenv = 0;
|
---|
[13] | 41 |
|
---|
[2] | 42 | # Let's do these templates right...
|
---|
| 43 | my $templatedir = "templates";
|
---|
| 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 |
|
---|
[168] | 53 | # shut up some warnings, in case we arrive somewhere we forgot to set this
|
---|
[224] | 54 | $webvar{defrec} = 'n' if !$webvar{defrec}; # non-default records
|
---|
| 55 | $webvar{revrec} = 'n' if !$webvar{revrec}; # non-reverse (domain) records
|
---|
[168] | 56 |
|
---|
[163] | 57 | # load some local system defaults (mainly DB connect info)
|
---|
| 58 | # note this is not *absolutely* fatal, since there's a default dbname/user/pass in DNSDB.pm
|
---|
| 59 | # we'll catch a bad DB connect string once we get to trying that
|
---|
| 60 | ##fixme: pass params to loadConfig, and use them there, to allow one codebase to support multiple sites
|
---|
| 61 | if (!loadConfig()) {
|
---|
| 62 | warn "Using default configuration; unable to load custom settings: $DNSDB::errstr";
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[13] | 65 | # persistent stuff needed on most/all pages
|
---|
[2] | 66 | my $sid = ($webvar{sid} ? $webvar{sid} : undef);
|
---|
[216] | 67 | my $session = new CGI::Session("driver:File", $sid, {Directory => $config{sessiondir}})
|
---|
[68] | 68 | or die CGI::Session->errstr();
|
---|
[2] | 69 | #$sid = $session->id() if !$sid;
|
---|
| 70 | if (!$sid) {
|
---|
| 71 | # init stuff. can probably axe this down to just above if'n'when user manipulation happens
|
---|
| 72 | $sid = $session->id();
|
---|
[163] | 73 | $session->expire($config{timeout});
|
---|
[2] | 74 | # need to know the "upper" group the user can deal with; may as well
|
---|
| 75 | # stick this in the session rather than calling out to the DB every time.
|
---|
[18] | 76 | $session->param('logingroup',1);
|
---|
| 77 | $session->param('curgroup',1); # yes, we *do* need to track this too. er, probably.
|
---|
[51] | 78 | $session->param('domlistsortby','domain');
|
---|
| 79 | $session->param('domlistorder','ASC');
|
---|
[54] | 80 | $session->param('useradminsortby','user');
|
---|
[51] | 81 | $session->param('useradminorder','ASC');
|
---|
| 82 | $session->param('grpmansortby','group');
|
---|
| 83 | $session->param('grpmanorder','ASC');
|
---|
[76] | 84 | $session->param('reclistsortby','host');
|
---|
[51] | 85 | $session->param('reclistorder','ASC');
|
---|
[2] | 86 | }
|
---|
| 87 |
|
---|
[125] | 88 | # Just In Case. Stale sessions should not be resurrectable.
|
---|
| 89 | if ($sid ne $session->id()) {
|
---|
[163] | 90 | $sid = '';
|
---|
[125] | 91 | changepage(page=> "login", sessexpired => 1);
|
---|
| 92 | }
|
---|
| 93 |
|
---|
[163] | 94 | # normal expiry, more or less
|
---|
| 95 | if ($session->is_expired) {
|
---|
| 96 | $sid = '';
|
---|
| 97 | changepage(page=> "login", sessexpired => 1);
|
---|
| 98 | }
|
---|
| 99 |
|
---|
[19] | 100 | my $logingroup = ($session->param('logingroup') ? $session->param('logingroup') : 1);
|
---|
| 101 | my $curgroup = ($session->param('curgroup') ? $session->param('curgroup') : $logingroup);
|
---|
[18] | 102 |
|
---|
[176] | 103 | # decide which page to spit out...
|
---|
| 104 | # also set $webvar{page} before we try to use it.
|
---|
| 105 | $webvar{page} = 'login' if !$webvar{page};
|
---|
| 106 |
|
---|
[54] | 107 | # per-page startwith, filter, searchsubs
|
---|
[160] | 108 |
|
---|
| 109 | ##fixme: complain-munge-and-continue with non-"[a-z0-9-.]" filter and startwith
|
---|
| 110 | $webvar{startwith} =~ s/^(0-9|[a-z]).*/$1/ if $webvar{startwith};
|
---|
| 111 | # not much call for chars not allowed in domain names
|
---|
| 112 | $webvar{filter} =~ s/[^a-zA-Z0-9_.:@-]//g if $webvar{filter};
|
---|
[176] | 113 | ## only set 'y' if box is checked, no other values legal
|
---|
| 114 | ## however, see https://secure.deepnet.cx/trac/dnsadmin/ticket/31
|
---|
| 115 | # first, drop obvious fakes
|
---|
| 116 | delete $webvar{searchsubs} if $webvar{searchsubs} && $webvar{searchsubs} !~ /^[ny]/;
|
---|
| 117 | # strip the known "turn me off!" bit.
|
---|
| 118 | $webvar{searchsubs} =~ s/^n\s?// if $webvar{searchsubs};
|
---|
| 119 | # strip non-y/n - note this legitimately allows {searchsubs} to go empty
|
---|
| 120 | $webvar{searchsubs} =~ s/[^yn]//g if $webvar{searchsubs};
|
---|
[160] | 121 |
|
---|
[64] | 122 | $session->param($webvar{page}.'startwith', $webvar{startwith}) if defined($webvar{startwith});
|
---|
[62] | 123 | $session->param($webvar{page}.'filter', $webvar{filter}) if defined($webvar{filter});
|
---|
[57] | 124 | $session->param($webvar{page}.'searchsubs', $webvar{searchsubs}) if defined($webvar{searchsubs});
|
---|
[54] | 125 |
|
---|
| 126 | my $startwith = $session->param($webvar{page}.'startwith');
|
---|
| 127 | my $filter = $session->param($webvar{page}.'filter');
|
---|
| 128 | my $searchsubs = $session->param($webvar{page}.'searchsubs');
|
---|
| 129 |
|
---|
[160] | 130 | # ... and assemble the args
|
---|
| 131 | my @filterargs;
|
---|
| 132 | push @filterargs, "^[$startwith]" if $startwith;
|
---|
| 133 | push @filterargs, $filter if $filter;
|
---|
| 134 |
|
---|
[26] | 135 | # nrgh, can't handle login here because we don't have a database handle to check the user/pass with yet
|
---|
[2] | 136 |
|
---|
| 137 | my $header = HTML::Template->new(filename => "$templatedir/header.tmpl");
|
---|
| 138 | my $footer = HTML::Template->new(filename => "$templatedir/footer.tmpl");
|
---|
[210] | 139 | $header->param(orgname => $config{orgname}) if $config{orgname} ne 'Example Corp';
|
---|
| 140 | $footer->param(version => $DNSDB::VERSION);
|
---|
[2] | 141 |
|
---|
[117] | 142 | ## set up "URL to self"
|
---|
| 143 | # @#$%@%@#% XHTML - & in a URL must be escaped. >:(
|
---|
| 144 | my $uri_self = $ENV{REQUEST_URI};
|
---|
| 145 | $uri_self =~ s/\&([a-z])/\&\;$1/g;
|
---|
| 146 |
|
---|
| 147 | # le sigh. and we need to strip any previous action
|
---|
| 148 | $uri_self =~ s/\&action=[^&]+//g;
|
---|
| 149 |
|
---|
| 150 | # and search filter options. these get stored in the session, but discarded
|
---|
| 151 | # as soon as you switch to a different page.
|
---|
| 152 | ##fixme: think about retaining these on a per-page basis, as well as offset; same as the sort-order bits
|
---|
| 153 | no warnings qw(uninitialized);
|
---|
| 154 | $uri_self =~ s/\&startwith=[a-z09-]*(\&)?/$1/g;
|
---|
| 155 | $uri_self =~ s/\&searchsubs=[a-z09-]*(\&)?/$1/g;
|
---|
| 156 | $uri_self =~ s/\&filter=[a-z09-]*(\&)?/$1/g;
|
---|
| 157 | use warnings qw(uninitialized);
|
---|
| 158 |
|
---|
[213] | 159 | # Fix up $uri_self so we don't lose the session/page
|
---|
| 160 | $uri_self .= "?sid=$sid&page=$webvar{page}" if $uri_self =~ m{/dns.cgi$};
|
---|
| 161 | $uri_self = "$ENV{SCRIPT_NAME}?sid=$sid&page=$webvar{page}$1" if $uri_self =~ m{/dns.cgi\&(.+)$};
|
---|
| 162 |
|
---|
[160] | 163 | # pagination
|
---|
| 164 | my $perpage = 15;
|
---|
[201] | 165 | $perpage = $config{perpage} if $config{perpage};
|
---|
[2] | 166 | my $offset = ($webvar{offset} ? $webvar{offset} : 0);
|
---|
| 167 |
|
---|
| 168 | # NB: these must match the field name and SQL ascend/descend syntax respectively
|
---|
[41] | 169 | my $sortby = "domain";
|
---|
| 170 | my $sortorder = "ASC";
|
---|
[2] | 171 |
|
---|
[128] | 172 | ##fixme: quit throwing the database handle around, and put all the SQL and direct DB fiddling into DNSDB.pm
|
---|
[112] | 173 | # dbname, user, pass, host (optional)
|
---|
[128] | 174 | my ($dbh,$msg) = connectDB($config{dbname}, $config{dbuser}, $config{dbpass}, $config{dbhost});
|
---|
[2] | 175 |
|
---|
[128] | 176 | if (!$dbh) {
|
---|
| 177 | print "Content-type: text/html\n\n";
|
---|
| 178 | print $header->output;
|
---|
| 179 | my $errpage = HTML::Template->new(filename => "$templatedir/dberr.tmpl");
|
---|
| 180 | $errpage->param(errmsg => $msg);
|
---|
| 181 | print $errpage->output;
|
---|
| 182 | print $footer->output;
|
---|
| 183 | exit;
|
---|
| 184 | }
|
---|
[2] | 185 |
|
---|
[128] | 186 | # Load config pieces from the database. Ideally all but the DB user/pass/etc should be loaded here.
|
---|
[2] | 187 | initGlobals($dbh);
|
---|
| 188 |
|
---|
[153] | 189 | # security check - does the user have permission to view this entity?
|
---|
| 190 | # this is a prep step used "many" places
|
---|
| 191 | my @viewablegroups;
|
---|
| 192 | getChildren($dbh, $logingroup, \@viewablegroups, 'all');
|
---|
| 193 | push @viewablegroups, $logingroup;
|
---|
| 194 |
|
---|
[173] | 195 | my $page;
|
---|
| 196 | eval {
|
---|
| 197 | $page = HTML::Template->new(filename => "$templatedir/$webvar{page}.tmpl");
|
---|
| 198 | };
|
---|
| 199 | if ($@) {
|
---|
| 200 | warn "Bad page $webvar{page} requested";
|
---|
| 201 | $page = HTML::Template->new(filename => "$templatedir/badpage.tmpl");
|
---|
| 202 | $page->param(badpage => $q->escapeHTML($webvar{page}));
|
---|
| 203 | $webvar{page} = 'badpage';
|
---|
| 204 | }
|
---|
[154] | 205 |
|
---|
[26] | 206 | # handle login redirect
|
---|
[30] | 207 | if ($webvar{action}) {
|
---|
| 208 | if ($webvar{action} eq 'login') {
|
---|
[65] | 209 | # Snag ACL/permissions here too
|
---|
[30] | 210 | my $sth = $dbh->prepare("SELECT user_id,group_id,password,firstname,lastname FROM users WHERE username=?");
|
---|
| 211 | $sth->execute($webvar{username});
|
---|
[26] | 212 |
|
---|
[183] | 213 | if (my ($uid,$gid,$pass,$fname,$lname) = $sth->fetchrow_array) {
|
---|
| 214 | $webvar{password} = '' if !$webvar{password};
|
---|
| 215 |
|
---|
| 216 | if ($pass =~ m|^\$1\$([A-Za-z0-9/.]+)\$|) {
|
---|
| 217 | # native passwords (crypt-md5)
|
---|
| 218 | $webvar{loginfailed} = 1 if $pass ne unix_md5_crypt($webvar{password},$1);
|
---|
| 219 | } elsif ($pass =~ /^[0-9a-f]{32}$/) {
|
---|
| 220 | # VegaDNS import (hex-coded MD5)
|
---|
| 221 | $webvar{loginfailed} = 1 if $pass ne md5_hex($webvar{password});
|
---|
| 222 | } else {
|
---|
| 223 | # plaintext (convenient now and then)
|
---|
| 224 | $webvar{loginfailed} = 1 if $pass ne $webvar{password};
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | # set session bits
|
---|
| 228 | $session->param('logingroup',$gid);
|
---|
| 229 | $session->param('curgroup',$gid);
|
---|
| 230 | $session->param('uid',$uid);
|
---|
| 231 | $session->param('username',$webvar{username});
|
---|
| 232 |
|
---|
| 233 | changepage(page => "domlist") if !defined($webvar{loginfailed});
|
---|
| 234 |
|
---|
[30] | 235 | } else {
|
---|
[183] | 236 | $webvar{loginfailed} = 1;
|
---|
| 237 | } # user data fetch check
|
---|
[29] | 238 |
|
---|
[30] | 239 | } elsif ($webvar{action} eq 'logout') {
|
---|
| 240 | # delete the session
|
---|
| 241 | $session->delete();
|
---|
| 242 | $session->flush();
|
---|
| 243 |
|
---|
| 244 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}";
|
---|
| 245 | $newurl =~ s|/[^/]+$|/|;
|
---|
| 246 | print "Status: 302\nLocation: $newurl\n\n";
|
---|
| 247 | exit;
|
---|
| 248 |
|
---|
[57] | 249 | } elsif ($webvar{action} eq 'chgroup') {
|
---|
| 250 | # fiddle session-stored group data
|
---|
| 251 | # magic incantation to... uhhh...
|
---|
[117] | 252 |
|
---|
| 253 | # ... and the "change group" bits...
|
---|
| 254 | $uri_self =~ s/\&group=[^&]*//g;
|
---|
| 255 |
|
---|
[154] | 256 | # security check - does the user have permission to view this entity?
|
---|
[155] | 257 | my $errmsg;
|
---|
[154] | 258 | if (!(grep /^$webvar{group}$/, @viewablegroups)) {
|
---|
| 259 | # hmm. Reset the current group to the login group? Yes. Prevents confusing behaviour elsewhere.
|
---|
| 260 | $session->param('curgroup',$logingroup);
|
---|
| 261 | $webvar{group} = $logingroup;
|
---|
| 262 | $curgroup = $logingroup;
|
---|
[155] | 263 | $errmsg = "You are not permitted to view or make changes in the requested group";
|
---|
| 264 | $page->param(errmsg => $errmsg);
|
---|
[154] | 265 | }
|
---|
[153] | 266 |
|
---|
[57] | 267 | $session->param('curgroup', $webvar{group});
|
---|
| 268 | $curgroup = ($webvar{group} ? $webvar{group} : $session->param('curgroup'));
|
---|
[155] | 269 |
|
---|
| 270 | # I hate special cases.
|
---|
[224] | 271 | ##fixme: probably need to handle webvar{revrec}=='y' too
|
---|
[155] | 272 | if ($webvar{page} eq 'reclist' && $webvar{defrec} eq 'y') {
|
---|
| 273 | my %args = (page => $webvar{page}, id => $curgroup, defrec => $webvar{defrec});
|
---|
| 274 | $args{errmsg} = $errmsg if $errmsg;
|
---|
| 275 | changepage(%args);
|
---|
| 276 | }
|
---|
| 277 |
|
---|
[30] | 278 | }
|
---|
[57] | 279 | } # handle global webvar{action}s
|
---|
[26] | 280 |
|
---|
[65] | 281 | initPermissions($dbh,$session->param('uid'));
|
---|
[57] | 282 |
|
---|
[163] | 283 | $page->param(sid => $sid) unless $webvar{page} eq 'login'; # no session ID on the login page
|
---|
[2] | 284 |
|
---|
[26] | 285 | if ($webvar{page} eq 'login') {
|
---|
[3] | 286 |
|
---|
[26] | 287 | $page->param(loginfailed => 1) if $webvar{loginfailed};
|
---|
[163] | 288 | $page->param(sessexpired => 1) if $webvar{sessexpired};
|
---|
[210] | 289 | # $page->param(orgname => $config{orgname}) if $config{orgname} ne 'Example Corp';
|
---|
| 290 | $page->param(version => $DNSDB::VERSION);
|
---|
[26] | 291 |
|
---|
| 292 | } elsif ($webvar{page} eq 'domlist' or $webvar{page} eq 'index') {
|
---|
| 293 |
|
---|
[3] | 294 | # hmm. seeing problems in some possibly-not-so-corner cases.
|
---|
[10] | 295 | # this currently only handles "domain on", "domain off"
|
---|
[139] | 296 | if (defined($webvar{domstatus})) {
|
---|
[154] | 297 | # security check - does the user have permission to access this entity?
|
---|
| 298 | my $flag = 0;
|
---|
| 299 | foreach (@viewablegroups) {
|
---|
| 300 | $flag = 1 if isParent($dbh, $_, 'group', $webvar{id}, 'domain');
|
---|
| 301 | }
|
---|
[188] | 302 | if ($flag && ($permissions{admin} || $permissions{domain_edit})) {
|
---|
[154] | 303 | my $stat = domStatus($dbh,$webvar{id},$webvar{domstatus});
|
---|
[188] | 304 | ##fixme switch to more consise "Enabled <domain"/"Disabled <domain>" as with users?
|
---|
[154] | 305 | logaction($webvar{id}, $session->param("username"), parentID($webvar{id}, 'dom', 'group'),
|
---|
[62] | 306 | "Changed ".domainName($dbh, $webvar{id})." state to ".($stat ? 'active' : 'inactive'));
|
---|
[188] | 307 | $page->param(resultmsg => "Changed ".domainName($dbh, $webvar{id})." state to ".
|
---|
| 308 | ($stat ? 'active' : 'inactive'));
|
---|
[154] | 309 | } else {
|
---|
| 310 | $page->param(errmsg => "You are not permitted to view or change the requested domain");
|
---|
| 311 | }
|
---|
[188] | 312 | $uri_self =~ s/\&domstatus=[^&]*//g; # clean up URL for stuffing into templates
|
---|
[3] | 313 | }
|
---|
| 314 |
|
---|
[177] | 315 | if ($session->param('resultmsg')) {
|
---|
| 316 | $page->param(resultmsg => $session->param('resultmsg'));
|
---|
| 317 | $session->clear('resultmsg');
|
---|
| 318 | }
|
---|
[174] | 319 | if ($session->param('errmsg')) {
|
---|
| 320 | $page->param(errmsg => $session->param('errmsg'));
|
---|
| 321 | $session->clear('errmsg');
|
---|
| 322 | }
|
---|
[147] | 323 |
|
---|
[18] | 324 | $page->param(curpage => $webvar{page});
|
---|
| 325 |
|
---|
[11] | 326 | listdomains();
|
---|
[2] | 327 |
|
---|
[4] | 328 | } elsif ($webvar{page} eq 'newdomain') {
|
---|
[2] | 329 |
|
---|
[95] | 330 | changepage(page => "domlist", errmsg => "You are not permitted to add domains")
|
---|
| 331 | unless ($permissions{admin} || $permissions{domain_create});
|
---|
| 332 |
|
---|
[126] | 333 | fill_grouplist("grouplist");
|
---|
| 334 |
|
---|
[174] | 335 | if ($session->param('add_failed')) {
|
---|
| 336 | $session->clear('add_failed');
|
---|
[62] | 337 | $page->param(add_failed => 1);
|
---|
[174] | 338 | $page->param(errmsg => $session->param('errmsg'));
|
---|
| 339 | $session->clear('errmsg');
|
---|
[62] | 340 | $page->param(domain => $webvar{domain});
|
---|
| 341 | }
|
---|
[2] | 342 |
|
---|
[57] | 343 | } elsif ($webvar{page} eq 'adddomain') {
|
---|
| 344 |
|
---|
[95] | 345 | changepage(page => "domlist", errmsg => "You are not permitted to add domains")
|
---|
| 346 | unless ($permissions{admin} || $permissions{domain_create});
|
---|
| 347 |
|
---|
[162] | 348 | # security check - does the user have permission to access this entity?
|
---|
[169] | 349 | if (!check_scope(id => $webvar{group}, type => 'group')) {
|
---|
[174] | 350 | $session->param('add_failed', 1);
|
---|
| 351 | ##fixme: domain a security risk for XSS?
|
---|
| 352 | changepage(page => "newdomain", domain => $webvar{domain},
|
---|
[162] | 353 | errmsg => "You do not have permission to add a domain to the requested group");
|
---|
| 354 | }
|
---|
| 355 |
|
---|
[205] | 356 | $webvar{makeactive} = 0 if !defined($webvar{makeactive});
|
---|
| 357 |
|
---|
[190] | 358 | my ($code,$msg) = addDomain($dbh,$webvar{domain},$webvar{group},($webvar{makeactive} eq 'on' ? 1 : 0),
|
---|
| 359 | (name => $session->param("username"), id => $session->param("uid")));
|
---|
[57] | 360 |
|
---|
| 361 | if ($code eq 'OK') {
|
---|
[198] | 362 | mailNotify($dbh, "New ".($webvar{makeactive} eq 'on' ? 'Active' : 'Inactive')." Domain Created",
|
---|
| 363 | ($webvar{makeactive} eq 'on' ? 'Active' : 'Inactive').qq( domain "$webvar{domain}" added by ).
|
---|
| 364 | $session->param("username"));
|
---|
[57] | 365 | changepage(page => "reclist", id => $msg);
|
---|
| 366 | } else {
|
---|
[195] | 367 | logaction(0, $session->param("username"), $webvar{group}, "Failed adding domain $webvar{domain} ($msg)")
|
---|
| 368 | if $config{log_failures};
|
---|
[174] | 369 | $session->param('add_failed', 1);
|
---|
| 370 | ##fixme: domain a security risk for XSS?
|
---|
[190] | 371 | ##fixme: keep active/inactive state, group selection
|
---|
[174] | 372 | changepage(page => "newdomain", domain => $webvar{domain}, errmsg => $msg);
|
---|
[57] | 373 | }
|
---|
| 374 |
|
---|
[11] | 375 | } elsif ($webvar{page} eq 'deldom') {
|
---|
| 376 |
|
---|
[95] | 377 | changepage(page => "domlist", errmsg => "You are not permitted to delete domains")
|
---|
| 378 | unless ($permissions{admin} || $permissions{domain_delete});
|
---|
| 379 |
|
---|
[162] | 380 | # security check - does the user have permission to access this entity?
|
---|
[169] | 381 | if (!check_scope(id => $webvar{id}, type => 'domain')) {
|
---|
[162] | 382 | changepage(page => "domlist", errmsg => "You do not have permission to delete the requested domain");
|
---|
| 383 | }
|
---|
| 384 |
|
---|
[11] | 385 | $page->param(id => $webvar{id});
|
---|
[88] | 386 |
|
---|
[11] | 387 | # first pass = confirm y/n (sorta)
|
---|
| 388 | if (!defined($webvar{del})) {
|
---|
[88] | 389 |
|
---|
[11] | 390 | $page->param(del_getconf => 1);
|
---|
| 391 | $page->param(domain => domainName($dbh,$webvar{id}));
|
---|
| 392 |
|
---|
[88] | 393 | } elsif ($webvar{del} eq 'ok') {
|
---|
[57] | 394 | my $pargroup = parentID($webvar{id}, 'dom', 'group');
|
---|
[61] | 395 | my $dom = domainName($dbh, $webvar{id});
|
---|
[11] | 396 | my ($code,$msg) = delDomain($dbh, $webvar{id});
|
---|
[187] | 397 | if ($code eq 'OK') {
|
---|
| 398 | logaction($webvar{id}, $session->param("username"), $pargroup, "Deleted domain $dom");
|
---|
| 399 | changepage(page => "domlist", resultmsg => "Deleted domain $dom");
|
---|
| 400 | } else {
|
---|
[195] | 401 | logaction($webvar{id}, $session->param("username"), $pargroup, "Failed to delete domain $dom ($msg)")
|
---|
| 402 | if $config{log_failures};
|
---|
[95] | 403 | changepage(page => "domlist", errmsg => "Error deleting domain $dom: $msg");
|
---|
[11] | 404 | }
|
---|
[88] | 405 |
|
---|
[11] | 406 | } else {
|
---|
| 407 | # cancelled. whee!
|
---|
| 408 | changepage(page => "domlist");
|
---|
| 409 | }
|
---|
| 410 |
|
---|
[237] | 411 | } elsif ($webvar{page} eq 'revzones') {
|
---|
| 412 |
|
---|
| 413 | $webvar{revrec} = 'y';
|
---|
| 414 | $page->param(curpage => $webvar{page});
|
---|
| 415 | listzones();
|
---|
| 416 |
|
---|
[47] | 417 | } elsif ($webvar{page} eq 'reclist') {
|
---|
| 418 |
|
---|
[162] | 419 | # security check - does the user have permission to view this entity?
|
---|
[169] | 420 | if (!check_scope(id => $webvar{id}, type => ($webvar{defrec} eq 'y' ? 'group' : 'domain'))) {
|
---|
[154] | 421 | $page->param(errmsg => "You are not permitted to view or change the requested ".
|
---|
| 422 | ($webvar{defrec} eq 'y' ? "group's default records" : "domain's records"));
|
---|
[160] | 423 | $page->param(perm_err => 1); # this causes the template to skip the record listing output.
|
---|
[162] | 424 | goto DONERECLIST; # and now we skip filling in the content which is not printed due to perm_err above
|
---|
[154] | 425 | }
|
---|
[162] | 426 |
|
---|
[140] | 427 | # hmm. where do we send them?
|
---|
| 428 | if ($webvar{defrec} eq 'y' && !$permissions{admin}) {
|
---|
| 429 | $page->param(errmsg => "You are not permitted to edit default records");
|
---|
| 430 | $page->param(perm_err => 1);
|
---|
[162] | 431 | } else {
|
---|
[140] | 432 |
|
---|
| 433 | $page->param(mayeditsoa => $permissions{admin} || $permissions{domain_edit});
|
---|
[95] | 434 | ##fixme: ACL needs pondering. Does "edit domain" interact with record add/remove/etc?
|
---|
| 435 | # Note this seems to be answered "no" in Vega.
|
---|
| 436 | # ACLs
|
---|
[140] | 437 | $page->param(record_create => ($permissions{admin} || $permissions{record_create}) );
|
---|
[160] | 438 | # we don't have any general edit links on the page; they're all embedded in the TMPL_LOOP
|
---|
| 439 | # $page->param(record_edit => ($permissions{admin} || $permissions{record_edit}) );
|
---|
[140] | 440 | $page->param(record_delete => ($permissions{admin} || $permissions{record_delete}) );
|
---|
[95] | 441 |
|
---|
[47] | 442 | # Handle record list for both default records (per-group) and live domain records
|
---|
| 443 |
|
---|
[140] | 444 | $page->param(defrec => $webvar{defrec});
|
---|
[227] | 445 | $page->param(revrec => $webvar{revrec});
|
---|
[140] | 446 | $page->param(id => $webvar{id});
|
---|
| 447 | $page->param(curpage => $webvar{page});
|
---|
[47] | 448 |
|
---|
[224] | 449 | my $count = getRecCount($dbh, $webvar{defrec}, $webvar{revrec}, $webvar{id}, $filter);
|
---|
[47] | 450 |
|
---|
[140] | 451 | $sortby = 'host';
|
---|
[76] | 452 | # sort/order
|
---|
[140] | 453 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 454 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[76] | 455 |
|
---|
[140] | 456 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby');
|
---|
| 457 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order');
|
---|
[76] | 458 |
|
---|
[72] | 459 | # set up the headers
|
---|
[224] | 460 | my @cols;
|
---|
| 461 | my %colheads;
|
---|
| 462 | if ($webvar{revrec} eq 'n') {
|
---|
| 463 | @cols = ('host', 'type', 'val', 'distance', 'weight', 'port', 'ttl');
|
---|
| 464 | %colheads = (host => 'Name', type => 'Type', val => 'Address',
|
---|
[72] | 465 | distance => 'Distance', weight => 'Weight', port => 'Port', ttl => 'TTL');
|
---|
[224] | 466 | } else {
|
---|
| 467 | @cols = ('host', 'type', 'val', 'ttl');
|
---|
| 468 | %colheads = (host => 'IP Address', type => 'Type', val => 'Hostname', ttl => 'TTL');
|
---|
| 469 | }
|
---|
| 470 | my %custom = (id => $webvar{id}, defrec => $webvar{defrec}, revrec => $webvar{revrec});
|
---|
[140] | 471 | fill_colheads($sortby, $sortorder, \@cols, \%colheads, \%custom);
|
---|
[72] | 472 |
|
---|
[47] | 473 | # fill the page-count and first-previous-next-last-all details
|
---|
[140] | 474 | fill_pgcount($count,"records",
|
---|
[224] | 475 | ($webvar{defrec} eq 'y' ? "group ".groupName($dbh,$webvar{id}) :
|
---|
| 476 | ($webvar{revrec} eq 'y' ? revName($dbh,$webvar{id}) : domainName($dbh,$webvar{id}))
|
---|
| 477 | ));
|
---|
[140] | 478 | fill_fpnla($count); # should put some params on this sub...
|
---|
[47] | 479 |
|
---|
[140] | 480 | $page->param(defrec => $webvar{defrec});
|
---|
[224] | 481 | showzone($webvar{defrec}, $webvar{revrec}, $webvar{id});
|
---|
[140] | 482 | if ($webvar{defrec} eq 'y') {
|
---|
| 483 | } else {
|
---|
[224] | 484 | # showzone('n',$webvar{id});
|
---|
[140] | 485 | ##fixme: permission for viewing logs?
|
---|
[224] | 486 | ##fixme: determine which slice of the log we view (group, domain, revzone)
|
---|
[140] | 487 | $page->param(logdom => 1);
|
---|
| 488 | }
|
---|
[47] | 489 |
|
---|
[177] | 490 | if ($session->param('resultmsg')) {
|
---|
| 491 | $page->param(resultmsg => $session->param('resultmsg'));
|
---|
| 492 | $session->clear('resultmsg');
|
---|
| 493 | }
|
---|
[234] | 494 | if ($session->param('warnmsg')) {
|
---|
| 495 | $page->param(warnmsg => $session->param('warnmsg'));
|
---|
| 496 | $session->clear('warnmsg');
|
---|
| 497 | }
|
---|
[174] | 498 | if ($session->param('errmsg')) {
|
---|
| 499 | $page->param(errmsg => $session->param('errmsg'));
|
---|
| 500 | $session->clear('errmsg');
|
---|
| 501 | }
|
---|
[63] | 502 |
|
---|
[140] | 503 | } # close "you can't edit default records" check
|
---|
| 504 |
|
---|
[162] | 505 | # Yes, this is a GOTO target. PTBHTTT.
|
---|
| 506 | DONERECLIST: ;
|
---|
| 507 |
|
---|
[13] | 508 | } elsif ($webvar{page} eq 'record') {
|
---|
[16] | 509 |
|
---|
[155] | 510 | # security check - does the user have permission to access this entity?
|
---|
[169] | 511 | if (!check_scope(id => $webvar{id}, type => ($webvar{defrec} eq 'y' ? 'defrec' : 'record'))) {
|
---|
[158] | 512 | $page->param(perm_err => "You are not permitted to edit the requested record");
|
---|
[155] | 513 | goto DONEREC;
|
---|
| 514 | }
|
---|
| 515 | # round 2, check the parent.
|
---|
[169] | 516 | if (!check_scope(id => $webvar{parentid}, type => ($webvar{defrec} eq 'y' ? 'group' : 'domain'))) {
|
---|
[155] | 517 | my $msg = ($webvar{defrec} eq 'y' ?
|
---|
| 518 | "You are not permitted to add or edit default records in the requested group" :
|
---|
| 519 | "You are not permitted to add or edit records in the requested domain");
|
---|
| 520 | $page->param(perm_err => $msg);
|
---|
| 521 | goto DONEREC;
|
---|
| 522 | }
|
---|
| 523 |
|
---|
[13] | 524 | if ($webvar{recact} eq 'new') {
|
---|
[16] | 525 |
|
---|
[95] | 526 | changepage(page => "reclist", errmsg => "You are not permitted to add records", id => $webvar{parentid})
|
---|
| 527 | unless ($permissions{admin} || $permissions{record_create});
|
---|
| 528 |
|
---|
[87] | 529 | $page->param(todo => "Add record");
|
---|
[15] | 530 | $page->param(recact => "add");
|
---|
[59] | 531 | $page->param(parentid => $webvar{parentid});
|
---|
| 532 | $page->param(defrec => $webvar{defrec});
|
---|
[227] | 533 | $page->param(revrec => $webvar{revrec});
|
---|
| 534 | $page->param(fwdzone => $webvar{revrec} eq 'n');
|
---|
[16] | 535 |
|
---|
[59] | 536 | fill_recdata();
|
---|
| 537 |
|
---|
[15] | 538 | } elsif ($webvar{recact} eq 'add') {
|
---|
| 539 |
|
---|
[95] | 540 | changepage(page => "reclist", errmsg => "You are not permitted to add records", id => $webvar{parentid})
|
---|
| 541 | unless ($permissions{admin} || $permissions{record_create});
|
---|
| 542 |
|
---|
[226] | 543 | my @recargs = ($dbh,$webvar{defrec},$webvar{revrec},$webvar{parentid},
|
---|
[234] | 544 | $webvar{name},\$webvar{type},$webvar{address},$webvar{ttl});
|
---|
[15] | 545 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV}) {
|
---|
| 546 | push @recargs, $webvar{distance};
|
---|
| 547 | if ($webvar{type} == $reverse_typemap{SRV}) {
|
---|
| 548 | push @recargs, $webvar{weight};
|
---|
| 549 | push @recargs, $webvar{port};
|
---|
| 550 | }
|
---|
| 551 | }
|
---|
[59] | 552 |
|
---|
[15] | 553 | my ($code,$msg) = addRec(@recargs);
|
---|
| 554 |
|
---|
[234] | 555 | if ($code eq 'OK' || $code eq 'WARN') {
|
---|
| 556 | my $restr;
|
---|
[57] | 557 | if ($webvar{defrec} eq 'y') {
|
---|
[234] | 558 | $restr = "Added default record '$webvar{name} $typemap{$webvar{type}}";
|
---|
[195] | 559 | $restr .= " [distance $webvar{distance}]" if $typemap{$webvar{type}} eq 'MX';
|
---|
| 560 | $restr .= " [priority $webvar{distance}] [weight $webvar{weight}] [port $webvar{port}]"
|
---|
| 561 | if $typemap{$webvar{type}} eq 'SRV';
|
---|
[193] | 562 | $restr .= " $webvar{address}', TTL $webvar{ttl}";
|
---|
[151] | 563 | logaction(0, $session->param("username"), $webvar{parentid}, $restr);
|
---|
[57] | 564 | } else {
|
---|
[234] | 565 | $restr = "Added record '$webvar{name} $typemap{$webvar{type}}";
|
---|
[209] | 566 | $restr .= " [distance $webvar{distance}]" if $typemap{$webvar{type}} eq 'MX';
|
---|
| 567 | $restr .= " [priority $webvar{distance}] [weight $webvar{weight}] [port $webvar{port}]"
|
---|
[195] | 568 | if $typemap{$webvar{type}} eq 'SRV';
|
---|
[193] | 569 | $restr .= " $webvar{address}', TTL $webvar{ttl}";
|
---|
[151] | 570 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{parentid}, 'dom', 'group'), $restr);
|
---|
[57] | 571 | }
|
---|
[234] | 572 | my %pageparams = (page => "reclist", id => $webvar{parentid},
|
---|
| 573 | defrec => $webvar{defrec}, revrec => $webvar{revrec});
|
---|
| 574 | $pageparams{warnmsg} = $msg."<br><br>\n".$restr if $code eq 'WARN';
|
---|
| 575 | $pageparams{resultmsg} = $restr if $code eq 'OK';
|
---|
| 576 | changepage(%pageparams);
|
---|
[15] | 577 | } else {
|
---|
[24] | 578 | $page->param(failed => 1);
|
---|
| 579 | $page->param(errmsg => $msg);
|
---|
| 580 | $page->param(wastrying => "adding");
|
---|
[87] | 581 | $page->param(todo => "Add record");
|
---|
[24] | 582 | $page->param(recact => "add");
|
---|
| 583 | $page->param(parentid => $webvar{parentid});
|
---|
| 584 | $page->param(defrec => $webvar{defrec});
|
---|
[234] | 585 | $page->param(revrec => $webvar{revrec});
|
---|
[24] | 586 | $page->param(id => $webvar{id});
|
---|
[234] | 587 | $page->param(fwdzone => $webvar{revrec} eq 'n');
|
---|
[16] | 588 | fill_recdata(); # populate the form... er, mostly.
|
---|
[209] | 589 | $page->param(name => $webvar{name});
|
---|
[195] | 590 | if ($config{log_failures}) {
|
---|
| 591 | if ($webvar{defrec} eq 'y') {
|
---|
| 592 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
[63] | 593 | "Failed adding default record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[195] | 594 | } else {
|
---|
| 595 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{parentid}, 'dom', 'group'),
|
---|
[63] | 596 | "Failed adding record '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[195] | 597 | }
|
---|
[59] | 598 | }
|
---|
[15] | 599 | }
|
---|
| 600 |
|
---|
[13] | 601 | } elsif ($webvar{recact} eq 'edit') {
|
---|
[15] | 602 |
|
---|
[95] | 603 | changepage(page => "reclist", errmsg => "You are not permitted to edit records", id => $webvar{parentid})
|
---|
| 604 | unless ($permissions{admin} || $permissions{record_edit});
|
---|
| 605 |
|
---|
[16] | 606 | $page->param(todo => "Update record");
|
---|
| 607 | $page->param(recact => "update");
|
---|
| 608 | $page->param(parentid => $webvar{parentid});
|
---|
[17] | 609 | $page->param(id => $webvar{id});
|
---|
[16] | 610 | $page->param(defrec => $webvar{defrec});
|
---|
[90] | 611 | my $recdata = getRecLine($dbh, $webvar{defrec}, $webvar{id});
|
---|
| 612 | $page->param(name => $recdata->{host});
|
---|
| 613 | $page->param(address => $recdata->{val});
|
---|
| 614 | $page->param(distance => $recdata->{distance});
|
---|
| 615 | $page->param(weight => $recdata->{weight});
|
---|
| 616 | $page->param(port => $recdata->{port});
|
---|
| 617 | $page->param(ttl => $recdata->{ttl});
|
---|
[225] | 618 | $page->param(typelist => getTypelist($dbh, $webvar{revrec}, $webvar{type}));
|
---|
[16] | 619 |
|
---|
| 620 | } elsif ($webvar{recact} eq 'update') {
|
---|
| 621 |
|
---|
[95] | 622 | changepage(page => "reclist", errmsg => "You are not permitted to edit records", id => $webvar{parentid})
|
---|
| 623 | unless ($permissions{admin} || $permissions{record_edit});
|
---|
| 624 |
|
---|
[159] | 625 | # prevent out-of-domain records from getting added by appending the domain, or DOMAIN for default records
|
---|
| 626 | my $pname = ($webvar{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$webvar{parentid}));
|
---|
| 627 | $webvar{name} =~ s/\.*$/\.$pname/ if $webvar{name} !~ /$pname$/;
|
---|
| 628 |
|
---|
[160] | 629 | # get current/previous record info so we can log "updated 'foo A 1.2.3.4' to 'foo A 2.3.4.5'"
|
---|
| 630 | my $oldrec = getRecLine($dbh, $webvar{defrec}, $webvar{id});
|
---|
[159] | 631 |
|
---|
[16] | 632 | my ($code,$msg) = updateRec($dbh,$webvar{defrec},$webvar{id},
|
---|
| 633 | $webvar{name},$webvar{type},$webvar{address},$webvar{ttl},
|
---|
| 634 | $webvar{distance},$webvar{weight},$webvar{port});
|
---|
| 635 |
|
---|
| 636 | if ($code eq 'OK') {
|
---|
[193] | 637 | ##fixme: retrieve old record info for full logging of change
|
---|
[57] | 638 | if ($webvar{defrec} eq 'y') {
|
---|
[160] | 639 | my $restr = "Updated default record from '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl}\n".
|
---|
| 640 | "to '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}";
|
---|
[151] | 641 | logaction(0, $session->param("username"), $webvar{parentid}, $restr);
|
---|
| 642 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec}, resultmsg => $restr);
|
---|
[57] | 643 | } else {
|
---|
[160] | 644 | my $restr = "Updated record from '$oldrec->{host} $typemap{$oldrec->{type}} $oldrec->{val}', TTL $oldrec->{ttl}\n".
|
---|
| 645 | "to '$webvar{name} $typemap{$webvar{type}} $webvar{address}', TTL $webvar{ttl}";
|
---|
[151] | 646 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{id}, 'rec', 'group'), $restr);
|
---|
| 647 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec}, resultmsg => $restr);
|
---|
[57] | 648 | }
|
---|
[16] | 649 | } else {
|
---|
| 650 | $page->param(failed => 1);
|
---|
| 651 | $page->param(errmsg => $msg);
|
---|
| 652 | $page->param(wastrying => "updating");
|
---|
| 653 | $page->param(todo => "Update record");
|
---|
| 654 | $page->param(recact => "update");
|
---|
| 655 | $page->param(parentid => $webvar{parentid});
|
---|
| 656 | $page->param(defrec => $webvar{defrec});
|
---|
[17] | 657 | $page->param(id => $webvar{id});
|
---|
[16] | 658 | fill_recdata();
|
---|
[195] | 659 | if ($config{log_failures}) {
|
---|
| 660 | if ($webvar{defrec} eq 'y') {
|
---|
| 661 | logaction(0, $session->param("username"), $webvar{parentid},
|
---|
[63] | 662 | "Failed updating default record '$typemap{$webvar{type}} $webvar{name} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[195] | 663 | } else {
|
---|
| 664 | logaction($webvar{parentid}, $session->param("username"), parentID($webvar{parentid}, 'dom', 'group'),
|
---|
[63] | 665 | "Failed updating record '$typemap{$webvar{type}} $webvar{name} $webvar{address}', TTL $webvar{ttl} ($msg)");
|
---|
[195] | 666 | }
|
---|
[59] | 667 | }
|
---|
[16] | 668 | }
|
---|
[13] | 669 | }
|
---|
[16] | 670 |
|
---|
[13] | 671 | if ($webvar{defrec} eq 'y') {
|
---|
[20] | 672 | $page->param(dohere => "default records in group ".groupName($dbh,$webvar{parentid}));
|
---|
[13] | 673 | } else {
|
---|
[24] | 674 | $page->param(parentid => $webvar{parentid});
|
---|
[16] | 675 | $page->param(dohere => domainName($dbh,$webvar{parentid}));
|
---|
[13] | 676 | }
|
---|
| 677 |
|
---|
[155] | 678 | # Yes, this is a GOTO target. PTBHTTT.
|
---|
| 679 | DONEREC: ;
|
---|
| 680 |
|
---|
[2] | 681 | } elsif ($webvar{page} eq 'delrec') {
|
---|
| 682 |
|
---|
[111] | 683 | # This is a complete separate segment since it uses a different template from add/edit records above
|
---|
| 684 |
|
---|
[95] | 685 | changepage(page => "reclist", errmsg => "You are not permitted to delete records", id => $webvar{parentid})
|
---|
| 686 | unless ($permissions{admin} || $permissions{record_delete});
|
---|
| 687 |
|
---|
[182] | 688 | if (!check_scope(id => $webvar{id}, type => ($webvar{defrec} eq 'y' ? 'group' : 'domain'))) {
|
---|
| 689 | changepage(page => 'domlist', errmsg => "You do not have permission to delete records in the requested ".
|
---|
| 690 | ($webvar{defrec} eq 'y' ? 'group' : 'domain'));
|
---|
| 691 | }
|
---|
| 692 |
|
---|
[2] | 693 | $page->param(id => $webvar{id});
|
---|
| 694 | $page->param(defrec => $webvar{defrec});
|
---|
[39] | 695 | $page->param(parentid => $webvar{parentid});
|
---|
[2] | 696 | # first pass = confirm y/n (sorta)
|
---|
| 697 | if (!defined($webvar{del})) {
|
---|
| 698 | $page->param(del_getconf => 1);
|
---|
[107] | 699 | my $rec = getRecLine($dbh,$webvar{defrec},$webvar{id});
|
---|
| 700 | $page->param(host => $rec->{host});
|
---|
| 701 | $page->param(ftype => $typemap{$rec->{type}});
|
---|
| 702 | $page->param(recval => $rec->{val});
|
---|
[39] | 703 | } elsif ($webvar{del} eq 'ok') {
|
---|
[62] | 704 | # get rec data before we try to delete it
|
---|
[107] | 705 | my $rec = getRecLine($dbh,$webvar{defrec},$webvar{id});
|
---|
[3] | 706 | my ($code,$msg) = delRec($dbh,$webvar{defrec},$webvar{id});
|
---|
[187] | 707 | if ($code eq 'OK') {
|
---|
| 708 | if ($webvar{defrec} eq 'y') {
|
---|
| 709 | ##fixme: log distance for MX; log port/weight/distance for SRV
|
---|
| 710 | my $restr = "Deleted default record '$rec->{host} $typemap{$rec->{type}} $rec->{val}', TTL $rec->{ttl}";
|
---|
| 711 | logaction(0, $session->param("username"), $rec->{parid}, $restr);
|
---|
| 712 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec}, resultmsg => $restr);
|
---|
| 713 | } else {
|
---|
| 714 | my $restr = "Deleted record '$rec->{host} $typemap{$rec->{type}} $rec->{val}', TTL $rec->{ttl}";
|
---|
| 715 | logaction($rec->{parid}, $session->param("username"), parentID($rec->{parid}, 'dom', 'group'), $restr);
|
---|
| 716 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec}, resultmsg => $restr);
|
---|
| 717 | }
|
---|
| 718 | } else {
|
---|
[3] | 719 | ## need to find failure mode
|
---|
[195] | 720 | if ($config{log_failures}) {
|
---|
| 721 | if ($webvar{defrec} eq 'y') {
|
---|
| 722 | logaction(0, $session->param("username"), $rec->{parid},
|
---|
[107] | 723 | "Failed deleting default record '$rec->{host} $typemap{$rec->{type}} $rec->{val}',".
|
---|
| 724 | " TTL $rec->{ttl} ($msg)");
|
---|
[195] | 725 | } else {
|
---|
| 726 | logaction($rec->{parid}, $session->param("username"), parentID($rec->{parid}, 'dom', 'group'),
|
---|
[107] | 727 | "Failed deleting record '$rec->{host} $typemap{$rec->{type}} $rec->{val}', TTL $rec->{ttl} ($msg)");
|
---|
[195] | 728 | }
|
---|
[62] | 729 | }
|
---|
[88] | 730 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec},
|
---|
[95] | 731 | errmsg => "Error deleting record: $msg");
|
---|
[3] | 732 | }
|
---|
[39] | 733 | } else {
|
---|
| 734 | changepage(page => "reclist", id => $webvar{parentid}, defrec => $webvar{defrec});
|
---|
[2] | 735 | }
|
---|
| 736 |
|
---|
| 737 | } elsif ($webvar{page} eq 'editsoa') {
|
---|
| 738 |
|
---|
[162] | 739 | # security check - does the user have permission to view this entity?
|
---|
[169] | 740 | if (!check_scope(id => $webvar{id}, type => ($webvar{defrec} eq 'y' ? 'group' : 'domain'))) {
|
---|
[162] | 741 | changepage(page => 'domlist', errmsg => "You do not have permission to edit the ".
|
---|
| 742 | ($webvar{defrec} eq 'y' ? 'default ' : '')."SOA record for the requested ".
|
---|
| 743 | ($webvar{defrec} eq 'y' ? 'group' : 'domain'));
|
---|
| 744 | }
|
---|
| 745 |
|
---|
| 746 | if ($webvar{defrec} eq 'y') {
|
---|
| 747 | changepage(page => "domlist", errmsg => "You are not permitted to edit default records")
|
---|
| 748 | unless $permissions{admin};
|
---|
| 749 | } else {
|
---|
| 750 | changepage(page => "reclist", errmsg => "You are not permitted to edit domain SOA records", id => $webvar{id})
|
---|
[111] | 751 | unless ($permissions{admin} || $permissions{domain_edit});
|
---|
[162] | 752 | }
|
---|
[111] | 753 |
|
---|
[39] | 754 | fillsoa($webvar{defrec},$webvar{id});
|
---|
[2] | 755 |
|
---|
| 756 | } elsif ($webvar{page} eq 'updatesoa') {
|
---|
| 757 |
|
---|
[162] | 758 | # security check - does the user have permission to view this entity?
|
---|
| 759 | # pass 1, record ID
|
---|
[169] | 760 | if (!check_scope(id => $webvar{recid}, type => ($webvar{defrec} eq 'y' ? 'defrec' : 'record'))) {
|
---|
[162] | 761 | changepage(page => 'domlist', errmsg => "You do not have permission to edit the requested SOA record");
|
---|
| 762 | }
|
---|
| 763 | # pass 2, parent (group or domain) ID
|
---|
[169] | 764 | if (!check_scope(id => $webvar{id}, type => ($webvar{defrec} eq 'y' ? 'group' : 'domain'))) {
|
---|
[162] | 765 | changepage(page => 'domlist', errmsg => "You do not have permission to edit the ".
|
---|
| 766 | ($webvar{defrec} eq 'y' ? 'default ' : '')."SOA record for the requested ".
|
---|
| 767 | ($webvar{defrec} eq 'y' ? 'group' : 'domain'));
|
---|
| 768 | }
|
---|
| 769 |
|
---|
[111] | 770 | changepage(page => "reclist", errmsg => "You are not permitted to edit domain SOA records", id => $webvar{id})
|
---|
| 771 | unless ($permissions{admin} || $permissions{domain_edit});
|
---|
| 772 |
|
---|
[162] | 773 | # get old SOA for log
|
---|
| 774 | my %soa = getSOA($dbh,$webvar{defrec},$webvar{id});
|
---|
| 775 |
|
---|
[2] | 776 | my $sth;
|
---|
[162] | 777 | ##fixme: push SQL into DNSDB.pm
|
---|
| 778 | ##fixme: data validation: make sure {recid} is really the SOA for {id}
|
---|
[2] | 779 | # no domain ID, so we're editing the default SOA for a group (we don't care which one here)
|
---|
| 780 | # plus a bit of magic to update the appropriate table
|
---|
[162] | 781 | my $sql = "UPDATE ".($webvar{defrec} eq 'y' ? "default_records" : "records").
|
---|
| 782 | " SET host=?, val=?, ttl=? WHERE record_id=?";
|
---|
[2] | 783 | $sth = $dbh->prepare($sql);
|
---|
[202] | 784 | $sth->execute("$webvar{contact}:$webvar{prins}",
|
---|
[162] | 785 | "$webvar{refresh}:$webvar{retry}:$webvar{expire}:$webvar{minttl}",
|
---|
| 786 | $webvar{ttl},
|
---|
| 787 | $webvar{recid});
|
---|
[2] | 788 |
|
---|
| 789 | if ($sth->err) {
|
---|
| 790 | $page->param(update_failed => 1);
|
---|
| 791 | $page->param(msg => $DBI::errstr);
|
---|
[39] | 792 | fillsoa($webvar{defrec},$webvar{id});
|
---|
[195] | 793 | ##fixme: faillog
|
---|
[2] | 794 | } else {
|
---|
[57] | 795 |
|
---|
[162] | 796 | # do this in the order of "default to most common case"
|
---|
| 797 | my $loggroup;
|
---|
| 798 | my $logdomain = $webvar{id};
|
---|
| 799 | if ($webvar{defrec} eq 'y') {
|
---|
| 800 | $loggroup = $webvar{id};
|
---|
| 801 | $logdomain = 0;
|
---|
| 802 | } else {
|
---|
| 803 | $loggroup = parentID($logdomain, 'dom', 'group', $webvar{defrec});
|
---|
| 804 | }
|
---|
| 805 |
|
---|
| 806 | logaction($logdomain, $session->param("username"), $loggroup,
|
---|
| 807 | "Updated ".($webvar{defrec} eq 'y' ? 'default ' : '')."SOA for ".
|
---|
| 808 | ($webvar{defrec} eq 'y' ? groupName($dbh, $webvar{id}) : domainName($dbh, $webvar{id}) ).
|
---|
| 809 | ": (ns $soa{prins}, contact $soa{contact}, refresh $soa{refresh},".
|
---|
| 810 | " retry $soa{retry}, expire $soa{expire}, minTTL $soa{minttl}, TTL $soa{ttl}) to ".
|
---|
| 811 | "(ns $webvar{prins}, contact $webvar{contact}, refresh $webvar{refresh},".
|
---|
| 812 | " retry $webvar{retry}, expire $webvar{expire}, minTTL $webvar{minttl}, TTL $webvar{ttl})");
|
---|
| 813 | changepage(page => "reclist", id => $webvar{id}, defrec => $webvar{defrec},
|
---|
| 814 | resultmsg => "SOA record updated");
|
---|
[2] | 815 | }
|
---|
| 816 |
|
---|
[17] | 817 | } elsif ($webvar{page} eq 'grpman') {
|
---|
[2] | 818 |
|
---|
[22] | 819 | listgroups();
|
---|
[140] | 820 |
|
---|
| 821 | # Permissions!
|
---|
| 822 | $page->param(addgrp => $permissions{admin} || $permissions{group_create});
|
---|
| 823 | $page->param(edgrp => $permissions{admin} || $permissions{group_edit});
|
---|
| 824 | $page->param(delgrp => $permissions{admin} || $permissions{group_delete});
|
---|
| 825 |
|
---|
[177] | 826 | if ($session->param('resultmsg')) {
|
---|
| 827 | $page->param(resultmsg => $session->param('resultmsg'));
|
---|
| 828 | $session->clear('resultmsg');
|
---|
| 829 | }
|
---|
[178] | 830 | if ($session->param('warnmsg')) {
|
---|
| 831 | $page->param(warnmsg => $session->param('warnmsg'));
|
---|
| 832 | $session->clear('warnmsg');
|
---|
| 833 | }
|
---|
[174] | 834 | if ($session->param('errmsg')) {
|
---|
| 835 | $page->param(errmsg => $session->param('errmsg'));
|
---|
| 836 | $session->clear('errmsg');
|
---|
| 837 | }
|
---|
[18] | 838 | $page->param(curpage => $webvar{page});
|
---|
| 839 |
|
---|
[17] | 840 | } elsif ($webvar{page} eq 'newgrp') {
|
---|
[20] | 841 |
|
---|
[179] | 842 | changepage(page => "grpman", errmsg => "You are not permitted to add groups")
|
---|
| 843 | unless ($permissions{admin} || $permissions{group_create});
|
---|
[111] | 844 |
|
---|
[207] | 845 | # do.. uhh.. stuff.. if we have no webvar{grpaction}
|
---|
| 846 | if ($webvar{grpaction} && $webvar{grpaction} eq 'add') {
|
---|
[179] | 847 |
|
---|
| 848 | # security check - does the user have permission to access this entity?
|
---|
| 849 | if (!check_scope(id => $webvar{pargroup}, type => 'group')) {
|
---|
| 850 | changepage(page => "grpman", errmsg => "You are not permitted to add a group to the requested parent group");
|
---|
| 851 | }
|
---|
| 852 |
|
---|
[66] | 853 | my %newperms;
|
---|
[179] | 854 | my $alterperms = 0;
|
---|
[66] | 855 | foreach (@permtypes) {
|
---|
| 856 | $newperms{$_} = 0;
|
---|
[179] | 857 | if ($permissions{admin} || $permissions{$_}) {
|
---|
| 858 | $newperms{$_} = (defined($webvar{$_}) && $webvar{$_} eq 'on' ? 1 : 0);
|
---|
| 859 | } else {
|
---|
| 860 | $alterperms = 1;
|
---|
| 861 | }
|
---|
[66] | 862 | }
|
---|
[88] | 863 | # not gonna provide the 4th param: template-or-clone flag, just yet
|
---|
[66] | 864 | my ($code,$msg) = addGroup($dbh, $webvar{newgroup}, $webvar{pargroup}, \%newperms);
|
---|
[57] | 865 | if ($code eq 'OK') {
|
---|
[55] | 866 | logaction(0, $session->param("username"), $webvar{pargroup}, "Added group $webvar{newgroup}");
|
---|
[179] | 867 | if ($alterperms) {
|
---|
| 868 | changepage(page => "grpman", warnmsg =>
|
---|
| 869 | "You can only grant permissions you hold. New group $webvar{newgroup} added with reduced access.");
|
---|
| 870 | } else {
|
---|
| 871 | changepage(page => "grpman", resultmsg => "Added group $webvar{newgroup}");
|
---|
| 872 | }
|
---|
[187] | 873 | } # fallthrough else
|
---|
[195] | 874 | logaction(0, $session->param("username"), $webvar{pargroup}, "Failed to add group $webvar{newgroup}: $msg")
|
---|
| 875 | if $config{log_failures};
|
---|
[66] | 876 | # no point in doing extra work
|
---|
| 877 | fill_permissions($page, \%newperms);
|
---|
[18] | 878 | $page->param(add_failed => 1);
|
---|
| 879 | $page->param(errmsg => $msg);
|
---|
| 880 | $page->param(newgroup => $webvar{newgroup});
|
---|
[66] | 881 | fill_grouplist('pargroup',$webvar{pargroup});
|
---|
[19] | 882 | } else {
|
---|
[66] | 883 | fill_grouplist('pargroup',$curgroup);
|
---|
[88] | 884 | # fill default permissions with immediate parent's current ones
|
---|
[66] | 885 | my %parperms;
|
---|
| 886 | getPermissions($dbh, 'group', $curgroup, \%parperms);
|
---|
| 887 | fill_permissions($page, \%parperms);
|
---|
[18] | 888 | }
|
---|
[20] | 889 |
|
---|
[22] | 890 | } elsif ($webvar{page} eq 'delgrp') {
|
---|
[20] | 891 |
|
---|
[111] | 892 | changepage(page => "grpman", errmsg => "You are not permitted to delete groups", id => $webvar{parentid})
|
---|
| 893 | unless ($permissions{admin} || $permissions{group_delete});
|
---|
| 894 |
|
---|
[179] | 895 | # security check - does the user have permission to access this entity?
|
---|
| 896 | if (!check_scope(id => $webvar{id}, type => 'group')) {
|
---|
| 897 | changepage(page => "grpman", errmsg => "You are not permitted to delete the requested group");
|
---|
| 898 | }
|
---|
| 899 |
|
---|
[20] | 900 | $page->param(id => $webvar{id});
|
---|
| 901 | # first pass = confirm y/n (sorta)
|
---|
| 902 | if (!defined($webvar{del})) {
|
---|
| 903 | $page->param(del_getconf => 1);
|
---|
[140] | 904 |
|
---|
| 905 | ##fixme
|
---|
| 906 | # do a check for "group has stuff in it", and splatter a big warning
|
---|
| 907 | # up along with an unchecked-by-default check box to YES DAMMIT DELETE THE WHOLE THING
|
---|
| 908 |
|
---|
[20] | 909 | } elsif ($webvar{del} eq 'ok') {
|
---|
[57] | 910 | my $deleteme = groupName($dbh,$webvar{id}); # get this before we delete it...
|
---|
[167] | 911 | my $delparent = parentID($webvar{id}, 'group','group');
|
---|
[20] | 912 | my ($code,$msg) = delGroup($dbh, $webvar{id});
|
---|
[187] | 913 | if ($code eq 'OK') {
|
---|
[57] | 914 | ##fixme: need to clean up log when deleting a major container
|
---|
[167] | 915 | logaction(0, $session->param("username"), $delparent, "Deleted group $deleteme");
|
---|
[147] | 916 | changepage(page => "grpman", resultmsg => "Deleted group $deleteme");
|
---|
[187] | 917 | } else {
|
---|
| 918 | # need to find failure mode
|
---|
[195] | 919 | logaction(0, $session->param("username"), $delparent, "Failed to delete group $deleteme: $msg")
|
---|
| 920 | if $config{log_failures};
|
---|
[187] | 921 | changepage(page => "grpman", errmsg => "Error deleting group $deleteme: $msg");
|
---|
[20] | 922 | }
|
---|
| 923 | } else {
|
---|
| 924 | # cancelled. whee!
|
---|
| 925 | changepage(page => "grpman");
|
---|
| 926 | }
|
---|
[23] | 927 | $page->param(delgroupname => groupName($dbh, $webvar{id}));
|
---|
[24] | 928 |
|
---|
[65] | 929 | } elsif ($webvar{page} eq 'edgroup') {
|
---|
| 930 |
|
---|
[140] | 931 | changepage(page => "grpman", errmsg => "You are not permitted to edit groups")
|
---|
[111] | 932 | unless ($permissions{admin} || $permissions{group_edit});
|
---|
| 933 |
|
---|
[179] | 934 | # security check - does the user have permission to access this entity?
|
---|
| 935 | if (!check_scope(id => $webvar{gid}, type => 'group')) {
|
---|
| 936 | changepage(page => "grpman", errmsg => "You are not permitted to edit the requested group");
|
---|
| 937 | }
|
---|
| 938 |
|
---|
[207] | 939 | if ($webvar{grpaction} eq 'updperms') {
|
---|
[65] | 940 | # extra safety check; make sure user can't construct a URL to bypass ACLs
|
---|
| 941 | my %curperms;
|
---|
| 942 | getPermissions($dbh, 'group', $webvar{gid}, \%curperms);
|
---|
[66] | 943 | my %chperms;
|
---|
[178] | 944 | my $alterperms = 0;
|
---|
[66] | 945 | foreach (@permtypes) {
|
---|
[65] | 946 | $webvar{$_} = 0 if !defined($webvar{$_});
|
---|
| 947 | $webvar{$_} = 1 if $webvar{$_} eq 'on';
|
---|
[178] | 948 | if ($permissions{admin} || $permissions{$_}) {
|
---|
| 949 | $chperms{$_} = $webvar{$_} if $curperms{$_} ne $webvar{$_};
|
---|
| 950 | } else {
|
---|
| 951 | $alterperms = 1;
|
---|
| 952 | $chperms{$_} = 0;
|
---|
| 953 | }
|
---|
[65] | 954 | }
|
---|
[66] | 955 | my ($code,$msg) = changePermissions($dbh, 'group', $webvar{gid}, \%chperms);
|
---|
| 956 | if ($code eq 'OK') {
|
---|
[148] | 957 | logaction(0, $session->param("username"), $webvar{gid},
|
---|
| 958 | "Updated default permissions in group $webvar{gid} (".groupName($dbh, $webvar{gid}).")");
|
---|
[178] | 959 | if ($alterperms) {
|
---|
| 960 | changepage(page => "grpman", warnmsg =>
|
---|
| 961 | "You can only grant permissions you hold. Default permissions in group ".
|
---|
| 962 | groupName($dbh, $webvar{gid})." updated with reduced access");
|
---|
| 963 | } else {
|
---|
| 964 | changepage(page => "grpman", resultmsg =>
|
---|
| 965 | "Updated default permissions in group ".groupName($dbh, $webvar{gid}));
|
---|
| 966 | }
|
---|
[187] | 967 | } # fallthrough else
|
---|
| 968 | logaction(0, $session->param("username"), $webvar{gid}, "Failed to update default permissions in group ".
|
---|
[195] | 969 | groupName($dbh, $webvar{gid}).": $msg")
|
---|
| 970 | if $config{log_failures};
|
---|
[66] | 971 | # no point in doing extra work
|
---|
| 972 | fill_permissions($page, \%chperms);
|
---|
| 973 | $page->param(errmsg => $msg);
|
---|
[65] | 974 | }
|
---|
| 975 | $page->param(gid => $webvar{gid});
|
---|
| 976 | $page->param(grpmeddle => groupName($dbh, $webvar{gid}));
|
---|
| 977 | my %grpperms;
|
---|
| 978 | getPermissions($dbh, 'group', $webvar{gid}, \%grpperms);
|
---|
[66] | 979 | fill_permissions($page, \%grpperms);
|
---|
[65] | 980 |
|
---|
[110] | 981 | } elsif ($webvar{page} eq 'bulkdomain') {
|
---|
| 982 | # Bulk operations on domains. Note all but group move are available on the domain list.
|
---|
| 983 |
|
---|
| 984 | changepage(page => "domlist", errmsg => "You are not permitted to make bulk domain changes")
|
---|
[111] | 985 | unless ($permissions{admin} || $permissions{domain_edit} || $permissions{domain_create} || $permissions{domain_delete});
|
---|
[110] | 986 |
|
---|
[126] | 987 | fill_grouplist("grouplist");
|
---|
| 988 |
|
---|
[110] | 989 | ##fixme
|
---|
| 990 | ##fixme push the SQL and direct database fiddling off into a sub in DNSDB.pm
|
---|
| 991 | ##fixme
|
---|
| 992 |
|
---|
| 993 | my $sth = $dbh->prepare("SELECT count(*) FROM domains WHERE group_id=?");
|
---|
| 994 | $sth->execute($curgroup);
|
---|
| 995 | my ($count) = ($sth->fetchrow_array);
|
---|
| 996 |
|
---|
| 997 | $page->param(curpage => $webvar{page});
|
---|
| 998 | fill_pgcount($count,'domains',groupName($dbh,$curgroup));
|
---|
| 999 | fill_fpnla($count);
|
---|
[112] | 1000 | $page->param(perpage => $perpage);
|
---|
[110] | 1001 |
|
---|
| 1002 | my @domlist;
|
---|
| 1003 | my $sql = "SELECT domain_id,domain FROM domains".
|
---|
| 1004 | " WHERE group_id=?".
|
---|
| 1005 | " ORDER BY domain".
|
---|
| 1006 | ($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage);
|
---|
| 1007 | $sth = $dbh->prepare($sql);
|
---|
| 1008 | $sth->execute($curgroup);
|
---|
| 1009 | my $rownum = 0;
|
---|
| 1010 | while (my @data = $sth->fetchrow_array) {
|
---|
| 1011 | my %row;
|
---|
| 1012 | $row{domid} = $data[0];
|
---|
| 1013 | $row{domain} = $data[1];
|
---|
| 1014 | $rownum++; # putting this in the expression below causes failures. *eyeroll*
|
---|
| 1015 | $row{newrow} = $rownum % 5 == 0;
|
---|
| 1016 | push @domlist, \%row;
|
---|
| 1017 | }
|
---|
| 1018 | $page->param(domtable => \@domlist);
|
---|
[112] | 1019 | # ACLs
|
---|
[110] | 1020 | $page->param(maymove => ($permissions{admin} || ($permissions{domain_edit} && $permissions{domain_create} && $permissions{domain_delete})));
|
---|
| 1021 | $page->param(maystatus => $permissions{admin} || $permissions{domain_edit});
|
---|
| 1022 | $page->param(maydelete => $permissions{admin} || $permissions{domain_delete});
|
---|
| 1023 |
|
---|
[112] | 1024 | } elsif ($webvar{page} eq 'bulkchange') {
|
---|
[110] | 1025 |
|
---|
[155] | 1026 | # security check - does the user have permission to access this entity?
|
---|
[169] | 1027 | if (!check_scope(id => $webvar{destgroup}, type => 'group')) {
|
---|
[155] | 1028 | $page->param(errmsg => "You are not permitted to make bulk changes in the requested group");
|
---|
| 1029 | goto DONEBULK;
|
---|
| 1030 | }
|
---|
| 1031 |
|
---|
[207] | 1032 | if ($webvar{bulkaction} eq 'move') {
|
---|
[112] | 1033 | changepage(page => "domlist", errmsg => "You are not permitted to bulk-move domains")
|
---|
| 1034 | unless ($permissions{admin} || ($permissions{domain_edit} && $permissions{domain_create} && $permissions{domain_delete}));
|
---|
[114] | 1035 | my $newgname = groupName($dbh,$webvar{destgroup});
|
---|
| 1036 | $page->param(action => "Move to group $newgname");
|
---|
| 1037 | my @bulkresults;
|
---|
| 1038 | # nngh. due to alpha-sorting on the previous page, we can't use domid-numeric
|
---|
| 1039 | # order here, and since we don't have the domain names until we go around this
|
---|
| 1040 | # loop, we can't alpha-sort them here. :(
|
---|
| 1041 | foreach (keys %webvar) {
|
---|
| 1042 | my %row;
|
---|
| 1043 | next unless $_ =~ /^dom_\d+$/;
|
---|
[155] | 1044 | # second security check - does the user have permission to meddle with this domain?
|
---|
[169] | 1045 | if (!check_scope(id => $webvar{$_}, type => 'domain')) {
|
---|
[155] | 1046 | $row{domerr} = "You are not permitted to make changes to the requested domain";
|
---|
| 1047 | $row{domain} = $webvar{$_};
|
---|
| 1048 | push @bulkresults, \%row;
|
---|
| 1049 | next;
|
---|
| 1050 | }
|
---|
[114] | 1051 | $row{domain} = domainName($dbh,$webvar{$_});
|
---|
| 1052 | my ($code, $msg) = changeGroup($dbh, 'domain', $webvar{$_}, $webvar{destgroup});
|
---|
| 1053 | if ($code eq 'OK') {
|
---|
| 1054 | logaction($webvar{$_}, $session->param("username"), parentID($webvar{$_}, 'dom', 'group'),
|
---|
| 1055 | "Moved domain ".domainName($dbh, $webvar{$_})." to group $newgname");
|
---|
| 1056 | $row{domok} = ($code eq 'OK');
|
---|
| 1057 | } else {
|
---|
| 1058 | logaction($webvar{$_}, $session->param("username"), parentID($webvar{$_}, 'dom', 'group'),
|
---|
[195] | 1059 | "Failed to move domain ".domainName($dbh, $webvar{$_})." to group $newgname: $msg")
|
---|
| 1060 | if $config{log_failures};
|
---|
[114] | 1061 | }
|
---|
| 1062 | $row{domerr} = $msg;
|
---|
| 1063 | push @bulkresults, \%row;
|
---|
| 1064 | }
|
---|
| 1065 | $page->param(bulkresults => \@bulkresults);
|
---|
[112] | 1066 |
|
---|
[207] | 1067 | } elsif ($webvar{bulkaction} eq 'deactivate' || $webvar{bulkaction} eq 'activate') {
|
---|
| 1068 | changepage(page => "domlist", errmsg => "You are not permitted to bulk-$webvar{bulkaction} domains")
|
---|
[112] | 1069 | unless ($permissions{admin} || $permissions{domain_edit});
|
---|
[207] | 1070 | $page->param(action => "$webvar{bulkaction} domains");
|
---|
[114] | 1071 | my @bulkresults;
|
---|
| 1072 | foreach (keys %webvar) {
|
---|
| 1073 | my %row;
|
---|
| 1074 | next unless $_ =~ /^dom_\d+$/;
|
---|
[155] | 1075 | # second security check - does the user have permission to meddle with this domain?
|
---|
[169] | 1076 | if (!check_scope(id => $webvar{$_}, type => 'domain')) {
|
---|
[155] | 1077 | $row{domerr} = "You are not permitted to make changes to the requested domain";
|
---|
| 1078 | $row{domain} = $webvar{$_};
|
---|
| 1079 | push @bulkresults, \%row;
|
---|
| 1080 | next;
|
---|
| 1081 | }
|
---|
[114] | 1082 | $row{domain} = domainName($dbh,$webvar{$_});
|
---|
| 1083 | ##fixme: error handling on status change
|
---|
[207] | 1084 | my $stat = domStatus($dbh,$webvar{$_},($webvar{bulkaction} eq 'activate' ? 'domon' : 'domoff'));
|
---|
[114] | 1085 | logaction($webvar{$_}, $session->param("username"), parentID($webvar{$_}, 'dom', 'group'),
|
---|
| 1086 | "Changed domain ".domainName($dbh, $webvar{$_})." state to ".($stat ? 'active' : 'inactive'));
|
---|
| 1087 | $row{domok} = 1;
|
---|
| 1088 | # $row{domok} = ($code eq 'OK');
|
---|
| 1089 | # $row{domerr} = $msg;
|
---|
| 1090 | push @bulkresults, \%row;
|
---|
| 1091 | }
|
---|
| 1092 | $page->param(bulkresults => \@bulkresults);
|
---|
| 1093 |
|
---|
[207] | 1094 | } elsif ($webvar{bulkaction} eq 'delete') {
|
---|
[112] | 1095 | changepage(page => "domlist", errmsg => "You are not permitted to bulk-delete domains")
|
---|
| 1096 | unless ($permissions{admin} || $permissions{domain_delete});
|
---|
[207] | 1097 | $page->param(action => "$webvar{bulkaction} domains");
|
---|
[114] | 1098 | my @bulkresults;
|
---|
| 1099 | foreach (keys %webvar) {
|
---|
| 1100 | my %row;
|
---|
| 1101 | next unless $_ =~ /^dom_\d+$/;
|
---|
[155] | 1102 | # second security check - does the user have permission to meddle with this domain?
|
---|
[169] | 1103 | if (!check_scope(id => $webvar{$_}, type => 'domain')) {
|
---|
[155] | 1104 | $row{domerr} = "You are not permitted to make changes to the requested domain";
|
---|
| 1105 | $row{domain} = $webvar{$_};
|
---|
| 1106 | push @bulkresults, \%row;
|
---|
| 1107 | next;
|
---|
| 1108 | }
|
---|
[114] | 1109 | $row{domain} = domainName($dbh,$webvar{$_});
|
---|
| 1110 | my $pargroup = parentID($webvar{$_}, 'dom', 'group');
|
---|
| 1111 | my $dom = domainName($dbh, $webvar{$_});
|
---|
| 1112 | my ($code, $msg) = delDomain($dbh, $webvar{$_});
|
---|
| 1113 | if ($code eq 'OK') {
|
---|
| 1114 | logaction($webvar{$_}, $session->param("username"), $pargroup, "Deleted domain $dom");
|
---|
| 1115 | $row{domok} = ($code eq 'OK');
|
---|
| 1116 | } else {
|
---|
[195] | 1117 | logaction($webvar{$_}, $session->param("username"), $pargroup, "Failed to delete domain $dom: $msg")
|
---|
| 1118 | if $config{log_failures};
|
---|
[114] | 1119 | }
|
---|
| 1120 | $row{domerr} = $msg;
|
---|
| 1121 | push @bulkresults, \%row;
|
---|
| 1122 | }
|
---|
| 1123 | $page->param(bulkresults => \@bulkresults);
|
---|
| 1124 |
|
---|
| 1125 | } # move/(de)activate/delete if()
|
---|
| 1126 |
|
---|
[112] | 1127 | # not going to handle the unknown $webvar{action} else; it should not be possible in normal
|
---|
| 1128 | # operations, and anyone who meddles with the URL gets what they deserve.
|
---|
| 1129 |
|
---|
[155] | 1130 | # Yes, this is a GOTO target. PTHBTTT.
|
---|
| 1131 | DONEBULK: ;
|
---|
| 1132 |
|
---|
[24] | 1133 | } elsif ($webvar{page} eq 'useradmin') {
|
---|
| 1134 |
|
---|
[139] | 1135 | if (defined($webvar{userstatus})) {
|
---|
[153] | 1136 | # security check - does the user have permission to access this entity?
|
---|
| 1137 | my $flag = 0;
|
---|
| 1138 | foreach (@viewablegroups) {
|
---|
| 1139 | $flag = 1 if isParent($dbh, $_, 'group', $webvar{id}, 'user');
|
---|
| 1140 | }
|
---|
[188] | 1141 | if ($flag && ($permissions{admin} || $permissions{user_edit})) {
|
---|
| 1142 | my $stat = userStatus($dbh,$webvar{id},$webvar{userstatus});
|
---|
| 1143 | logaction(0, $session->param("username"), parentID($webvar{id}, 'user', 'group'),
|
---|
| 1144 | ($stat ? 'Enabled' : 'Disabled')." ".userFullName($dbh, $webvar{id}, '%u'));
|
---|
| 1145 | $page->param(resultmsg => ($stat ? 'Enabled' : 'Disabled')." ".userFullName($dbh, $webvar{id}, '%u'));
|
---|
[153] | 1146 | } else {
|
---|
| 1147 | $page->param(errmsg => "You are not permitted to view or change the requested user");
|
---|
| 1148 | }
|
---|
[188] | 1149 | $uri_self =~ s/\&userstatus=[^&]*//g; # clean up URL for stuffing into templates
|
---|
[51] | 1150 | }
|
---|
| 1151 |
|
---|
[142] | 1152 | list_users();
|
---|
| 1153 |
|
---|
| 1154 | # Permissions!
|
---|
| 1155 | $page->param(adduser => $permissions{admin} || $permissions{user_create});
|
---|
| 1156 | # should we block viewing other users? Vega blocks "editing"...
|
---|
| 1157 | # NB: no "edit self" link as with groups here. maybe there should be?
|
---|
| 1158 | # $page->param(eduser => $permissions{admin} || $permissions{user_edit});
|
---|
| 1159 | $page->param(deluser => $permissions{admin} || $permissions{user_delete});
|
---|
| 1160 |
|
---|
[177] | 1161 | if ($session->param('resultmsg')) {
|
---|
| 1162 | $page->param(resultmsg => $session->param('resultmsg'));
|
---|
| 1163 | $session->clear('resultmsg');
|
---|
| 1164 | }
|
---|
| 1165 | if ($session->param('warnmsg')) {
|
---|
| 1166 | $page->param(warnmsg => $session->param('warnmsg'));
|
---|
| 1167 | $session->clear('warnmsg');
|
---|
| 1168 | }
|
---|
[174] | 1169 | if ($session->param('errmsg')) {
|
---|
| 1170 | $page->param(errmsg => $session->param('errmsg'));
|
---|
| 1171 | $session->clear('errmsg');
|
---|
| 1172 | }
|
---|
[24] | 1173 | $page->param(curpage => $webvar{page});
|
---|
| 1174 |
|
---|
[67] | 1175 | } elsif ($webvar{page} eq 'user') {
|
---|
| 1176 |
|
---|
[111] | 1177 | # All user add/edit actions fall through the same page, since there aren't
|
---|
| 1178 | # really any hard differences between the templates
|
---|
| 1179 |
|
---|
[83] | 1180 | #fill_actypelist($webvar{accttype});
|
---|
[67] | 1181 | fill_clonemelist();
|
---|
| 1182 | my %grpperms;
|
---|
| 1183 | getPermissions($dbh, 'group', $curgroup, \%grpperms);
|
---|
[83] | 1184 |
|
---|
[67] | 1185 | my $grppermlist = new HTML::Template(filename => "$templatedir/permlist.tmpl");
|
---|
| 1186 | my %noaccess;
|
---|
| 1187 | fill_permissions($grppermlist, \%grpperms, \%noaccess);
|
---|
| 1188 | $grppermlist->param(info => 1);
|
---|
| 1189 | $page->param(grpperms => $grppermlist->output);
|
---|
[83] | 1190 |
|
---|
[67] | 1191 | $page->param(is_admin => $permissions{admin});
|
---|
| 1192 |
|
---|
[207] | 1193 | $webvar{useraction} = '' if !$webvar{useraction};
|
---|
[88] | 1194 |
|
---|
[207] | 1195 | if ($webvar{useraction} eq 'add' or $webvar{useraction} eq 'update') {
|
---|
[67] | 1196 |
|
---|
[207] | 1197 | $page->param(add => 1) if $webvar{useraction} eq 'add';
|
---|
[83] | 1198 |
|
---|
[67] | 1199 | my ($code,$msg);
|
---|
| 1200 |
|
---|
| 1201 | my $alterperms = 0; # flag iff we need to force custom permissions due to user's current access limits
|
---|
| 1202 |
|
---|
[87] | 1203 | my %newperms; # we're going to prefill the existing permissions, so we can change them.
|
---|
| 1204 | getPermissions($dbh, 'user', $webvar{uid}, \%newperms);
|
---|
| 1205 |
|
---|
[67] | 1206 | if ($webvar{pass1} ne $webvar{pass2}) {
|
---|
| 1207 | $code = 'FAIL';
|
---|
| 1208 | $msg = "Passwords don't match";
|
---|
| 1209 | } else {
|
---|
| 1210 |
|
---|
[83] | 1211 | # assemble a permission string - far simpler than trying to pass an
|
---|
| 1212 | # indeterminate set of permission flags individually
|
---|
[67] | 1213 |
|
---|
[83] | 1214 | # But first, we have to see if the user can add any particular
|
---|
| 1215 | # permissions; otherwise we have a priviledge escalation. Whee.
|
---|
| 1216 |
|
---|
| 1217 | if (!$permissions{admin}) {
|
---|
| 1218 | my %grpperms;
|
---|
| 1219 | getPermissions($dbh, 'group', $curgroup, \%grpperms);
|
---|
| 1220 | my $ret = comparePermissions(\%permissions, \%grpperms);
|
---|
[144] | 1221 | if ($ret eq '<' || $ret eq '!') {
|
---|
[83] | 1222 | # User's permissions are not a superset or equivalent to group. Can't inherit
|
---|
| 1223 | # (and include access user doesn't currently have), so we force custom.
|
---|
| 1224 | $webvar{perms_type} = 'custom';
|
---|
| 1225 | $alterperms = 1;
|
---|
| 1226 | }
|
---|
| 1227 | }
|
---|
| 1228 |
|
---|
[67] | 1229 | my $permstring;
|
---|
| 1230 | if ($webvar{perms_type} eq 'custom') {
|
---|
| 1231 | $permstring = 'C:';
|
---|
| 1232 | foreach (@permtypes) {
|
---|
[87] | 1233 | if ($permissions{admin} || $permissions{$_}) {
|
---|
[67] | 1234 | $permstring .= ",$_" if defined($webvar{$_}) && $webvar{$_} eq 'on';
|
---|
[87] | 1235 | $newperms{$_} = (defined($webvar{$_}) && $webvar{$_} eq 'on' ? 1 : 0);
|
---|
[67] | 1236 | }
|
---|
| 1237 | }
|
---|
| 1238 | $page->param(perm_custom => 1);
|
---|
| 1239 | } elsif ($permissions{admin} && $webvar{perms_type} eq 'clone') {
|
---|
| 1240 | $permstring = "c:$webvar{clonesrc}";
|
---|
[87] | 1241 | getPermissions($dbh, 'user', $webvar{clonesrc}, \%newperms);
|
---|
[67] | 1242 | $page->param(perm_clone => 1);
|
---|
| 1243 | } else {
|
---|
| 1244 | $permstring = 'i';
|
---|
| 1245 | }
|
---|
[207] | 1246 | if ($webvar{useraction} eq 'add') {
|
---|
[144] | 1247 | changepage(page => "useradmin", errmsg => "You do not have permission to add new users")
|
---|
| 1248 | unless $permissions{admin} || $permissions{user_create};
|
---|
[181] | 1249 | # no scope check; user is created in the current group
|
---|
[83] | 1250 | ($code,$msg) = addUser($dbh, $webvar{uname}, $curgroup, $webvar{pass1},
|
---|
| 1251 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype}, $permstring,
|
---|
| 1252 | $webvar{fname}, $webvar{lname}, $webvar{phone});
|
---|
[90] | 1253 | logaction(0, $session->param("username"), $curgroup, "Added user $webvar{uname} (uid $msg)")
|
---|
| 1254 | if $code eq 'OK';
|
---|
[83] | 1255 | } else {
|
---|
[144] | 1256 | changepage(page => "useradmin", errmsg => "You do not have permission to edit users")
|
---|
| 1257 | unless $permissions{admin} || $permissions{user_edit};
|
---|
[181] | 1258 | # security check - does the user have permission to access this entity?
|
---|
| 1259 | if (!check_scope(id => $webvar{user}, type => 'user')) {
|
---|
| 1260 | changepage(page => "useradmin", errmsg => "You do not have permission to edit the requested user");
|
---|
| 1261 | }
|
---|
[83] | 1262 | # User update is icky. I'd really like to do this in one atomic
|
---|
| 1263 | # operation, but that would duplicate a **lot** of code in DNSDB.pm
|
---|
| 1264 | # Allowing for changing group, but not coding web support just yet.
|
---|
| 1265 | ($code,$msg) = updateUser($dbh, $webvar{uid}, $webvar{uname}, $webvar{gid}, $webvar{pass1},
|
---|
| 1266 | ($webvar{makeactive} eq 'on' ? 1 : 0), $webvar{accttype},
|
---|
| 1267 | $webvar{fname}, $webvar{lname}, $webvar{phone});
|
---|
| 1268 | if ($code eq 'OK') {
|
---|
[90] | 1269 | $newperms{admin} = 1 if $webvar{accttype} eq 'S';
|
---|
[87] | 1270 | ($code,$msg) = changePermissions($dbh, 'user', $webvar{uid}, \%newperms, ($permstring eq 'i'));
|
---|
[187] | 1271 | logaction(0, $session->param("username"), $curgroup,
|
---|
| 1272 | "Updated uid $webvar{uid}, user $webvar{uname} ($webvar{fname} $webvar{lname})");
|
---|
[83] | 1273 | }
|
---|
| 1274 | }
|
---|
[67] | 1275 | }
|
---|
| 1276 |
|
---|
| 1277 | if ($code eq 'OK') {
|
---|
[83] | 1278 |
|
---|
[67] | 1279 | if ($alterperms) {
|
---|
| 1280 | changepage(page => "useradmin", warnmsg =>
|
---|
[83] | 1281 | "You can only grant permissions you hold. $webvar{uname} ".
|
---|
[207] | 1282 | ($webvar{useraction} eq 'add' ? 'added' : 'updated')." with reduced access.");
|
---|
[67] | 1283 | } else {
|
---|
[144] | 1284 | changepage(page => "useradmin", resultmsg => "Successfully ".
|
---|
[207] | 1285 | ($webvar{useraction} eq 'add' ? 'added' : 'updated')." user $webvar{uname}");
|
---|
[67] | 1286 | }
|
---|
[83] | 1287 |
|
---|
| 1288 | # add/update failed:
|
---|
[67] | 1289 | } else {
|
---|
| 1290 | $page->param(add_failed => 1);
|
---|
[207] | 1291 | $page->param(action => $webvar{useraction});
|
---|
[83] | 1292 | $page->param(set_permgroup => 1);
|
---|
[87] | 1293 | if ($webvar{perms_type} eq 'inherit') { # set permission class radio
|
---|
| 1294 | $page->param(perm_inherit => 1);
|
---|
| 1295 | } elsif ($webvar{perms_type} eq 'clone') {
|
---|
| 1296 | $page->param(perm_clone => 1);
|
---|
| 1297 | } else {
|
---|
| 1298 | $page->param(perm_custom => 1);
|
---|
| 1299 | }
|
---|
[67] | 1300 | $page->param(uname => $webvar{uname});
|
---|
| 1301 | $page->param(fname => $webvar{fname});
|
---|
| 1302 | $page->param(lname => $webvar{lname});
|
---|
| 1303 | $page->param(pass1 => $webvar{pass1});
|
---|
| 1304 | $page->param(pass2 => $webvar{pass2});
|
---|
| 1305 | $page->param(errmsg => $msg);
|
---|
[83] | 1306 | fill_permissions($page, \%newperms);
|
---|
| 1307 | fill_actypelist($webvar{accttype});
|
---|
[67] | 1308 | fill_clonemelist();
|
---|
[207] | 1309 | logaction(0, $session->param("username"), $curgroup, "Failed to $webvar{useraction} user ".
|
---|
[195] | 1310 | "$webvar{uname}: $msg")
|
---|
| 1311 | if $config{log_failures};
|
---|
[67] | 1312 | }
|
---|
| 1313 |
|
---|
[207] | 1314 | } elsif ($webvar{useraction} eq 'edit') {
|
---|
[83] | 1315 |
|
---|
[144] | 1316 | changepage(page => "useradmin", errmsg => "You do not have permission to edit users")
|
---|
| 1317 | unless $permissions{admin} || $permissions{user_edit};
|
---|
| 1318 |
|
---|
[181] | 1319 | # security check - does the user have permission to access this entity?
|
---|
| 1320 | if (!check_scope(id => $webvar{user}, type => 'user')) {
|
---|
| 1321 | changepage(page => "useradmin", errmsg => "You do not have permission to edit the requested user");
|
---|
| 1322 | }
|
---|
| 1323 |
|
---|
[83] | 1324 | $page->param(set_permgroup => 1);
|
---|
| 1325 | $page->param(action => 'update');
|
---|
| 1326 | $page->param(uid => $webvar{user});
|
---|
| 1327 | fill_clonemelist();
|
---|
| 1328 |
|
---|
| 1329 | my $userinfo = getUserData($dbh,$webvar{user});
|
---|
| 1330 | fill_actypelist($userinfo->{type});
|
---|
| 1331 | # not using this yet, but adding it now means we can *much* more easily do so later.
|
---|
| 1332 | $page->param(gid => $webvar{group_id});
|
---|
| 1333 |
|
---|
| 1334 | my %curperms;
|
---|
| 1335 | getPermissions($dbh, 'user', $webvar{user}, \%curperms);
|
---|
| 1336 | fill_permissions($page, \%curperms);
|
---|
| 1337 |
|
---|
| 1338 | $page->param(uname => $userinfo->{username});
|
---|
| 1339 | $page->param(fname => $userinfo->{firstname});
|
---|
| 1340 | $page->param(lname => $userinfo->{lastname});
|
---|
[87] | 1341 | $page->param(set_permgroup => 1);
|
---|
[83] | 1342 | if ($userinfo->{inherit_perm}) {
|
---|
| 1343 | $page->param(perm_inherit => 1);
|
---|
| 1344 | } else {
|
---|
| 1345 | $page->param(perm_custom => 1);
|
---|
| 1346 | }
|
---|
[67] | 1347 | } else {
|
---|
[144] | 1348 | changepage(page => "useradmin", errmsg => "You are not allowed to add new users")
|
---|
| 1349 | unless $permissions{admin} || $permissions{user_create};
|
---|
[67] | 1350 | # default is "new"
|
---|
[83] | 1351 | $page->param(add => 1);
|
---|
| 1352 | $page->param(action => 'add');
|
---|
| 1353 | fill_permissions($page, \%grpperms);
|
---|
| 1354 | fill_actypelist();
|
---|
[67] | 1355 | }
|
---|
| 1356 |
|
---|
[90] | 1357 | } elsif ($webvar{page} eq 'deluser') {
|
---|
| 1358 |
|
---|
[145] | 1359 | changepage(page=> "useradmin", errmsg => "You are not allowed to delete users")
|
---|
| 1360 | unless $permissions{admin} || $permissions{user_delete};
|
---|
| 1361 |
|
---|
[181] | 1362 | # security check - does the user have permission to access this entity?
|
---|
| 1363 | if (!check_scope(id => $webvar{id}, type => 'user')) {
|
---|
| 1364 | changepage(page => "useradmin", errmsg => "You are not permitted to delete the requested user");
|
---|
| 1365 | }
|
---|
| 1366 |
|
---|
[90] | 1367 | $page->param(id => $webvar{id});
|
---|
| 1368 | # first pass = confirm y/n (sorta)
|
---|
| 1369 | if (!defined($webvar{del})) {
|
---|
| 1370 | $page->param(del_getconf => 1);
|
---|
| 1371 | $page->param(user => userFullName($dbh,$webvar{id}));
|
---|
| 1372 | } elsif ($webvar{del} eq 'ok') {
|
---|
| 1373 | ##fixme: find group id user is in (for logging) *before* we delete the user
|
---|
| 1374 | ##fixme: get other user data too for log
|
---|
[93] | 1375 | my $userref = getUserData($dbh, $webvar{id});
|
---|
[90] | 1376 | my ($code,$msg) = delUser($dbh, $webvar{id});
|
---|
[187] | 1377 | if ($code eq 'OK') {
|
---|
[90] | 1378 | # success. go back to the user list, do not pass "GO"
|
---|
[93] | 1379 | # actions on users have a domain id of 0, always
|
---|
| 1380 | logaction(0, $session->param("username"), $curgroup, "Deleted user $webvar{id}/".$userref->{username}.
|
---|
| 1381 | " (".$userref->{lastname}.", ".$userref->{firstname}.")");
|
---|
[145] | 1382 | changepage(page => "useradmin", resultmsg => "Deleted user ".$userref->{username}.
|
---|
| 1383 | " (".$userref->{lastname}.", ".$userref->{firstname}.")");
|
---|
[187] | 1384 | } else {
|
---|
| 1385 | # need to find failure mode
|
---|
| 1386 | $page->param(del_failed => 1);
|
---|
| 1387 | $page->param(errmsg => $msg);
|
---|
| 1388 | list_users($curgroup);
|
---|
| 1389 | logaction(0, $session->param("username"), $curgroup, "Failed to delete user ".
|
---|
[195] | 1390 | "$webvar{id}/".$userref->{username}.": $msg")
|
---|
| 1391 | if $config{log_failures};
|
---|
[90] | 1392 | }
|
---|
| 1393 | } else {
|
---|
| 1394 | # cancelled. whee!
|
---|
| 1395 | changepage(page => "useradmin");
|
---|
| 1396 | }
|
---|
| 1397 |
|
---|
[30] | 1398 | } elsif ($webvar{page} eq 'dnsq') {
|
---|
| 1399 |
|
---|
| 1400 | $page->param(qfor => $webvar{qfor}) if $webvar{qfor};
|
---|
[225] | 1401 | $page->param(typelist => getTypelist($dbh, 'l', ($webvar{type} ? $webvar{type} : undef)));
|
---|
[31] | 1402 | $page->param(nrecurse => $webvar{nrecurse}) if $webvar{nrecurse};
|
---|
[30] | 1403 | $page->param(resolver => $webvar{resolver}) if $webvar{resolver};
|
---|
| 1404 |
|
---|
| 1405 | if ($webvar{qfor}) {
|
---|
| 1406 | my $resolv = Net::DNS::Resolver->new;
|
---|
[31] | 1407 | $resolv->tcp_timeout(5); # make me adjustable!
|
---|
| 1408 | $resolv->udp_timeout(5); # make me adjustable!
|
---|
| 1409 | $resolv->recurse(0) if $webvar{nrecurse};
|
---|
| 1410 | $resolv->nameservers($webvar{resolver}) if $webvar{resolver};
|
---|
[30] | 1411 | my $query = $resolv->query($webvar{qfor}, $typemap{$webvar{type}});
|
---|
| 1412 | if ($query) {
|
---|
| 1413 |
|
---|
| 1414 | $page->param(showresults => 1);
|
---|
| 1415 |
|
---|
| 1416 | my @answer;
|
---|
| 1417 | foreach my $rr ($query->answer) {
|
---|
| 1418 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 1419 | my %row;
|
---|
| 1420 | my ($host,$ttl,$class,$type,$data) =
|
---|
[31] | 1421 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/s);
|
---|
[30] | 1422 | $row{host} = $host;
|
---|
| 1423 | $row{ftype} = $type;
|
---|
[31] | 1424 | $row{rdata} = ($type eq 'SOA' ? "<pre>$data</pre>" : $data);
|
---|
[30] | 1425 | push @answer, \%row;
|
---|
| 1426 | }
|
---|
| 1427 | $page->param(answer => \@answer);
|
---|
| 1428 |
|
---|
| 1429 | my @additional;
|
---|
| 1430 | foreach my $rr ($query->additional) {
|
---|
| 1431 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 1432 | my %row;
|
---|
| 1433 | my ($host,$ttl,$class,$type,$data) =
|
---|
| 1434 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/);
|
---|
| 1435 | $row{host} = $host;
|
---|
| 1436 | $row{ftype} = $type;
|
---|
| 1437 | $row{rdata} = $data;
|
---|
| 1438 | push @additional, \%row;
|
---|
| 1439 | }
|
---|
| 1440 | $page->param(additional => \@additional);
|
---|
| 1441 |
|
---|
| 1442 | my @authority;
|
---|
| 1443 | foreach my $rr ($query->authority) {
|
---|
| 1444 | # next unless $rr->type eq "A" or $rr->type eq 'NS';
|
---|
| 1445 | my %row;
|
---|
| 1446 | my ($host,$ttl,$class,$type,$data) =
|
---|
| 1447 | ($rr->string =~ /^([0-9a-zA-Z_.-]+)\s+(\d+)\s+([A-Za-z]+)\s+([A-Za-z]+)\s+(.+)$/);
|
---|
| 1448 | $row{host} = $host;
|
---|
| 1449 | $row{ftype} = $type;
|
---|
| 1450 | $row{rdata} = $data;
|
---|
| 1451 | push @authority, \%row;
|
---|
| 1452 | }
|
---|
| 1453 | $page->param(authority => \@authority);
|
---|
| 1454 |
|
---|
| 1455 | $page->param(usedresolver => $resolv->answerfrom);
|
---|
| 1456 | $page->param(frtype => $typemap{$webvar{type}});
|
---|
| 1457 |
|
---|
| 1458 | } else {
|
---|
| 1459 | $page->param(errmsg => $resolv->errorstring);
|
---|
| 1460 | }
|
---|
| 1461 | }
|
---|
| 1462 | ## done DNS query
|
---|
| 1463 |
|
---|
[31] | 1464 | } elsif ($webvar{page} eq 'axfr') {
|
---|
| 1465 |
|
---|
[111] | 1466 | changepage(page => "domlist", errmsg => "You are not permitted to import domains")
|
---|
| 1467 | unless ($permissions{admin} || $permissions{domain_create});
|
---|
| 1468 |
|
---|
[31] | 1469 | # don't need this while we've got the dropdown in the menu. hmm.
|
---|
[126] | 1470 | fill_grouplist("grouplist");
|
---|
[31] | 1471 |
|
---|
| 1472 | $page->param(ifrom => $webvar{ifrom}) if $webvar{ifrom};
|
---|
| 1473 | $page->param(rwsoa => $webvar{rwsoa}) if $webvar{rwsoa};
|
---|
| 1474 | $page->param(rwns => $webvar{rwns}) if $webvar{rwns};
|
---|
[37] | 1475 | $page->param(dominactive => 1) if (!$webvar{domactive} && $webvar{doit}); # eww.
|
---|
[31] | 1476 | $page->param(importdoms => $webvar{importdoms}) if $webvar{importdoms};
|
---|
[33] | 1477 |
|
---|
[91] | 1478 | # shut up warning about uninitialized variable
|
---|
| 1479 | $webvar{doit} = '' if !defined($webvar{doit});
|
---|
| 1480 |
|
---|
[33] | 1481 | if ($webvar{doit} eq 'y' && !$webvar{ifrom}) {
|
---|
| 1482 | $page->param(errmsg => "Need to set host to import from");
|
---|
| 1483 | } elsif ($webvar{doit} eq 'y' && !$webvar{importdoms}) {
|
---|
| 1484 | $page->param(errmsg => "Need domains to import");
|
---|
[91] | 1485 | } elsif ($webvar{doit} eq 'y') {
|
---|
[162] | 1486 |
|
---|
| 1487 | # security check - does the user have permission to access this entity?
|
---|
[169] | 1488 | if (!check_scope(id => $webvar{group}, type => 'group')) {
|
---|
[162] | 1489 | $page->param(errmsg => "You are not permitted to import domains into the requested group");
|
---|
| 1490 | goto DONEAXFR;
|
---|
| 1491 | }
|
---|
| 1492 |
|
---|
[33] | 1493 | my @domlist = split /\s+/, $webvar{importdoms};
|
---|
| 1494 | my @results;
|
---|
| 1495 | foreach my $domain (@domlist) {
|
---|
[34] | 1496 | my %row;
|
---|
| 1497 | my ($code,$msg) = importAXFR($dbh, $webvar{ifrom}, $domain, $webvar{group},
|
---|
| 1498 | $webvar{domstatus}, $webvar{rwsoa}, $webvar{rwns});
|
---|
[35] | 1499 | $row{domok} = $msg if $code eq 'OK';
|
---|
| 1500 | if ($code eq 'WARN') {
|
---|
| 1501 | $msg =~ s|\n|<br />|g;
|
---|
| 1502 | $row{domwarn} = $msg;
|
---|
| 1503 | }
|
---|
[37] | 1504 | if ($code eq 'FAIL') {
|
---|
[91] | 1505 | $msg =~ s|\n|<br />\n|g;
|
---|
[37] | 1506 | $row{domerr} = $msg;
|
---|
| 1507 | }
|
---|
[91] | 1508 | $msg = "<br />\n".$msg if $msg =~ m|<br />|;
|
---|
| 1509 | logaction(domainID($dbh, $domain), $session->param("username"), $webvar{group},
|
---|
| 1510 | "AXFR import $domain from $webvar{ifrom} ($code): $msg");
|
---|
[33] | 1511 | $row{domain} = $domain;
|
---|
| 1512 | push @results, \%row;
|
---|
| 1513 | }
|
---|
| 1514 | $page->param(axfrresults => \@results);
|
---|
| 1515 | }
|
---|
| 1516 |
|
---|
[155] | 1517 | # Yes, this is a GOTO target. PTBHTTT.
|
---|
| 1518 | DONEAXFR: ;
|
---|
| 1519 |
|
---|
[48] | 1520 | } elsif ($webvar{page} eq 'whoisq') {
|
---|
[47] | 1521 |
|
---|
[48] | 1522 | if ($webvar{qfor}) {
|
---|
| 1523 | use Net::Whois::Raw;
|
---|
| 1524 | use Text::Wrap;
|
---|
| 1525 |
|
---|
| 1526 | # caching useful?
|
---|
| 1527 | #$Net::Whois::Raw::CACHE_DIR = "/var/spool/pwhois/";
|
---|
| 1528 | #$Net::Whois::Raw::CACHE_TIME = 60;
|
---|
| 1529 |
|
---|
| 1530 | my ($dominfo, $whois_server) = whois($webvar{qfor});
|
---|
| 1531 | ##fixme: if we're given an IP, try rwhois as well as whois so we get the real final data
|
---|
| 1532 |
|
---|
| 1533 | # le sigh. idjits spit out data without linefeeds...
|
---|
| 1534 | $Text::Wrap::columns = 88;
|
---|
| 1535 |
|
---|
[93] | 1536 | # &%$@%@# high-bit crap. We should probably find a way to properly recode these
|
---|
| 1537 | # instead of one-by-one. Note CGI::Simple's escapeHTML() doesn't do more than
|
---|
| 1538 | # the bare minimum. :/
|
---|
[48] | 1539 | # Mainly an XHTML validation thing.
|
---|
[93] | 1540 | $dominfo = $q->escapeHTML($dominfo);
|
---|
[48] | 1541 | $dominfo =~ s/\xa9/\©/g;
|
---|
| 1542 | $dominfo =~ s/\xae/\®/g;
|
---|
| 1543 |
|
---|
| 1544 | $page->param(qfor => $webvar{qfor});
|
---|
| 1545 | $page->param(dominfo => wrap('','',$dominfo));
|
---|
| 1546 | $page->param(whois_server => $whois_server);
|
---|
| 1547 | } else {
|
---|
| 1548 | $page->param(errmsg => "Missing host or domain to query in WHOIS") if $webvar{askaway};
|
---|
| 1549 | }
|
---|
| 1550 |
|
---|
[47] | 1551 | } elsif ($webvar{page} eq 'log') {
|
---|
| 1552 |
|
---|
| 1553 | ##fixme put in some real log-munching stuff
|
---|
[59] | 1554 | my $sql = "SELECT user_id, email, name, entry, date_trunc('second',stamp) FROM log WHERE ";
|
---|
[60] | 1555 | my $id = $curgroup; # we do this because the group log may be called from (almost) any page,
|
---|
| 1556 | # but the others are much more limited. this is probably non-optimal.
|
---|
[180] | 1557 |
|
---|
[61] | 1558 | if ($webvar{ltype} && $webvar{ltype} eq 'user') {
|
---|
[60] | 1559 | $sql .= "user_id=?";
|
---|
| 1560 | $id = $webvar{id};
|
---|
[180] | 1561 | if (!check_scope(id => $id, type => 'user')) {
|
---|
| 1562 | $page->param(errmsg => "You are not permitted to view log entries for the requested user");
|
---|
| 1563 | goto DONELOG;
|
---|
| 1564 | }
|
---|
[60] | 1565 | $page->param(logfor => 'user '.userFullName($dbh,$id));
|
---|
| 1566 | } elsif ($webvar{ltype} && $webvar{ltype} eq 'dom') {
|
---|
[59] | 1567 | $sql .= "domain_id=?";
|
---|
| 1568 | $id = $webvar{id};
|
---|
[180] | 1569 | if (!check_scope(id => $id, type => 'domain')) {
|
---|
| 1570 | $page->param(errmsg => "You are not permitted to view log entries for the requested domain");
|
---|
| 1571 | goto DONELOG;
|
---|
| 1572 | }
|
---|
[60] | 1573 | $page->param(logfor => 'domain '.domainName($dbh,$id));
|
---|
[59] | 1574 | } else {
|
---|
| 1575 | # Default to listing curgroup log
|
---|
| 1576 | $sql .= "group_id=?";
|
---|
[60] | 1577 | $page->param(logfor => 'group '.groupName($dbh,$id));
|
---|
[180] | 1578 | # note that scope limitations are applied via the change-group check;
|
---|
| 1579 | # group log is always for the "current" group
|
---|
[59] | 1580 | }
|
---|
| 1581 | my $sth = $dbh->prepare($sql);
|
---|
| 1582 | $sth->execute($id);
|
---|
[47] | 1583 | my @logbits;
|
---|
[59] | 1584 | while (my ($uid, $email, $name, $entry, $stamp) = $sth->fetchrow_array) {
|
---|
[47] | 1585 | my %row;
|
---|
[59] | 1586 | $row{userfname} = $name;
|
---|
| 1587 | $row{userid} = $uid;
|
---|
| 1588 | $row{useremail} = $email;
|
---|
| 1589 | $row{logentry} = $entry;
|
---|
| 1590 | ($row{logtime}) = ($stamp =~ /^(.+)-\d\d$/);
|
---|
[47] | 1591 | push @logbits, \%row;
|
---|
| 1592 | }
|
---|
| 1593 | $page->param(logentries => \@logbits);
|
---|
| 1594 |
|
---|
[180] | 1595 | # scope check fail target
|
---|
| 1596 | DONELOG: ;
|
---|
| 1597 |
|
---|
[60] | 1598 | } # end $webvar{page} dance
|
---|
[2] | 1599 |
|
---|
| 1600 |
|
---|
[17] | 1601 | # start output here so we can redirect pages.
|
---|
[7] | 1602 | print "Content-type: text/html\n\n", $header->output;
|
---|
| 1603 |
|
---|
[20] | 1604 | ##common bits
|
---|
[173] | 1605 | if ($webvar{page} ne 'login' && $webvar{page} ne 'badpage') {
|
---|
[30] | 1606 | $page->param(username => $session->param("username"));
|
---|
| 1607 |
|
---|
[20] | 1608 | $page->param(group => $curgroup);
|
---|
| 1609 | $page->param(groupname => groupName($dbh,$curgroup));
|
---|
[43] | 1610 | $page->param(logingrp => groupName($dbh,$logingroup));
|
---|
[117] | 1611 | $page->param(logingrp_num => $logingroup);
|
---|
[20] | 1612 |
|
---|
[224] | 1613 | ##fixme
|
---|
| 1614 | $page->param(mayrdns => 1);
|
---|
| 1615 |
|
---|
[140] | 1616 | $page->param(maydefrec => $permissions{admin});
|
---|
[111] | 1617 | $page->param(mayimport => $permissions{admin} || $permissions{domain_create});
|
---|
| 1618 | $page->param(maybulk => $permissions{admin} || $permissions{domain_edit} || $permissions{domain_create} || $permissions{domain_delete});
|
---|
| 1619 |
|
---|
[140] | 1620 | $page->param(chggrps => ($permissions{admin} || $permissions{group_create} || $permissions{group_edit} || $permissions{group_delete}));
|
---|
| 1621 |
|
---|
[24] | 1622 | # group tree. should go elsewhere, probably
|
---|
| 1623 | my $tmpgrplist = fill_grptree($logingroup,$curgroup);
|
---|
| 1624 | $page->param(grptree => $tmpgrplist);
|
---|
[65] | 1625 | $page->param(subs => ($tmpgrplist ? 1 : 0)); # probably not useful to pass gobs of data in for a boolean
|
---|
[42] | 1626 | $page->param(inlogingrp => $curgroup == $logingroup);
|
---|
| 1627 |
|
---|
[53] | 1628 | # fill in the URL-to-self
|
---|
[117] | 1629 | $page->param(whereami => $uri_self);
|
---|
[17] | 1630 | }
|
---|
[13] | 1631 |
|
---|
[166] | 1632 | if (@debugbits) {
|
---|
| 1633 | print "<pre>\n";
|
---|
| 1634 | foreach (@debugbits) { print; }
|
---|
| 1635 | print "</pre>\n";
|
---|
| 1636 | }
|
---|
[24] | 1637 |
|
---|
[2] | 1638 | # spit it out
|
---|
| 1639 | print $page->output;
|
---|
| 1640 |
|
---|
[38] | 1641 | if ($debugenv) {
|
---|
| 1642 | print "<div id=\"debug\">webvar keys: <pre>\n";
|
---|
| 1643 | foreach my $key (keys %webvar) {
|
---|
| 1644 | print "key: $key\tval: $webvar{$key}\n";
|
---|
| 1645 | }
|
---|
| 1646 | print "</pre>\nsession:\n<pre>\n";
|
---|
| 1647 | my $sesdata = $session->dataref();
|
---|
| 1648 | foreach my $key (keys %$sesdata) {
|
---|
| 1649 | print "key: $key\tval: ".$sesdata->{$key}."\n";
|
---|
| 1650 | }
|
---|
| 1651 | print "</pre>\nENV:\n<pre>\n";
|
---|
| 1652 | foreach my $key (keys %ENV) {
|
---|
| 1653 | print "key: $key\tval: $ENV{$key}\n";
|
---|
| 1654 | }
|
---|
| 1655 | print "</pre></div>\n";
|
---|
[2] | 1656 | }
|
---|
| 1657 |
|
---|
| 1658 | print $footer->output;
|
---|
| 1659 |
|
---|
[18] | 1660 | # as per the docs, Just In Case
|
---|
| 1661 | $session->flush();
|
---|
[2] | 1662 |
|
---|
| 1663 | exit 0;
|
---|
| 1664 |
|
---|
| 1665 |
|
---|
[24] | 1666 | sub fill_grptree {
|
---|
| 1667 | my $root = shift;
|
---|
| 1668 | my $cur = shift;
|
---|
[69] | 1669 | my $indent = shift || ' ';
|
---|
[24] | 1670 |
|
---|
| 1671 | my @childlist;
|
---|
| 1672 |
|
---|
| 1673 | my $grptree = HTML::Template->new(filename => 'templates/grptree.tmpl');
|
---|
| 1674 | getChildren($dbh,$root,\@childlist,'immediate');
|
---|
| 1675 | return if $#childlist == -1;
|
---|
| 1676 | my @grouplist;
|
---|
| 1677 | foreach (@childlist) {
|
---|
| 1678 | my %row;
|
---|
| 1679 | $row{grpname} = groupName($dbh,$_);
|
---|
[117] | 1680 | $row{grpnum} = $_;
|
---|
| 1681 | $row{whereami} = $uri_self;
|
---|
[185] | 1682 | $row{curgrp} = ($_ == $cur);
|
---|
| 1683 | $row{expanded} = isParent($dbh, $_, 'group', $cur, 'group');
|
---|
| 1684 | $row{expanded} = 1 if $_ == $cur;
|
---|
[69] | 1685 | $row{subs} = fill_grptree($_,$cur,$indent.' ');
|
---|
| 1686 | $row{indent} = $indent;
|
---|
[24] | 1687 | push @grouplist, \%row;
|
---|
| 1688 | }
|
---|
[69] | 1689 | $grptree->param(indent => $indent);
|
---|
[24] | 1690 | $grptree->param(treelvl => \@grouplist);
|
---|
| 1691 | return $grptree->output;
|
---|
| 1692 | }
|
---|
| 1693 |
|
---|
[11] | 1694 | sub changepage {
|
---|
| 1695 | my %params = @_; # think this works the way I want...
|
---|
| 1696 |
|
---|
[174] | 1697 | # cross-site scripting fixup. instead of passing error messages by URL/form
|
---|
| 1698 | # variable, put them in the session where the nasty user can't meddle.
|
---|
[177] | 1699 | # these are done here since it's far simpler to pass them in from wherever
|
---|
| 1700 | # than set them locally everywhere.
|
---|
| 1701 | foreach my $sessme ('resultmsg','warnmsg','errmsg') {
|
---|
| 1702 | if ($params{$sessme}) {
|
---|
| 1703 | $session->param($sessme, $params{$sessme});
|
---|
| 1704 | delete $params{$sessme};
|
---|
| 1705 | }
|
---|
[174] | 1706 | }
|
---|
| 1707 |
|
---|
[11] | 1708 | # handle user check
|
---|
| 1709 | my $newurl = "http://$ENV{HTTP_HOST}$ENV{SCRIPT_NAME}?sid=$sid";
|
---|
| 1710 | foreach (keys %params) {
|
---|
[92] | 1711 | $newurl .= "&$_=".$q->url_encode($params{$_});
|
---|
[11] | 1712 | }
|
---|
| 1713 |
|
---|
[30] | 1714 | # Just In Case
|
---|
| 1715 | $session->flush();
|
---|
| 1716 |
|
---|
[11] | 1717 | print "Status: 302\nLocation: $newurl\n\n";
|
---|
| 1718 | exit;
|
---|
| 1719 | } # end changepage
|
---|
| 1720 |
|
---|
[2] | 1721 | sub fillsoa {
|
---|
| 1722 | my $def = shift;
|
---|
| 1723 | my $id = shift;
|
---|
[39] | 1724 | my $domname = ($def eq 'y' ? '' : "DOMAIN");
|
---|
[2] | 1725 |
|
---|
[39] | 1726 | $page->param(defrec => $def);
|
---|
[2] | 1727 |
|
---|
[39] | 1728 | # i had a good reason to do this when I wrote it...
|
---|
| 1729 | # $page->param(domain => $domname);
|
---|
| 1730 | # $page->param(group => $DNSDB::group);
|
---|
| 1731 | $page->param(isgrp => 1) if $def eq 'y';
|
---|
| 1732 | $page->param(parent => ($def eq 'y' ? groupName($dbh, $DNSDB::group) : domainName($dbh, $id)) );
|
---|
[2] | 1733 |
|
---|
| 1734 | # defaults
|
---|
[17] | 1735 | $page->param(defcontact => $DNSDB::def{contact});
|
---|
| 1736 | $page->param(defns => $DNSDB::def{prins});
|
---|
| 1737 | $page->param(defsoattl => $DNSDB::def{soattl});
|
---|
| 1738 | $page->param(defrefresh => $DNSDB::def{refresh});
|
---|
| 1739 | $page->param(defretry => $DNSDB::def{retry});
|
---|
| 1740 | $page->param(defexpire => $DNSDB::def{expire});
|
---|
| 1741 | $page->param(defminttl => $DNSDB::def{minttl});
|
---|
[2] | 1742 |
|
---|
| 1743 | # there are probably better ways to do this. TMTOWTDI.
|
---|
| 1744 | my %soa = getSOA($dbh,$def,$id);
|
---|
| 1745 |
|
---|
[39] | 1746 | $page->param(id => $id);
|
---|
[2] | 1747 | $page->param(recid => $soa{recid});
|
---|
| 1748 | $page->param(prins => ($soa{prins} ? $soa{prins} : $DNSDB::def{prins}));
|
---|
| 1749 | $page->param(contact => ($soa{contact} ? $soa{contact} : $DNSDB::def{contact}));
|
---|
| 1750 | $page->param(refresh => ($soa{refresh} ? $soa{refresh} : $DNSDB::def{refresh}));
|
---|
| 1751 | $page->param(retry => ($soa{retry} ? $soa{retry} : $DNSDB::def{retry}));
|
---|
| 1752 | $page->param(expire => ($soa{expire} ? $soa{expire} : $DNSDB::def{expire}));
|
---|
| 1753 | $page->param(minttl => ($soa{minttl} ? $soa{minttl} : $DNSDB::def{minttl}));
|
---|
| 1754 | $page->param(ttl => ($soa{ttl} ? $soa{ttl} : $DNSDB::def{soattl}));
|
---|
| 1755 | }
|
---|
| 1756 |
|
---|
[224] | 1757 | sub showzone {
|
---|
[2] | 1758 | my $def = shift;
|
---|
[224] | 1759 | my $rev = shift;
|
---|
[2] | 1760 | my $id = shift;
|
---|
| 1761 |
|
---|
| 1762 | # get the SOA first
|
---|
[224] | 1763 | my %soa = getSOA($dbh,$def,$rev,$id);
|
---|
[2] | 1764 |
|
---|
| 1765 | $page->param(contact => $soa{contact});
|
---|
| 1766 | $page->param(prins => $soa{prins});
|
---|
| 1767 | $page->param(refresh => $soa{refresh});
|
---|
| 1768 | $page->param(retry => $soa{retry});
|
---|
| 1769 | $page->param(expire => $soa{expire});
|
---|
| 1770 | $page->param(minttl => $soa{minttl});
|
---|
| 1771 | $page->param(ttl => $soa{ttl});
|
---|
| 1772 |
|
---|
[224] | 1773 | my $foo2 = getDomRecs($dbh,$def,$rev,$id,$perpage,$webvar{offset},$sortby,$sortorder,$filter);
|
---|
[2] | 1774 |
|
---|
| 1775 | my $row = 0;
|
---|
| 1776 | foreach my $rec (@$foo2) {
|
---|
| 1777 | $rec->{type} = $typemap{$rec->{type}};
|
---|
| 1778 | $rec->{row} = $row % 2;
|
---|
[62] | 1779 | $rec->{defrec} = $def;
|
---|
[224] | 1780 | $rec->{revrec} = $rev;
|
---|
[2] | 1781 | $rec->{sid} = $webvar{sid};
|
---|
[13] | 1782 | $rec->{id} = $id;
|
---|
[224] | 1783 | $rec->{fwdzone} = $rev eq 'n';
|
---|
[23] | 1784 | $rec->{distance} = 'n/a' unless ($rec->{type} eq 'MX' || $rec->{type} eq 'SRV');
|
---|
| 1785 | $rec->{weight} = 'n/a' unless ($rec->{type} eq 'SRV');
|
---|
| 1786 | $rec->{port} = 'n/a' unless ($rec->{type} eq 'SRV');
|
---|
[2] | 1787 | $row++;
|
---|
[95] | 1788 | # ACLs
|
---|
| 1789 | $rec->{record_edit} = ($permissions{admin} || $permissions{record_edit});
|
---|
| 1790 | $rec->{record_delete} = ($permissions{admin} || $permissions{record_delete});
|
---|
[2] | 1791 | }
|
---|
| 1792 | $page->param(reclist => $foo2);
|
---|
| 1793 | }
|
---|
| 1794 |
|
---|
[16] | 1795 | sub fill_recdata {
|
---|
[225] | 1796 | $page->param(typelist => getTypelist($dbh, $webvar{revrec}, $webvar{type}));
|
---|
[16] | 1797 |
|
---|
[91] | 1798 | # le sigh. we may get called with many empty %webvar keys
|
---|
| 1799 | no warnings qw( uninitialized );
|
---|
| 1800 |
|
---|
[101] | 1801 | ##todo: allow BIND-style bare names, ASS-U-ME that the name is within the domain?
|
---|
| 1802 | # prefill <domain> or DOMAIN in "Host" space for new records
|
---|
| 1803 | my $domroot = ($webvar{defrec} eq 'y' ? 'DOMAIN' : domainName($dbh,$webvar{parentid}));
|
---|
| 1804 | $page->param(name => $domroot);
|
---|
[16] | 1805 | $page->param(address => $webvar{address});
|
---|
| 1806 | $page->param(distance => $webvar{distance})
|
---|
| 1807 | if ($webvar{type} == $reverse_typemap{MX} or $webvar{type} == $reverse_typemap{SRV});
|
---|
| 1808 | $page->param(weight => $webvar{weight}) if $webvar{type} == $reverse_typemap{SRV};
|
---|
| 1809 | $page->param(port => $webvar{port}) if $webvar{type} == $reverse_typemap{SRV};
|
---|
[101] | 1810 | # retrieve the right ttl instead of falling (way) back to the hardcoded system default
|
---|
| 1811 | my %soa = getSOA($dbh,$webvar{defrec},$webvar{parentid});
|
---|
| 1812 | $page->param(ttl => ($webvar{ttl} ? $webvar{ttl} : $soa{minttl}));
|
---|
[2] | 1813 | }
|
---|
[7] | 1814 |
|
---|
[24] | 1815 | sub fill_actypelist {
|
---|
[83] | 1816 | my $curtype = shift || 'u';
|
---|
| 1817 |
|
---|
[24] | 1818 | my @actypes;
|
---|
| 1819 |
|
---|
| 1820 | my %row1 = (actypeval => 'u', actypename => 'user');
|
---|
[83] | 1821 | $row1{typesel} = 1 if $curtype eq 'u';
|
---|
[24] | 1822 | push @actypes, \%row1;
|
---|
| 1823 |
|
---|
| 1824 | my %row2 = (actypeval => 'S', actypename => 'superuser');
|
---|
[83] | 1825 | $row2{typesel} = 1 if $curtype eq 'S';
|
---|
[24] | 1826 | push @actypes, \%row2;
|
---|
| 1827 |
|
---|
[83] | 1828 | $page->param(actypelist => \@actypes);
|
---|
[24] | 1829 | }
|
---|
| 1830 |
|
---|
[65] | 1831 | sub fill_clonemelist {
|
---|
| 1832 | my $sth = $dbh->prepare("SELECT username,user_id FROM users WHERE group_id=$curgroup");
|
---|
| 1833 | $sth->execute;
|
---|
| 1834 |
|
---|
[87] | 1835 | # shut up some warnings, but don't stomp on caller's state
|
---|
| 1836 | local $webvar{clonesrc} = 0 if !defined($webvar{clonesrc});
|
---|
| 1837 |
|
---|
[65] | 1838 | my @clonesrc;
|
---|
| 1839 | while (my ($username,$uid) = $sth->fetchrow_array) {
|
---|
| 1840 | my %row = (
|
---|
| 1841 | username => $username,
|
---|
| 1842 | uid => $uid,
|
---|
| 1843 | selected => ($webvar{clonesrc} == $uid ? 1 : 0)
|
---|
| 1844 | );
|
---|
| 1845 | push @clonesrc, \%row;
|
---|
| 1846 | }
|
---|
| 1847 | $page->param(clonesrc => \@clonesrc);
|
---|
| 1848 | }
|
---|
| 1849 |
|
---|
[7] | 1850 | sub fill_fpnla {
|
---|
| 1851 | my $count = shift;
|
---|
| 1852 | if ($offset eq 'all') {
|
---|
[70] | 1853 | $page->param(perpage => $perpage);
|
---|
[41] | 1854 | # uhm....
|
---|
[7] | 1855 | } else {
|
---|
| 1856 | # all these bits only have sensible behaviour if offset is numeric. err, probably.
|
---|
| 1857 | if ($count > $perpage) {
|
---|
| 1858 | # if there are more results than the default, always show the "all" link
|
---|
| 1859 | $page->param(navall => 1);
|
---|
| 1860 |
|
---|
| 1861 | if ($offset > 0) {
|
---|
| 1862 | $page->param(navfirst => 1);
|
---|
| 1863 | $page->param(navprev => 1);
|
---|
| 1864 | $page->param(prevoffs => $offset-1);
|
---|
| 1865 | }
|
---|
| 1866 |
|
---|
| 1867 | # show "next" and "last" links if we're not on the last page of results
|
---|
| 1868 | if ( (($offset+1) * $perpage - $count) < 0 ) {
|
---|
| 1869 | $page->param(navnext => 1);
|
---|
| 1870 | $page->param(nextoffs => $offset+1);
|
---|
| 1871 | $page->param(navlast => 1);
|
---|
[8] | 1872 | $page->param(lastoffs => int (($count-1)/$perpage));
|
---|
[7] | 1873 | }
|
---|
[87] | 1874 | } else {
|
---|
| 1875 | $page->param(onepage => 1);
|
---|
[7] | 1876 | }
|
---|
| 1877 | }
|
---|
[10] | 1878 | } # end fill_fpnla()
|
---|
| 1879 |
|
---|
[12] | 1880 | sub fill_pgcount {
|
---|
| 1881 | my $pgcount = shift;
|
---|
| 1882 | my $pgtype = shift;
|
---|
| 1883 | my $parent = shift;
|
---|
| 1884 |
|
---|
[98] | 1885 | # Fix display/UI bug where if you are not on the first page of the list, and
|
---|
| 1886 | # you add a search term or click one of the "starts with" links, you end up
|
---|
| 1887 | # on a page showing nothing.
|
---|
| 1888 | # For bonus points, this reverts to the original offset on clicking the "All" link (mostly)
|
---|
[237] | 1889 | if ($offset ne 'all') {
|
---|
[138] | 1890 | $offset-- while ($offset * $perpage) >= $pgcount;
|
---|
| 1891 | }
|
---|
[98] | 1892 |
|
---|
[12] | 1893 | $page->param(ntot => $pgcount);
|
---|
| 1894 | $page->param(nfirst => (($offset eq 'all' ? 0 : $offset)*$perpage+1));
|
---|
| 1895 | $page->param(npglast => ($offset eq 'all' ? $pgcount :
|
---|
| 1896 | ( (($offset+1)*$perpage) > $pgcount ? $pgcount : (($offset+1)*$perpage) )
|
---|
| 1897 | ));
|
---|
| 1898 | $page->param(pgtype => $pgtype);
|
---|
| 1899 | $page->param(parent => $parent);
|
---|
[137] | 1900 | $page->param(filter => $filter);
|
---|
[12] | 1901 | } # end fill_pgcount()
|
---|
| 1902 |
|
---|
[41] | 1903 |
|
---|
[237] | 1904 | sub listdomains { listzones(); } # temp
|
---|
| 1905 |
|
---|
| 1906 | sub listzones {
|
---|
[95] | 1907 | # ACLs
|
---|
| 1908 | $page->param(domain_create => ($permissions{admin} || $permissions{domain_create}) );
|
---|
| 1909 | $page->param(domain_edit => ($permissions{admin} || $permissions{domain_edit}) );
|
---|
| 1910 | $page->param(domain_delete => ($permissions{admin} || $permissions{domain_delete}) );
|
---|
| 1911 |
|
---|
[52] | 1912 | my @childgroups;
|
---|
[61] | 1913 | getChildren($dbh, $curgroup, \@childgroups, 'all') if $searchsubs;
|
---|
[52] | 1914 | my $childlist = join(',',@childgroups);
|
---|
| 1915 |
|
---|
[237] | 1916 | my $count = getZoneCount($dbh, (childlist => $childlist, curgroup => $curgroup, revrec => $webvar{revrec},
|
---|
| 1917 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef) ) );
|
---|
[17] | 1918 |
|
---|
[12] | 1919 | # fill page count and first-previous-next-last-all bits
|
---|
[237] | 1920 | fill_pgcount($count,($webvar{revrec} eq 'n' ? 'domains' : 'revzones'),groupName($dbh,$curgroup));
|
---|
[10] | 1921 | fill_fpnla($count);
|
---|
| 1922 |
|
---|
[41] | 1923 | # sort/order
|
---|
[51] | 1924 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1925 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[41] | 1926 |
|
---|
[120] | 1927 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby');
|
---|
| 1928 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order');
|
---|
[51] | 1929 |
|
---|
[44] | 1930 | # set up the headers
|
---|
[237] | 1931 | my @cols = (($webvar{revrec} eq 'n' ? 'domain' : 'revnet'), 'status', 'group');
|
---|
| 1932 | my %colheads = (domain => 'Domain', revnet => 'Reverse Zone', status => 'Status', group => 'Group');
|
---|
[54] | 1933 | fill_colheads($sortby, $sortorder, \@cols, \%colheads);
|
---|
[41] | 1934 |
|
---|
| 1935 | # hack! hack! pthbttt. have to rethink the status column storage,
|
---|
| 1936 | # or inactive comes "before" active. *sigh*
|
---|
| 1937 | $sortorder = ($sortorder eq 'ASC' ? 'DESC' : 'ASC') if $sortby eq 'status';
|
---|
| 1938 |
|
---|
[51] | 1939 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[237] | 1940 | ##fixme: put this higher so the count doesn't get munched?
|
---|
[53] | 1941 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/;
|
---|
[41] | 1942 |
|
---|
[53] | 1943 | $page->param(filter => $filter) if $filter;
|
---|
| 1944 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[41] | 1945 |
|
---|
[237] | 1946 | $page->param(group => $curgroup);
|
---|
[41] | 1947 |
|
---|
[237] | 1948 | my $zonelist = getZoneList($dbh, (childlist => $childlist, curgroup => $curgroup,
|
---|
| 1949 | revrec => $webvar{revrec},
|
---|
| 1950 | filter => ($filter ? $filter : undef), startwith => ($startwith ? $startwith : undef),
|
---|
| 1951 | offset => $webvar{offset}, sortby => $sortby, sortorder => $sortorder
|
---|
| 1952 | ) );
|
---|
| 1953 | foreach (@$zonelist) {
|
---|
| 1954 | $_->{sid} = $sid;
|
---|
| 1955 | $_->{domain_edit} = ($permissions{admin} || $permissions{domain_edit});
|
---|
| 1956 | $_->{domain_delete} = ($permissions{admin} || $permissions{domain_delete});
|
---|
[10] | 1957 | }
|
---|
[237] | 1958 | $page->param(domtable => $zonelist);
|
---|
[11] | 1959 | } # end listdomains()
|
---|
[18] | 1960 |
|
---|
[87] | 1961 |
|
---|
[22] | 1962 | sub listgroups {
|
---|
[53] | 1963 |
|
---|
[153] | 1964 | # security check - does the user have permission to view this entity?
|
---|
| 1965 | if (!(grep /^$curgroup$/, @viewablegroups)) {
|
---|
| 1966 | # hmm. Reset the current group to the login group? Yes. Prevents confusing behaviour elsewhere.
|
---|
| 1967 | $session->param('curgroup',$logingroup);
|
---|
| 1968 | $page->param(errmsg => "You are not permitted to view the requested group");
|
---|
| 1969 | $curgroup = $logingroup;
|
---|
| 1970 | }
|
---|
| 1971 |
|
---|
[26] | 1972 | my @childgroups;
|
---|
[140] | 1973 | getChildren($dbh, $curgroup, \@childgroups, 'all') if $searchsubs;
|
---|
[26] | 1974 | my $childlist = join(',',@childgroups);
|
---|
| 1975 |
|
---|
[140] | 1976 | my $sql = "SELECT count(*) FROM groups WHERE parent_group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[160] | 1977 | ($startwith ? " AND group_name ~* ?" : '').
|
---|
| 1978 | ($filter ? " AND group_name ~* ?" : '');
|
---|
[26] | 1979 | my $sth = $dbh->prepare($sql);
|
---|
[160] | 1980 | $sth->execute(@filterargs);
|
---|
| 1981 | my ($count) = ($sth->fetchrow_array);
|
---|
[26] | 1982 |
|
---|
[22] | 1983 | # fill page count and first-previous-next-last-all bits
|
---|
| 1984 | fill_pgcount($count,"groups",'');
|
---|
| 1985 | fill_fpnla($count);
|
---|
| 1986 |
|
---|
[80] | 1987 | $page->param(gid => $curgroup);
|
---|
| 1988 |
|
---|
[124] | 1989 | $sortby = 'group';
|
---|
[42] | 1990 | # sort/order
|
---|
[51] | 1991 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 1992 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[42] | 1993 |
|
---|
[120] | 1994 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby');
|
---|
| 1995 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order');
|
---|
[51] | 1996 |
|
---|
[44] | 1997 | # set up the headers
|
---|
| 1998 | my @cols = ('group','parent','nusers','ndomains');
|
---|
| 1999 | my %colnames = (group => 'Group', parent => 'Parent Group', nusers => 'Users', ndomains => 'Domains');
|
---|
[54] | 2000 | fill_colheads($sortby, $sortorder, \@cols, \%colnames);
|
---|
[42] | 2001 |
|
---|
[51] | 2002 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[64] | 2003 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/;
|
---|
[51] | 2004 |
|
---|
[53] | 2005 | $page->param(filter => $filter) if $filter;
|
---|
| 2006 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[51] | 2007 |
|
---|
| 2008 | # munge sortby for columns in database
|
---|
| 2009 | $sortby = 'g.group_name' if $sortby eq 'group';
|
---|
| 2010 | $sortby = 'g2.group_name' if $sortby eq 'parent';
|
---|
| 2011 |
|
---|
[22] | 2012 | my @grouplist;
|
---|
[160] | 2013 | $sql = "SELECT g.group_id, g.group_name, g2.group_name, ".
|
---|
[51] | 2014 | "count(distinct(u.username)) AS nusers, count(distinct(d.domain)) AS ndomains ".
|
---|
[22] | 2015 | "FROM groups g ".
|
---|
| 2016 | "INNER JOIN groups g2 ON g2.group_id=g.parent_group_id ".
|
---|
| 2017 | "LEFT OUTER JOIN users u ON u.group_id=g.group_id ".
|
---|
| 2018 | "LEFT OUTER JOIN domains d ON d.group_id=g.group_id ".
|
---|
[140] | 2019 | "WHERE g.parent_group_id IN ($curgroup".($childlist ? ",$childlist" : '').") ".
|
---|
[160] | 2020 | ($startwith ? " AND g.group_name ~* ?" : '').
|
---|
| 2021 | ($filter ? " AND g.group_name ~* ?" : '').
|
---|
[51] | 2022 | " GROUP BY g.group_id, g.group_name, g2.group_name ".
|
---|
| 2023 | " ORDER BY $sortby $sortorder ".
|
---|
[160] | 2024 | ($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage);
|
---|
| 2025 | $sth = $dbh->prepare($sql);
|
---|
| 2026 | $sth->execute(@filterargs);
|
---|
[22] | 2027 |
|
---|
| 2028 | my $rownum = 0;
|
---|
| 2029 | while (my @data = $sth->fetchrow_array) {
|
---|
| 2030 | my %row;
|
---|
| 2031 | $row{groupid} = $data[0];
|
---|
| 2032 | $row{groupname} = $data[1];
|
---|
| 2033 | $row{pgroup} = $data[2];
|
---|
| 2034 | $row{nusers} = $data[3];
|
---|
| 2035 | $row{ndomains} = $data[4];
|
---|
| 2036 | $row{bg} = ($rownum++)%2;
|
---|
| 2037 | $row{sid} = $sid;
|
---|
[140] | 2038 | $row{edgrp} = ($permissions{admin} || $permissions{group_edit});
|
---|
| 2039 | $row{delgrp} = ($permissions{admin} || $permissions{group_delete});
|
---|
[22] | 2040 | push @grouplist, \%row;
|
---|
| 2041 | }
|
---|
| 2042 | $page->param(grouptable => \@grouplist);
|
---|
| 2043 | } # end listgroups()
|
---|
| 2044 |
|
---|
[92] | 2045 |
|
---|
[20] | 2046 | sub fill_grouplist {
|
---|
[19] | 2047 | my $template_var = shift;
|
---|
| 2048 | my $cur = shift || $curgroup;
|
---|
[26] | 2049 |
|
---|
| 2050 | my @childgroups;
|
---|
| 2051 | getChildren($dbh, $logingroup, \@childgroups, 'all');
|
---|
| 2052 | my $childlist = join(',',@childgroups);
|
---|
| 2053 |
|
---|
[117] | 2054 | ##fixme: need to reorder list so that we can display a pseudotree in group dropdowns
|
---|
| 2055 |
|
---|
[18] | 2056 | # weesa gonna discard parent_group_id for now
|
---|
[26] | 2057 | my $sth = $dbh->prepare("SELECT group_id,parent_group_id,group_name FROM groups ".
|
---|
| 2058 | "WHERE group_id IN ($logingroup".($childlist ? ",$childlist" : '').")".
|
---|
| 2059 | "ORDER BY group_id");
|
---|
[18] | 2060 | $sth->execute;
|
---|
[20] | 2061 | my @grouplist;
|
---|
| 2062 | while (my ($groupid,$pargroup,$groupname) = $sth->fetchrow_array()) {
|
---|
[18] | 2063 | my %row;
|
---|
[20] | 2064 | $row{groupname} = $groupname;
|
---|
| 2065 | $row{groupval} = $groupid;
|
---|
[18] | 2066 | ##fixme: need magic
|
---|
[93] | 2067 | ## ... WTF?
|
---|
[20] | 2068 | # $row{defgroup} = '';
|
---|
| 2069 | $row{groupactive} = 1 if $groupid == $cur;
|
---|
| 2070 | push @grouplist, \%row;
|
---|
[18] | 2071 | }
|
---|
| 2072 |
|
---|
[20] | 2073 | $page->param("$template_var" => \@grouplist);
|
---|
[18] | 2074 |
|
---|
[24] | 2075 | } # end fill_grouplist()
|
---|
| 2076 |
|
---|
[92] | 2077 |
|
---|
[24] | 2078 | sub list_users {
|
---|
[52] | 2079 |
|
---|
| 2080 | my @childgroups;
|
---|
[53] | 2081 | getChildren($dbh, $curgroup, \@childgroups, 'all') if $searchsubs;
|
---|
[52] | 2082 | my $childlist = join(',',@childgroups);
|
---|
| 2083 |
|
---|
| 2084 | my $sql = "SELECT count(*) FROM users WHERE group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[160] | 2085 | ($startwith ? " AND username ~* ?" : '').
|
---|
| 2086 | ($filter ? " AND username ~* ?" : '');
|
---|
[52] | 2087 | my $sth = $dbh->prepare($sql);
|
---|
[160] | 2088 | $sth->execute(@filterargs);
|
---|
[24] | 2089 | my ($count) = ($sth->fetchrow_array);
|
---|
| 2090 |
|
---|
| 2091 | # fill page count and first-previous-next-last-all bits
|
---|
| 2092 | fill_pgcount($count,"users",'');
|
---|
| 2093 | fill_fpnla($count);
|
---|
| 2094 |
|
---|
[124] | 2095 | $sortby = 'user';
|
---|
[44] | 2096 | # sort/order
|
---|
[51] | 2097 | $session->param($webvar{page}.'sortby', $webvar{sortby}) if $webvar{sortby};
|
---|
| 2098 | $session->param($webvar{page}.'order', $webvar{order}) if $webvar{order};
|
---|
[44] | 2099 |
|
---|
[120] | 2100 | $sortby = $session->param($webvar{page}.'sortby') if $session->param($webvar{page}.'sortby');
|
---|
| 2101 | $sortorder = $session->param($webvar{page}.'order') if $session->param($webvar{page}.'order');
|
---|
[51] | 2102 |
|
---|
[44] | 2103 | # set up the headers
|
---|
| 2104 | my @cols = ('user','fname','type','group','status');
|
---|
| 2105 | my %colnames = (user => 'Username', fname => 'Full Name', type => 'Type', group => 'Group', status => 'Status');
|
---|
[54] | 2106 | fill_colheads($sortby, $sortorder, \@cols, \%colnames);
|
---|
[44] | 2107 |
|
---|
[51] | 2108 | # waffle, waffle - keep state on these as well as sortby, sortorder?
|
---|
[64] | 2109 | $page->param("start$startwith" => 1) if $startwith && $startwith =~ /^(?:[a-z]|0-9)$/;
|
---|
[51] | 2110 |
|
---|
[53] | 2111 | $page->param(filter => $filter) if $filter;
|
---|
| 2112 | $page->param(searchsubs => $searchsubs) if $searchsubs;
|
---|
[51] | 2113 |
|
---|
| 2114 | # munge sortby for columns in database
|
---|
| 2115 | $sortby = 'u.username' if $sortby eq 'user';
|
---|
| 2116 | $sortby = 'u.type' if $sortby eq 'type';
|
---|
| 2117 | $sortby = 'g.group_name' if $sortby eq 'group';
|
---|
| 2118 | $sortby = 'u.status' if $sortby eq 'status';
|
---|
| 2119 |
|
---|
[24] | 2120 | my @userlist;
|
---|
[52] | 2121 | $sql = "SELECT u.user_id, u.username, u.firstname || ' ' || u.lastname AS fname, u.type, g.group_name, u.status ".
|
---|
[24] | 2122 | "FROM users u ".
|
---|
| 2123 | "INNER JOIN groups g ON u.group_id=g.group_id ".
|
---|
[52] | 2124 | "WHERE u.group_id IN ($curgroup".($childlist ? ",$childlist" : '').")".
|
---|
[160] | 2125 | ($startwith ? " AND u.username ~* ?" : '').
|
---|
| 2126 | ($filter ? " AND u.username ~* ?" : '').
|
---|
[51] | 2127 | " ORDER BY $sortby $sortorder ".
|
---|
[52] | 2128 | ($offset eq 'all' ? '' : " LIMIT $perpage OFFSET ".$offset*$perpage);
|
---|
[51] | 2129 |
|
---|
[52] | 2130 | $sth = $dbh->prepare($sql);
|
---|
[160] | 2131 | $sth->execute(@filterargs);
|
---|
[24] | 2132 |
|
---|
| 2133 | my $rownum = 0;
|
---|
| 2134 | while (my @data = $sth->fetchrow_array) {
|
---|
[41] | 2135 | no warnings "uninitialized"; # Just In Case something stupid happens and a user gets no first or last name
|
---|
[24] | 2136 | my %row;
|
---|
| 2137 | $row{userid} = $data[0];
|
---|
| 2138 | $row{username} = $data[1];
|
---|
[51] | 2139 | $row{userfull} = $data[2];
|
---|
| 2140 | $row{usertype} = ($data[3] eq 'S' ? 'superuser' : "user");
|
---|
| 2141 | $row{usergroup} = $data[4];
|
---|
| 2142 | $row{active} = $data[5];
|
---|
[24] | 2143 | $row{bg} = ($rownum++)%2;
|
---|
| 2144 | $row{sid} = $sid;
|
---|
[142] | 2145 | $row{eduser} = ($permissions{admin} || $permissions{user_edit});
|
---|
| 2146 | $row{deluser} = ($permissions{admin} || $permissions{user_delete});
|
---|
[24] | 2147 | push @userlist, \%row;
|
---|
| 2148 | }
|
---|
| 2149 | $page->param(usertable => \@userlist);
|
---|
[55] | 2150 | } # end list_users()
|
---|
[43] | 2151 |
|
---|
[92] | 2152 |
|
---|
[43] | 2153 | # Generate all of the glop necessary to add or not the appropriate marker/flag for
|
---|
| 2154 | # the sort order and column in domain, user, group, and record lists
|
---|
| 2155 | # Takes an array ref and hash ref
|
---|
| 2156 | sub fill_colheads {
|
---|
[54] | 2157 | my $sortby = shift;
|
---|
| 2158 | my $sortorder = shift;
|
---|
[43] | 2159 | my $cols = shift;
|
---|
| 2160 | my $colnames = shift;
|
---|
[72] | 2161 | my $custom = shift;
|
---|
[43] | 2162 |
|
---|
| 2163 | my @headings;
|
---|
| 2164 |
|
---|
| 2165 | foreach my $col (@$cols) {
|
---|
| 2166 | my %coldata;
|
---|
| 2167 | $coldata{firstcol} = 1 if $col eq $cols->[0];
|
---|
| 2168 | $coldata{sid} = $sid;
|
---|
| 2169 | $coldata{page} = $webvar{page};
|
---|
| 2170 | $coldata{offset} = $webvar{offset} if $webvar{offset};
|
---|
| 2171 | $coldata{sortby} = $col;
|
---|
| 2172 | $coldata{colname} = $colnames->{$col};
|
---|
| 2173 | if ($col eq $sortby) {
|
---|
| 2174 | $coldata{order} = ($sortorder eq 'ASC' ? 'DESC' : 'ASC');
|
---|
| 2175 | $coldata{sortorder} = $sortorder;
|
---|
| 2176 | } else {
|
---|
| 2177 | $coldata{order} = 'ASC';
|
---|
| 2178 | }
|
---|
[72] | 2179 | if ($custom) {
|
---|
| 2180 | foreach my $ckey (keys %$custom) {
|
---|
| 2181 | $coldata{$ckey} = $custom->{$ckey};
|
---|
| 2182 | }
|
---|
| 2183 | }
|
---|
[43] | 2184 | push @headings, \%coldata;
|
---|
| 2185 | }
|
---|
| 2186 |
|
---|
| 2187 | $page->param(colheads => \@headings);
|
---|
| 2188 |
|
---|
[54] | 2189 | } # end fill_colheads()
|
---|
[55] | 2190 |
|
---|
[92] | 2191 |
|
---|
[55] | 2192 | sub logaction {
|
---|
[59] | 2193 | my $domid = shift;
|
---|
| 2194 | my $username = shift;
|
---|
| 2195 | my $groupid = shift;
|
---|
| 2196 | my $entry = shift;
|
---|
[55] | 2197 |
|
---|
[93] | 2198 | ##fixme: push SQL into DNSDB.pm
|
---|
[101] | 2199 | ##fixme: add bits to retrieve group/domain name info to retain after entity is deleted?
|
---|
[59] | 2200 | my $sth = $dbh->prepare("SELECT user_id, firstname || ' ' || lastname FROM users WHERE username=?");
|
---|
[55] | 2201 | $sth->execute($username);
|
---|
| 2202 | my ($user_id, $fullname) = $sth->fetchrow_array;
|
---|
| 2203 |
|
---|
| 2204 | $sth = $dbh->prepare("INSERT INTO log (domain_id,user_id,group_id,email,name,entry) ".
|
---|
[107] | 2205 | "VALUES (?,?,?,?,?,?)") or warn $dbh->errstr;
|
---|
| 2206 | $sth->execute($domid,$user_id,$groupid,$username,$fullname,$entry) or warn $sth->errstr;
|
---|
[55] | 2207 | } # end logaction()
|
---|
[57] | 2208 |
|
---|
[92] | 2209 |
|
---|
[59] | 2210 | ##fixme: generalize to return appropriate id on all cases (ie, use $partype)
|
---|
[57] | 2211 | sub parentID {
|
---|
| 2212 | my $id = shift;
|
---|
| 2213 | my $idtype = shift;
|
---|
| 2214 | my $partype = shift;
|
---|
| 2215 | my $defrec = shift || '';
|
---|
| 2216 |
|
---|
| 2217 | my $sql = '';
|
---|
| 2218 |
|
---|
| 2219 | if ($idtype eq 'dom') {
|
---|
[59] | 2220 | return $id if $defrec eq 'y'; # "domain" + default records, we're really looking at a group.
|
---|
[57] | 2221 | $sql = "SELECT group_id FROM domains WHERE domain_id=?";
|
---|
| 2222 | } elsif ($idtype eq 'rec') {
|
---|
[59] | 2223 | if ($defrec eq 'y') {
|
---|
| 2224 | $sql = "SELECT group_id FROM default_records WHERE record_id=?";
|
---|
[57] | 2225 | } else {
|
---|
| 2226 | $sql = "SELECT d.group_id FROM domains d".
|
---|
| 2227 | " INNER JOIN records r ON d.domain_id=r.domain_id".
|
---|
| 2228 | " WHERE r.record_id=?";
|
---|
| 2229 | }
|
---|
| 2230 | } elsif ($idtype eq 'group') {
|
---|
| 2231 | $sql = "SELECT parent_group_id FROM groups WHERE group_id=?";
|
---|
| 2232 | } elsif ($idtype eq 'user') {
|
---|
| 2233 | $sql = "SELECT group_id FROM users WHERE user_id=?";
|
---|
| 2234 | } else {
|
---|
| 2235 | return "FOO", "BAR"; # can't get here.... we think.
|
---|
| 2236 | }
|
---|
[59] | 2237 | my $sth = $dbh->prepare($sql);
|
---|
| 2238 | $sth->execute($id);
|
---|
| 2239 | my ($retid) = $sth->fetchrow_array;
|
---|
| 2240 | return $retid if $retid;
|
---|
| 2241 | # ahh! fall of the edge of the world if things went sideways
|
---|
| 2242 | ##fixme: really need to do a little more error handling, I think
|
---|
[64] | 2243 | } # end parentID()
|
---|
[66] | 2244 |
|
---|
[92] | 2245 |
|
---|
[66] | 2246 | # we have to do this in a variety of places; let's make it consistent
|
---|
| 2247 | sub fill_permissions {
|
---|
| 2248 | my $template = shift; # may need to do several sets on a single page
|
---|
| 2249 | my $permset = shift; # hashref to permissions on object
|
---|
[67] | 2250 | my $usercan = shift || \%permissions; # allow alternate user-is-allowed permission block
|
---|
[66] | 2251 |
|
---|
| 2252 | foreach (@permtypes) {
|
---|
[67] | 2253 | $template->param("may_$_" => ($usercan->{admin} || $usercan->{$_}));
|
---|
[66] | 2254 | $template->param($_ => $permset->{$_});
|
---|
| 2255 | }
|
---|
| 2256 | }
|
---|
[155] | 2257 |
|
---|
| 2258 | # so simple when defined as a sub instead of inline. O_o
|
---|
| 2259 | sub check_scope {
|
---|
[169] | 2260 | my %args = @_;
|
---|
| 2261 | my $entity = $args{id} || 0; # prevent the shooting of feet with SQL "... intcolumn = '' ..."
|
---|
| 2262 | my $entype = $args{type} || '';
|
---|
[155] | 2263 |
|
---|
| 2264 | if ($entype eq 'group') {
|
---|
| 2265 | return 1 if grep /^$entity$/, @viewablegroups;
|
---|
| 2266 | } else {
|
---|
| 2267 | foreach (@viewablegroups) {
|
---|
| 2268 | return 1 if isParent($dbh, $_, 'group', $entity, $entype);
|
---|
| 2269 | }
|
---|
| 2270 | }
|
---|
| 2271 | }
|
---|