Files
scripts/Perl OTRS/Kernel/Output/HTML/ITSMConfigItem/MenuGeneric.pm
2024-10-14 00:08:40 +02:00

146 lines
4.2 KiB
Perl

# --
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
package Kernel::Output::HTML::ITSMConfigItem::MenuGeneric;
use strict;
use warnings;
use parent('Kernel::Output::HTML::Base');
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::Language',
'Kernel::Output::HTML::Layout',
'Kernel::System::Log',
'Kernel::System::Group',
);
sub Run {
my ( $Self, %Param ) = @_;
# check needed stuff
if ( !$Param{ConfigItem} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need ConfigItem!',
);
return;
}
# grant access by default
my $Access = 1;
# get action
my $Action = $Param{Config}->{Action};
if ( $Action eq 'AgentLinkObject' ) {
# The Link-link is a special case, as it is not specific to ITSMConfigItem.
# As a workaround we hardcode that AgentLinkObject is treated like AgentITSMConfigItemEdit
$Action = 'AgentITSMConfigItemEdit';
}
# get config object
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
# get groups
my $GroupsRo = $ConfigObject->Get('Frontend::Module')->{$Action}->{GroupRo} || [];
my $GroupsRw = $ConfigObject->Get('Frontend::Module')->{$Action}->{Group} || [];
# get layout object
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
# check permission
if ( $Action && ( @{$GroupsRo} || @{$GroupsRw} ) ) {
# deny access by default, when there are groups to check
$Access = 0;
# check read only groups
ROGROUP:
for my $RoGroup ( @{$GroupsRo} ) {
next ROGROUP if !$Kernel::OM->Get('Kernel::System::Group')->PermissionCheck(
UserID => $Self->{UserID},
GroupName => $RoGroup,
Type => 'ro',
);
# set access
$Access = 1;
last ROGROUP;
}
# check read write groups
RWGROUP:
for my $RwGroup ( @{$GroupsRw} ) {
next RWGROUP if !$Kernel::OM->Get('Kernel::System::Group')->PermissionCheck(
UserID => $Self->{UserID},
GroupName => $RwGroup,
Type => 'rw',
);
# set access
$Access = 1;
last RWGROUP;
}
}
return $Param{Counter} if !$Access;
# output menu block
$LayoutObject->Block( Name => 'Menu' );
# output menu item
$LayoutObject->Block(
Name => 'MenuItem',
Data => {
%Param,
%{ $Param{ConfigItem} },
%{ $Param{Config} },
},
);
# check if a dialog has to be shown
if ( $Param{Config}->{DialogTitle} ) {
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
my $LanguageObject = $Kernel::OM->Get('Kernel::Language');
# Replace the template toolkit expressions with the final value.
my %JSData = (
%Param,
%{ $Param{ConfigItem} },
%{ $Param{Config} },
);
delete $JSData{Config};
delete $JSData{ConfigItem};
$JSData{ElementSelector} =~ s/\[%\s*Data\.MenuID\s*\|\s*html\s*%\]/$JSData{MenuID}/i;
$JSData{DialogContentQueryString} =~ s/\[%\s*Data\.ConfigItemID\s*\|\s*html\s*%\]/$JSData{ConfigItemID}/i;
$JSData{ConfirmedActionQueryString} =~ s/\[%\s*Data\.ConfigItemID\s*\|\s*html\s*%\]/$JSData{ConfigItemID}/i;
$JSData{DialogTitle} =~ s/\[%\s*Translate\("(.*)"\)\s*\|\s*html\s*%\]/$LanguageObject->Translate($1)/ei;
$JSData{DialogTitle} =~ s/\[%\s*Config\("(.*)"\)\s*%\]/$ConfigObject->Get($1)/ei;
$JSData{DialogTitle} =~ s/\[%\s*Data.Number\s*\|\s*html\s*%\]/$JSData{Number}/ei;
$JSData{MenuID} = 'Menu' . $JSData{MenuID};
$LayoutObject->AddJSData(
Key => 'ITSMShowConfirmDialog.' . $Param{MenuID},
Value => \%JSData,
);
}
$Param{Counter}++;
return $Param{Counter};
}
1;