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