/usr/share/otrs/bin/otrs.PendingJobs.pl is in otrs2 3.3.5-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | #!/usr/bin/perl
# --
# bin/otrs.PendingJobs.pl - check pending tickets
# Copyright (C) 2001-2014 OTRS AG, http://otrs.com/
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU AFFERO General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# or see http://www.gnu.org/licenses/agpl.txt.
# --
use strict;
use warnings;
use File::Basename;
use FindBin qw($RealBin);
use lib dirname($RealBin);
use lib dirname($RealBin) . '/Kernel/cpan-lib';
use lib dirname($RealBin) . '/Custom';
use Kernel::Config;
use Kernel::System::Encode;
use Kernel::System::Time;
use Kernel::System::Log;
use Kernel::System::Main;
use Kernel::System::DB;
use Kernel::System::Ticket;
use Kernel::System::User;
use Kernel::System::State;
# common objects
my %CommonObject;
$CommonObject{ConfigObject} = Kernel::Config->new();
$CommonObject{EncodeObject} = Kernel::System::Encode->new(%CommonObject);
$CommonObject{LogObject} = Kernel::System::Log->new(
LogPrefix => 'OTRS-otrs.PendingJobs.pl',
%CommonObject,
);
$CommonObject{MainObject} = Kernel::System::Main->new(%CommonObject);
$CommonObject{TimeObject} = Kernel::System::Time->new(%CommonObject);
$CommonObject{DBObject} = Kernel::System::DB->new(%CommonObject);
$CommonObject{TicketObject} = Kernel::System::Ticket->new(%CommonObject);
$CommonObject{UserObject} = Kernel::System::User->new(%CommonObject);
$CommonObject{StateObject} = Kernel::System::State->new(%CommonObject);
# check args
my $Command = shift || '--help';
print "otrs.PendingJobs.pl - check pending tickets\n";
print "Copyright (C) 2001-2014 OTRS AG, http://otrs.com/\n";
# do ticket auto jobs
my @TicketIDs = $CommonObject{TicketObject}->TicketSearch(
Result => 'ARRAY',
StateType => 'pending auto',
UserID => 1,
);
TICKETID:
for my $TicketID (@TicketIDs) {
# get ticket data
my %Ticket = $CommonObject{TicketObject}->TicketGet(
TicketID => $TicketID,
UserID => 1,
DynamicFields => 0,
);
next TICKETID if $Ticket{UntilTime} >= 1;
my %States = %{ $CommonObject{ConfigObject}->Get('Ticket::StateAfterPending') };
# error handling
if ( !$States{ $Ticket{State} } ) {
print STDERR
"ERROR: No Ticket::StateAfterPending found for '$Ticket{State}' in Kernel/Config.pm!\n";
next TICKETID;
}
print STDOUT
" Update ticket state for ticket $Ticket{TicketNumber} ($TicketID) to '$States{$Ticket{State}}'...";
# set new state
my $Success = $CommonObject{TicketObject}->StateSet(
TicketID => $TicketID,
State => $States{ $Ticket{State} },
UserID => 1,
);
# error handling
if ( !$Success ) {
print STDOUT " failed.\n";
next TICKETID;
}
# get state type for new state
my %State = $CommonObject{StateObject}->StateGet(
Name => $States{ $Ticket{State} },
);
if ( $State{TypeName} eq 'closed' ) {
# set new ticket lock
$CommonObject{TicketObject}->LockSet(
TicketID => $TicketID,
Lock => 'unlock',
UserID => 1,
Notification => 0,
);
}
print STDOUT " done.\n";
}
# do ticket reminder notification jobs
@TicketIDs = $CommonObject{TicketObject}->TicketSearch(
Result => 'ARRAY',
StateType => 'pending reminder',
UserID => 1,
);
TICKETID:
for my $TicketID (@TicketIDs) {
# get ticket data
my %Ticket = $CommonObject{TicketObject}->TicketGet(
TicketID => $TicketID,
UserID => 1,
DynamicFields => 0,
);
next TICKETID if $Ticket{UntilTime} >= 1;
# check if it is during business hours, then send reminder
my $CountedTime = $CommonObject{TimeObject}->WorkingTime(
StartTime => $CommonObject{TimeObject}->SystemTime() - ( 30 * 60 ),
StopTime => $CommonObject{TimeObject}->SystemTime(),
);
# error handling
if ( !$CountedTime ) {
if ( $CommonObject{Debug} ) {
$CommonObject{LogObject}->Log(
Priority => 'debug',
Message =>
"Did not send pending reminder for Ticket $Ticket{TicketNumber}/$Ticket{TicketID} because it's currently outside business hours!",
);
}
next TICKETID;
}
# send the reminder to the ticket owner, if ticket is locked
my @UserID;
if (
$CommonObject{ConfigObject}->Get('Ticket::PendingNotificationOnlyToOwner')
|| $Ticket{Lock} eq 'lock'
)
{
@UserID = ( $Ticket{OwnerID} );
}
# send the reminder to all queue subscribers and owner, if ticket is unlocked
else {
@UserID = $CommonObject{TicketObject}->GetSubscribedUserIDsByQueueID(
QueueID => $Ticket{QueueID},
);
push @UserID, $Ticket{OwnerID};
}
# add the responsible agent to the notification list
if (
!$CommonObject{ConfigObject}->Get('Ticket::PendingNotificationNotToResponsible')
&& $CommonObject{ConfigObject}->Get('Ticket::Responsible')
&& $Ticket{ResponsibleID} ne 1
)
{
push @UserID, $Ticket{ResponsibleID};
}
# send the reminder notification
print STDOUT " Send reminder notification (TicketID=$TicketID)\n";
my %AlreadySent;
USERID:
for my $UserID (@UserID) {
# remember if reminder got already sent
next if $AlreadySent{$UserID};
$AlreadySent{$UserID} = 1;
# get user data
my %Preferences = $CommonObject{UserObject}->GetUserData(
UserID => $UserID,
);
# check if a reminder has already been sent today
my ( $Sec, $Min, $Hour, $Day, $Month, $Year )
= $CommonObject{TimeObject}->SystemTime2Date(
SystemTime => $CommonObject{TimeObject}->SystemTime(),
);
# get ticket history
my @Lines = $CommonObject{TicketObject}->HistoryGet(
TicketID => $Ticket{TicketID},
UserID => 1,
);
my $Sent = 0;
for my $Line (@Lines) {
if (
$Line->{Name} =~ /PendingReminder/
&& $Line->{Name} =~ /\Q$Preferences{UserEmail}\E/i
&& $Line->{CreateTime} =~ /$Year-$Month-$Day/
)
{
$Sent = 1;
}
}
next USERID if $Sent;
# send agent notification
$CommonObject{TicketObject}->SendAgentNotification(
TicketID => $Ticket{TicketID},
Type => 'PendingReminder',
RecipientID => $UserID,
CustomerMessageParams => {
TicketNumber => $Ticket{TicketNumber},
},
UserID => 1,
);
}
}
exit;
|