X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/f559ec45ea2fc09c361ef7e4a40a59b1f2133737..1cd7aea87cff5ab5a4b51a539e2dc24935f4d8c4:/SL/Menu.pm?ds=sidebyside diff --git a/SL/Menu.pm b/SL/Menu.pm index 7d07153bc..60d78dd27 100644 --- a/SL/Menu.pm +++ b/SL/Menu.pm @@ -34,6 +34,7 @@ package Menu; +use SL::Auth; use SL::Inifile; sub new { @@ -46,9 +47,13 @@ sub new { map { $self->{$_} = $inifile->{$_} } keys %{ $inifile }; + bless $self, $type; + + $self->set_access(); + $main::lxdebug->leave_sub(); - bless $self, $type; + return $self; } sub menuitem { @@ -72,8 +77,7 @@ sub menuitem { my $level = $form->escape($item); - my $str = - qq|{login}&password=$form->{password}|; + my $str = qq|enter_sub(); + + my ($self, $name, $item) = @_; + + my $form = $main::form; + + my $module = $self->{$name}->{module} || $form->{script}; + my $action = $self->{$name}->{action}; + + $item->{target} = $self->{$name}->{target} || "main_window"; + $item->{href} = $self->{$name}->{href} || "${module}?action=" . $form->escape($action); + + my @vars = qw(module target href); + push @vars, 'action' unless ($self->{$name}->{href}); + + map { delete $self->{$name}{$_} } @vars; + + # add other params + foreach my $key (keys %{ $self->{$name} }) { + my ($value, $conf) = split(m/=/, $self->{$name}->{$key}, 2); + $value = $myconfig->{$value} . "/$conf" if ($conf); + $item->{href} .= "&" . $form->escape($key) . "=" . $form->escape($value); + } + + $main::lxdebug->leave_sub(); +} + sub menuitem_v3 { $main::lxdebug->enter_sub(); @@ -124,9 +156,7 @@ sub menuitem_v3 { my $level = $form->escape($item); - my $str = qq|escape($action) . qq|&level=| . $form->escape($level); my @vars = qw(module action target href); @@ -187,7 +217,6 @@ sub menuitem_XML { my $str = qq| link="$module?action=| . $form->escape($action) . qq|&level=| . $form->escape($level); - map({ $str .= "&${_}=" . $form->escape($form->{$_}); } qw(login password)); my @vars = qw(module action target href); @@ -222,44 +251,6 @@ sub menuitem_XML { return $str; } -sub menuitemNew { - my ($self, $myconfig, $form, $item) = @_; - - my $module = $form->{script}; - my $action = "section_menu"; - - #if ($self->{$item}{module}) { - $module = $self->{$item}{module}; - - #} - if ($self->{$item}{action}) { - $action = $self->{$item}{action}; - } - - my $level = $form->escape($item); - my $str = - qq|$module?action=$action&level=$level&login=$form->{login}&password=$form->{password}|; - my @vars = qw(module action target href); - - if ($self->{$item}{href}) { - $str = qq|$self->{$item}{href}|; - @vars = qw(module target href); - } - - map { delete $self->{$item}{$_} } @vars; - - # add other params - foreach my $key (keys %{ $self->{$item} }) { - $str .= "&" . $form->escape($key, 1) . "="; - ($value, $conf) = split(/=/, $self->{$item}{$key}, 2); - $value = $myconfig->{$value} . "/$conf" if ($conf); - $str .= $form->escape($value, 1); - } - - $str .= " "; - -} - sub access_control { $main::lxdebug->enter_sub(2); @@ -302,5 +293,103 @@ sub generate_acl { } } +sub parse_access_string { + my $self = shift; + my $key = shift; + my $access = shift; + + my @stack; + my $cur_ary = []; + + push @stack, $cur_ary; + + while ($access =~ m/^([a-z_]+|\||\&|\(|\)|\s+)/) { + my $token = $1; + substr($access, 0, length($1)) = ""; + + next if ($token =~ /\s/); + + if ($token eq "(") { + my $new_cur_ary = []; + push @stack, $new_cur_ary; + push @{$cur_ary}, $new_cur_ary; + $cur_ary = $new_cur_ary; + + } elsif ($token eq ")") { + pop @stack; + if (!@stack) { + $main::form->error("Error in menu.ini for entry ${key}: missing '('"); + } + $cur_ary = $stack[-1]; + + } elsif (($token eq "|") || ($token eq "&")) { + push @{$cur_ary}, $token; + + } else { + push @{$cur_ary}, $main::auth->check_right($main::form->{login}, $token, 1); + } + } + + if ($access) { + $main::form->error("Error in menu.ini for entry ${name}: unrecognized token at the start of '$access'\n"); + } + + if (1 < scalar @stack) { + $main::form->error("Error in menu.ini for entry ${name}: Missing ')'\n"); + } + + return SL::Auth::evaluate_rights_ary($stack[0]); +} + +sub set_access { + my $self = shift; + + my $key; + + foreach $key (@{ $self->{ORDER} }) { + my $entry = $self->{$key}; + + $entry->{GRANTED} = $entry->{ACCESS} ? $self->parse_access_string($key, $entry->{ACCESS}) : 1; + $entry->{IS_MENU} = $entry->{submenu} || ($key !~ m/--/); + $entry->{NUM_VISIBLE_CHILDREN} = 0; + + if ($key =~ m/--/) { + my $parent = $key; + substr($parent, rindex($parent, '--')) = ''; + $entry->{GRANTED} &&= $self->{$parent}->{GRANTED}; + } + + $entry->{VISIBLE} = $entry->{GRANTED}; + } + + foreach $key (reverse @{ $self->{ORDER} }) { + my $entry = $self->{$key}; + + if ($entry->{IS_MENU}) { + $entry->{VISIBLE} &&= $entry->{NUM_VISIBLE_CHILDREN} > 0; + } + + next if (($key !~ m/--/) || !$entry->{VISIBLE}); + + my $parent = $key; + substr($parent, rindex($parent, '--')) = ''; + $self->{$parent}->{NUM_VISIBLE_CHILDREN}++; + } + +# $self->dump_visible(); + + $self->{ORDER} = [ grep { $self->{$_}->{VISIBLE} } @{ $self->{ORDER} } ]; + + map { delete @{$self->{$_}}{qw(GRANTED IS_MENU NUM_VISIBLE_CHILDREN VISIBLE ACCESS)} if ($_ ne 'ORDER') } keys %{ $self }; +} + +sub dump_visible { + my $self = shift; + foreach my $key (@{ $self->{ORDER} }) { + my $entry = $self->{$key}; + $main::lxdebug->message(0, "$entry->{GRANTED} $entry->{VISIBLE} $entry->{NUM_VISIBLE_CHILDREN} $key"); + } +} + 1;