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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
# --
# Kernel/System/Ticket/IndexAccelerator/RuntimeDB.pm - realtime database
# queue ticket index module
# Copyright (C) 2001-2008 OTRS GmbH, http://otrs.org/
# --
# $Id: RuntimeDB.pm,v 1.45.2.1 2008/01/12 14:01:52 martin Exp $
# --
# 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 http://www.gnu.org/licenses/gpl.txt.
# --
package Kernel::System::Ticket::IndexAccelerator::RuntimeDB;
use strict;
use warnings;
use vars qw($VERSION);
$VERSION = '$Revision: 1.45.2.1 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
sub TicketAcceleratorUpdate {
my $Self = shift;
my %Param = @_;
return 1;
}
sub TicketAcceleratorDelete {
my $Self = shift;
my %Param = @_;
return 1;
}
sub TicketAcceleratorAdd {
my $Self = shift;
my %Param = @_;
return 1;
}
sub TicketAcceleratorIndex {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(UserID QueueID ShownQueueIDs)) {
if (!exists($Param{$_})) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# db quote
foreach (qw(UserID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
# get user groups
my $Type = 'rw';
if ($Self->{ConfigObject}->Get('Ticket::QueueViewAllPossibleTickets')) {
$Type = 'ro';
}
my @GroupIDs = $Self->{GroupObject}->GroupMemberList(
UserID => $Param{UserID},
Type => $Type,
Result => 'ID',
Cached => 1,
);
my @QueueIDs = @{$Param{ShownQueueIDs}};
my %Queues = ();
$Queues{MaxAge} = 0;
$Queues{TicketsShown} = 0;
$Queues{TicketsAvail} = 0;
# prepar "All tickets: ??" in Queue
if (@QueueIDs) {
my $SQL = "SELECT count(*) ".
" FROM ".
" ticket st ".
" WHERE ".
" st.ticket_state_id IN ( ${\(join ', ', @{$Self->{ViewableStateIDs}})} ) ".
" AND ".
" st.queue_id IN (";
foreach (0..$#QueueIDs) {
if ($_ > 0) {
$SQL .= ",";
}
$SQL .= $Self->{DBObject}->Quote($QueueIDs[$_]);
}
$SQL .= " )";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
$Queues{AllTickets} = $Row[0];
}
}
# check if user is in min. one group! if not, return here
if (!@GroupIDs) {
my %Hashes;
$Hashes{QueueID} = 0;
$Hashes{Queue} = 'CustomQueue';
$Hashes{MaxAge} = 0;
$Hashes{Count} = 0;
push (@{$Queues{Queues}}, \%Hashes);
return %Queues;
}
# CustomQueue add on
my $SQL = "SELECT count(*) FROM ".
" ticket st, queue sq, personal_queues suq ".
" WHERE ".
" st.ticket_state_id IN ( ${\(join ', ', @{$Self->{ViewableStateIDs}})} ) ".
" AND ".
" st.ticket_lock_id IN ( ${\(join ', ', @{$Self->{ViewableLockIDs}})} ) ".
" AND ".
" st.queue_id = sq.id ".
" AND ".
" suq.queue_id = st.queue_id ".
" AND ".
" sq.group_id IN ( ${\(join ', ', @GroupIDs)} ) ".
" AND ".
# get all custom queues
" suq.user_id = $Param{UserID} ".
#/ get all custom queues /
"";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
my %Hashes;
$Hashes{QueueID} = 0;
$Hashes{Queue} = 'CustomQueue';
$Hashes{MaxAge} = 0;
$Hashes{Count} = $Row[0];
push (@{$Queues{Queues}}, \%Hashes);
# set some things
if ($Param{QueueID} == 0) {
$Queues{TicketsShown} = $Row[0];
$Queues{TicketsAvail} = $Row[0];
}
}
# prepar the tickets in Queue bar (all data only with my/your Permission)
$SQL = "SELECT st.queue_id, sq.name, min(st.create_time_unix), count(*) ".
" FROM " .
" ticket st, queue sq " .
" WHERE " .
" st.ticket_state_id IN ( ${\(join ', ', @{$Self->{ViewableStateIDs}})} ) " .
" AND " .
" st.ticket_lock_id IN ( ${\(join ', ', @{$Self->{ViewableLockIDs}})} ) " .
" AND " .
" st.queue_id = sq.id " .
" AND ".
" sq.group_id IN ( ${\(join ', ', @GroupIDs)} ) ".
" GROUP BY st.queue_id,sq.name " .
" ORDER BY sq.name";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
# store the data into a array
my %Hashes;
$Hashes{QueueID} = $Row[0];
$Hashes{Queue} = $Row[1];
$Hashes{MaxAge} = $Self->{TimeObject}->SystemTime() - $Row[2];
$Hashes{Count} = $Row[3];
push (@{$Queues{Queues}}, \%Hashes);
# set some things
if ($Param{QueueID} eq $Row[0]) {
$Queues{TicketsShown} = $Row[3];
$Queues{TicketsAvail} = $Row[3];
}
# get the oldes queue id
if ($Hashes{MaxAge} > $Queues{MaxAge}) {
$Queues{MaxAge} = $Hashes{MaxAge};
$Queues{QueueIDOfMaxAge} = $Hashes{QueueID};
}
}
return %Queues;
}
sub TicketAcceleratorRebuild {
my $Self = shift;
my %Param = @_;
return 1;
}
sub GetLockedCount {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(UserID)) {
if (!exists($Param{$_})) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# check cache
if ($Self->{'Cache::GetLockCount'.$Param{UserID}}) {
return %{$Self->{'Cache::GetLockCount'.$Param{UserID}}};
}
# db quote
foreach (qw(UserID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
# db query
$Self->{DBObject}
->Prepare( SQL => "SELECT ar.id, ar.article_sender_type_id, ti.id, "
. " ar.create_by, ti.create_time_unix, ti.until_time, "
. " tst.name, ar.article_type_id "
. " FROM "
. " ticket ti, article ar, "
. " ticket_state ts, ticket_state_type tst "
. " WHERE "
. " ti.ticket_lock_id NOT IN ( ${\(join ', ', @{$Self->{ViewableLockIDs}})} ) "
. " AND "
. " ti.user_id = $Param{UserID} AND "
. " ar.ticket_id = ti.id AND "
. " ts.id = ti.ticket_state_id AND "
. " ts.type_id = tst.id "
. " ORDER BY ar.create_time DESC" );
my @ArticleLocked = ();
while ( my @Row = $Self->{DBObject}->FetchrowArray() ) {
push (@ArticleLocked, \@Row);
}
my %TicketIDs = ();
my %Data = (
Reminder => 0,
Pending => 0,
All => 0,
New => 0,
);
# find only new messages
# put all tickets to ToDo where last sender type is customer / system or ! UserID
# and article type is not a email-notification
foreach my $Article (@ArticleLocked) {
my $SenderType = $Self->ArticleSenderTypeLookup( SenderTypeID => $Article->[1]);
my $ArticleType = $Self->ArticleTypeLookup( ArticleTypeID => $Article->[7]);
if ( ! $TicketIDs{ $Article->[2] } ) {
if ( $SenderType eq 'system' && $ArticleType =~ /^email-extern/i ) {
next;
}
if ( ( $Article->[3] ne $Param{UserID}
|| $SenderType eq 'customer' )
&& $ArticleType !~ /^email-notification/i ) {
$Data{'New'}++;
$Data{'NewTicketIDs'}->{$Article->[2]} = 1;
}
}
$TicketIDs{ $Article->[2] } = 1;
}
# find all and reminder tickets
%TicketIDs = ();
foreach my $Article (@ArticleLocked) {
my $SenderType = $Self->ArticleSenderTypeLookup( SenderTypeID => $Article->[1]);
my $ArticleType = $Self->ArticleTypeLookup( ArticleTypeID => $Article->[7]);
if ( ! $TicketIDs{ $Article->[2] } ) {
$Data{'All'}++;
if ( $Article->[5] && $Article->[6] =~ /^pending/i ) {
$Data{'Pending'}++;
$Data{'PendingTicketIDs'}->{$Article->[2]} = 1;
if ( $Article->[6] !~ /^pending auto/i && $Article->[5] <= $Self->{TimeObject}->SystemTime() ) {
$Data{'ReminderTicketIDs'}->{$Article->[2]} = 1;
$Data{'Reminder'}++;
}
}
}
$Data{"MaxAge"} = $Article->[4];
$TicketIDs{ $Article->[2] } = 1;
}
# show just unseen tickets as new
if ( $Self->{ConfigObject}->Get('Ticket::NewMessageMode') eq 'ArticleSeen' ) {
# reset new message count
$Data{'New'} = 0;
$Data{'NewTicketIDs'} = undef;
for my $TicketID ( keys %TicketIDs ) {
my @Index = $Self->ArticleIndex( TicketID => $TicketID );
my %Flag = $Self->ArticleFlagGet(
ArticleID => $Index[-1],
UserID => $Param{UserID},
);
if ( !$Flag{seen} ) {
$Data{'NewTicketIDs'}->{$TicketID} = 1;
$Data{'New'}++;
}
}
}
# cache result
$Self->{ 'Cache::GetLockCount' . $Param{UserID} } = \%Data;
return %Data;
}
sub GetOverTimeTickets {
my $Self = shift;
my %Param = @_;
# get all open rw ticket
my @TicketIDs = ();
my @TicketIDsOverTime = ();
my @ViewableStateIDs = $Self->{StateObject}->StateGetStatesByType(
Type => 'Viewable',
Result => 'ID',
);
my $SQL = "SELECT st.id, st.tn, st.escalation_start_time, st.escalation_response_time, st.escalation_solution_time, ".
"st.ticket_state_id, st.service_id, st.sla_id, st.create_time, st.queue_id, st.ticket_lock_id ".
" FROM ".
" ticket st, queue q ".
" WHERE ".
" st.queue_id = q.id ".
" AND " .
" st.ticket_state_id IN ( ${\(join ', ', @ViewableStateIDs)} ) ";
if ($Self->{UserID} && $Self->{UserID} ne 1) {
my @GroupIDs = $Self->{GroupObject}->GroupMemberList(
UserID => $Self->{UserID},
Type => 'rw',
Result => 'ID',
Cached => 1,
);
$SQL .= " AND q.group_id IN ( ${\(join ', ', @GroupIDs)} )";
# check if user is in min. one group! if not, return here
if (!@GroupIDs) {
return;
}
}
$SQL .= " ORDER BY st.escalation_start_time ASC";
$Self->{DBObject}->Prepare(SQL => $SQL, Limit => 5000);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
my $TicketData = {
TicketID => $Row[0],
TicketNumber => $Row[1],
EscalationStartTime => $Row[2],
EscalationResponseTime => $Row[3],
EscalationSolutionTime => $Row[4],
StateID => $Row[5],
ServiceID => $Row[6],
SLAID => $Row[7],
Created => $Row[8],
QueueID => $Row[9],
LockID => $Row[10],
};
push (@TicketIDs, $TicketData);
}
# get state infos
foreach my $TicketData (@TicketIDs) {
# get state info
my %StateData = $Self->{StateObject}->StateGet(ID => $TicketData->{StateID}, Cache => 1);
$TicketData->{StateType} = $StateData{TypeName};
$TicketData->{State} = $StateData{Name};
$TicketData->{Lock} = $Self->{LockObject}->LockLookup(LockID => $TicketData->{LockID});
}
# get escalations
my $ResponseTime = '';
my $UpdateTime = '';
my $SolutionTime = '';
my $Comment = '';
my $Count = 0;
foreach my $TicketData (@TicketIDs) {
my %Ticket = %{$TicketData};
my $TicketID = $Ticket{TicketID};
# just use the oldest 500 ticktes
if ($Count > 500) {
last;
}
%Ticket = (%Ticket, $Self->TicketEscalationState(
TicketID => $TicketID,
Ticket => $TicketData,
UserID => $Self->{UserID} || 1,
));
# check response time
if (defined($Ticket{'FirstResponseTimeEscalation'})) {
push (@TicketIDsOverTime, $TicketID);
$Count++;
next;
}
# check update time
if (defined($Ticket{'UpdateTimeEscalation'})) {
push (@TicketIDsOverTime, $TicketID);
$Count++;
next;
}
# check solution
if (defined($Ticket{'SolutionTimeEscalation'})) {
push (@TicketIDsOverTime, $TicketID);
$Count++;
next;
}
}
# return overtime tickets
return @TicketIDsOverTime;
}
1;
|