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