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