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