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