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

77 lines
2.1 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::Notification::OutofOfficeCheck;
use parent 'Kernel::Output::HTML::Base';
use strict;
use warnings;
our @ObjectDependencies = (
'Kernel::System::User',
'Kernel::Output::HTML::Layout',
);
sub Run {
my ( $Self, %Param ) = @_;
my %UserData = $Kernel::OM->Get('Kernel::System::User')->GetUserData( UserID => $Self->{UserID} );
return '' if ( !$UserData{OutOfOffice} );
my $CurSystemDTObject = $Kernel::OM->Create('Kernel::System::DateTime');
my $OOOStartDTObject = $Self->_GetOutOfOfficeDateTimeObject(
UserData => \%UserData,
Type => 'Start'
);
my $OOOEndDTObject = $Self->_GetOutOfOfficeDateTimeObject(
UserData => \%UserData,
Type => 'End'
);
if ( $OOOStartDTObject < $CurSystemDTObject && $OOOEndDTObject > $CurSystemDTObject ) {
# get layout object
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
return $LayoutObject->Notify(
Priority => 'Notice',
Link => $LayoutObject->{Baselink} . 'Action=AgentPreferences',
Data =>
$LayoutObject->{LanguageObject}
->Translate("You have Out of Office enabled, would you like to disable it?"),
);
}
return '';
}
sub _GetOutOfOfficeDateTimeObject {
my ( $Self, %Param ) = @_;
my $Type = $Param{Type};
my $UserData = $Param{UserData};
my $DTString = sprintf(
'%s-%s-%s %s',
$UserData->{"OutOfOffice${Type}Year"},
$UserData->{"OutOfOffice${Type}Month"},
$UserData->{"OutOfOffice${Type}Day"},
( $Type eq 'End' ? '23:59:59' : '00:00:00' ),
);
return $Kernel::OM->Create(
'Kernel::System::DateTime',
ObjectParams => {
String => $DTString,
},
);
}
1;