Files
scripts/Perl OTRS/Kernel/System/Ticket/Permission/ResponsibleCheck.pm
2024-10-14 00:08:40 +02:00

101 lines
2.5 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::System::Ticket::Permission::ResponsibleCheck;
use strict;
use warnings;
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::CheckItem',
'Kernel::System::Log',
'Kernel::System::Ticket',
);
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
return $Self;
}
sub Run {
my ( $Self, %Param ) = @_;
# check needed stuff
for (qw(TicketID UserID)) {
if ( !$Param{$_} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $_!",
);
return;
}
}
# return if no responsible feature is active
return if !$Kernel::OM->Get('Kernel::Config')->Get('Ticket::Responsible');
# get ticket data
my %Ticket = $Kernel::OM->Get('Kernel::System::Ticket')->TicketGet(
TicketID => $Param{TicketID},
DynamicFields => 0,
);
return if !%Ticket;
return if !$Ticket{ResponsibleID};
# get queue config
my $Queues = $Kernel::OM->Get('Kernel::Config')->Get('Ticket::Permission::ResponsibleCheck::Queues');
# check queues
if ( $Queues && ref $Queues eq 'HASH' && %{$Queues} && $Ticket{Queue} ) {
return if !$Queues->{ $Ticket{Queue} };
# get check item object
my $CheckItemObject = $Kernel::OM->Get('Kernel::System::CheckItem');
# extract permission list
my @PermissionList = split ',', $Queues->{ $Ticket{Queue} };
my %PermissionList;
STRING:
for my $String (@PermissionList) {
next STRING if !$String;
# trim the string
$CheckItemObject->StringClean(
StringRef => \$String,
);
next STRING if !$String;
$PermissionList{$String} = 1;
}
# if a permission like 'note' is given, the 'ro' permission is required to calculate the right permission
$PermissionList{ro} = 1;
return if !$PermissionList{rw} && !$PermissionList{ $Param{Type} };
}
# check ticket responsible, return access if current user is ticket responsible
return 1 if $Ticket{ResponsibleID} eq $Param{UserID};
# return no access
return;
}
1;