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