64 lines
1.4 KiB
Perl
64 lines
1.4 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::WatcherCheck;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
our @ObjectDependencies = (
|
|
'Kernel::Config',
|
|
'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 Type)) {
|
|
if ( !$Param{$_} ) {
|
|
$Kernel::OM->Get('Kernel::System::Log')->Log(
|
|
Priority => 'error',
|
|
Message => "Need $_!",
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
# return if no watcher feature is active
|
|
return if !$Kernel::OM->Get('Kernel::Config')->Get('Ticket::Watcher');
|
|
|
|
# return no access if it's wrong permission type
|
|
return if $Param{Type} ne 'ro';
|
|
|
|
# get ticket data, return access if current user is watcher
|
|
my %Ticket = $Kernel::OM->Get('Kernel::System::Ticket')->TicketWatchGet(
|
|
TicketID => $Param{TicketID},
|
|
);
|
|
|
|
return if !%Ticket;
|
|
|
|
return 1 if $Ticket{ $Param{UserID} };
|
|
|
|
# return no access
|
|
return;
|
|
}
|
|
|
|
1;
|