/usr/share/otrs/Kernel/System/AutoResponse.pm is in otrs2 6.0.5-1.
This file is owned by root:root, with mode 0o644.
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 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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | # --
# Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
package Kernel::System::AutoResponse;
use strict;
use warnings;
our @ObjectDependencies = (
'Kernel::System::DB',
'Kernel::System::Log',
'Kernel::System::SystemAddress',
'Kernel::System::Valid',
);
=head1 NAME
Kernel::System::AutoResponse - auto response lib
=head1 DESCRIPTION
All auto response functions. E. g. to add auto response or other functions.
=head1 PUBLIC INTERFACE
=head2 new()
create an object
my $AutoResponseObject = $Kernel::OM->Get('Kernel::System::AutoResponse');
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
return $Self;
}
=head2 AutoResponseAdd()
add auto response with attributes
$AutoResponseObject->AutoResponseAdd(
Name => 'Some::AutoResponse',
ValidID => 1,
Subject => 'Some Subject..',
Response => 'Auto Response Test....',
ContentType => 'text/plain',
AddressID => 1,
TypeID => 1,
UserID => 123,
);
=cut
sub AutoResponseAdd {
my ( $Self, %Param ) = @_;
# check needed stuff
for my $Argument (qw(Name ValidID Response ContentType AddressID TypeID UserID Subject)) {
if ( !$Param{$Argument} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Argument!",
);
return;
}
}
# check if a auto-response with this name already exits
return if !$Self->_NameExistsCheck( Name => $Param{Name} );
# get database object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
# insert into database
return if !$DBObject->Do(
SQL => '
INSERT INTO auto_response
(name, valid_id, comments, text0, text1, type_id, system_address_id,
content_type, create_time, create_by, change_time, change_by)
VALUES
(?, ?, ?, ?, ?, ?, ?, ?, current_timestamp, ?, current_timestamp, ?)',
Bind => [
\$Param{Name}, \$Param{ValidID}, \$Param{Comment}, \$Param{Response},
\$Param{Subject}, \$Param{TypeID}, \$Param{AddressID},
\$Param{ContentType}, \$Param{UserID}, \$Param{UserID},
],
);
# get id
return if !$DBObject->Prepare(
SQL => '
SELECT id
FROM auto_response
WHERE name = ?
AND type_id = ?
AND system_address_id = ?
AND content_type = ?
AND create_by = ?',
Bind => [
\$Param{Name}, \$Param{TypeID}, \$Param{AddressID},
\$Param{ContentType}, \$Param{UserID},
],
Limit => 1,
);
# fetch the result
my $ID;
while ( my @Row = $DBObject->FetchrowArray() ) {
$ID = $Row[0];
}
return $ID;
}
=head2 AutoResponseGet()
get auto response with attributes
my %Data = $AutoResponseObject->AutoResponseGet(
ID => 123,
);
=cut
sub AutoResponseGet {
my ( $Self, %Param ) = @_;
# check needed stuff
if ( !$Param{ID} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need ID!',
);
return;
}
# get database object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
# select
return if !$DBObject->Prepare(
SQL => '
SELECT id, name, valid_id, comments, text0, text1, type_id, system_address_id,
content_type, create_time, create_by, change_time, change_by
FROM auto_response WHERE id = ?',
Bind => [ \$Param{ID} ],
Limit => 1,
);
my %Data;
while ( my @Data = $DBObject->FetchrowArray() ) {
%Data = (
ID => $Data[0],
Name => $Data[1],
ValidID => $Data[2],
Comment => $Data[3],
Response => $Data[4],
Subject => $Data[5],
TypeID => $Data[6],
AddressID => $Data[7],
ContentType => $Data[8] || 'text/plain',
CreateTime => $Data[9],
CreateBy => $Data[10],
ChangeTime => $Data[11],
ChangeBy => $Data[12],
);
}
my %Types = $Self->AutoResponseTypeList();
$Data{Type} = $Types{ $Data{TypeID} };
return %Data;
}
=head2 AutoResponseUpdate()
update auto response with attributes
$AutoResponseObject->AutoResponseUpdate(
ID => 123,
Name => 'Some::AutoResponse',
ValidID => 1,
Subject => 'Some Subject..',
Response => 'Auto Response Test....',
ContentType => 'text/plain',
AddressID => 1,
TypeID => 1,
UserID => 123,
);
=cut
sub AutoResponseUpdate {
my ( $Self, %Param ) = @_;
# check needed stuff
for my $Argument (qw(ID Name ValidID Response AddressID ContentType UserID Subject)) {
if ( !$Param{$Argument} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Argument!",
);
return;
}
}
# check if a auto-response with this name already exits
return if !$Self->_NameExistsCheck(
Name => $Param{Name},
ID => $Param{ID},
);
# update the database
return if !$Kernel::OM->Get('Kernel::System::DB')->Do(
SQL => '
UPDATE auto_response
SET name = ?, text0 = ?, comments = ?, text1 = ?, type_id = ?,
system_address_id = ?, content_type = ?, valid_id = ?,
change_time = current_timestamp, change_by = ?
WHERE id = ?',
Bind => [
\$Param{Name}, \$Param{Response}, \$Param{Comment}, \$Param{Subject}, \$Param{TypeID},
\$Param{AddressID}, \$Param{ContentType}, \$Param{ValidID},
\$Param{UserID}, \$Param{ID},
],
);
return 1;
}
=head2 AutoResponseGetByTypeQueueID()
get a hash with data from Auto Response and it's corresponding System Address
my %QueueAddressData = $AutoResponseObject->AutoResponseGetByTypeQueueID(
QueueID => 3,
Type => 'auto reply/new ticket',
);
Return example:
%QueueAddressData(
#Auto Response Data
'Text' => 'Your OTRS TeamOTRS! answered by a human asap.',
'Subject' => 'New ticket has been created! (RE: <OTRS_CUSTOMER_SUBJECT[24]>)',
'ContentType' => 'text/plain',
'SystemAddressID' => '1',
'AutoResponseID' => '1'
#System Address Data
'ID' => '1',
'Name' => 'otrs@localhost',
'Address' => 'otrs@localhost', #Compatibility with OTRS 2.1
'Realname' => 'OTRS System',
'Comment' => 'Standard Address.',
'ValidID' => '1',
'QueueID' => '1',
'CreateTime' => '2010-03-16 21:24:03',
'ChangeTime' => '2010-03-16 21:24:03',
);
=cut
sub AutoResponseGetByTypeQueueID {
my ( $Self, %Param ) = @_;
# check needed stuff
for my $Argument (qw(QueueID Type)) {
if ( !$Param{$Argument} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Argument!",
);
return;
}
}
# get database object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
# SQL query
return if !$DBObject->Prepare(
SQL => "
SELECT ar.text0, ar.text1, ar.content_type, ar.system_address_id, ar.id
FROM auto_response_type art, auto_response ar, queue_auto_response qar
WHERE ar.valid_id IN ( ${\(join ', ', $Kernel::OM->Get('Kernel::System::Valid')->ValidIDsGet())} )
AND qar.queue_id = ?
AND art.id = ar.type_id
AND qar.auto_response_id = ar.id
AND art.name = ?",
Bind => [
\$Param{QueueID},
\$Param{Type},
],
Limit => 1,
);
# fetch the result
my %Data;
while ( my @Row = $DBObject->FetchrowArray() ) {
$Data{Text} = $Row[0];
$Data{Subject} = $Row[1];
$Data{ContentType} = $Row[2] || 'text/plain';
$Data{SystemAddressID} = $Row[3];
$Data{AutoResponseID} = $Row[4];
}
# return if no auto response is configured
return if !%Data;
# get sender attributes
my %Address = $Kernel::OM->Get('Kernel::System::SystemAddress')->SystemAddressGet(
ID => $Data{SystemAddressID},
);
# COMPAT: 2.1
$Data{Address} = $Address{Name};
# return both, sender attributes and auto response attributes
return ( %Address, %Data );
}
=head2 AutoResponseWithoutQueue()
get a list of the Queues that do not have Auto Response
my %AutoResponseWithoutQueue = $AutoResponseObject->AutoResponseWithoutQueue();
Return example:
%Queues = (
1 => 'Some Name',
2 => 'Some Name',
);
=cut
sub AutoResponseWithoutQueue {
my ( $Self, %Param ) = @_;
# get DB object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
my %QueueData;
# SQL query
return if !$DBObject->Prepare(
SQL =>
'SELECT q.id, q.name
FROM queue q
LEFT OUTER JOIN queue_auto_response qar on q.id = qar.queue_id
WHERE qar.queue_id IS NULL '
. "AND q.valid_id IN (${\(join ', ', $Kernel::OM->Get('Kernel::System::Valid')->ValidIDsGet())})"
);
# fetch the result
while ( my @Row = $DBObject->FetchrowArray() ) {
$QueueData{ $Row[0] } = $Row[1];
}
return %QueueData;
}
=head2 AutoResponseList()
get a list of the Auto Responses
my %AutoResponse = $AutoResponseObject->AutoResponseList(
Valid => 1, # (optional) default 1
TypeID => 1, # (optional) Auto Response type ID
);
Return example:
%AutoResponse = (
'1' => 'default reply (after new ticket has been created)',
'2' => 'default reject (after follow up and rejected of a closed ticket)',
'3' => 'default follow up (after a ticket follow up has been added)',
);
=cut
sub AutoResponseList {
my ( $Self, %Param ) = @_;
# get database object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
my $Valid = $Param{Valid} // 1;
# create sql
my $SQL = "SELECT ar.id, ar.name FROM auto_response ar";
my ( @SQLWhere, @Bind );
if ($Valid) {
push @SQLWhere, "ar.valid_id IN ( ${\(join ', ', $Kernel::OM->Get('Kernel::System::Valid')->ValidIDsGet())} )";
}
# if there is TypeID, select only AutoResponses by that AutoResponse type
if ( defined $Param{TypeID} ) {
push @SQLWhere, "ar.type_id = ?";
push @Bind, \$Param{TypeID};
}
if (@SQLWhere) {
$SQL .= " WHERE " . join( ' AND ', @SQLWhere );
}
# select
return if !$DBObject->Prepare(
SQL => $SQL,
Bind => \@Bind,
);
my %Data;
while ( my @Row = $DBObject->FetchrowArray() ) {
$Data{ $Row[0] } = $Row[1];
}
return %Data;
}
=head2 AutoResponseTypeList()
get a list of the Auto Response Types
my %AutoResponseType = $AutoResponseObject->AutoResponseTypeList(
Valid => 1, # (optional) default 1
);
Return example:
%AutoResponseType = (
'1' => 'auto reply',
'2' => 'auto reject',
'3' => 'auto follow up',
'4' => 'auto reply/new ticket',
'5' => 'auto remove',
);
=cut
sub AutoResponseTypeList {
my ( $Self, %Param ) = @_;
my $Valid = $Param{Valid} // 1;
# get database object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
# create sql
my $SQL = 'SELECT id, name FROM auto_response_type ';
if ($Valid) {
$SQL
.= "WHERE valid_id IN ( ${\(join ', ', $Kernel::OM->Get('Kernel::System::Valid')->ValidIDsGet())} )";
}
# select
return if !$DBObject->Prepare( SQL => $SQL );
my %Data;
while ( my @Row = $DBObject->FetchrowArray() ) {
$Data{ $Row[0] } = $Row[1];
}
return %Data;
}
=head2 AutoResponseQueue()
assigns a list of auto-responses to a queue
my @AutoResponseIDs = (1,2,3);
$AutoResponseObject->AutoResponseQueue (
QueueID => 1,
AutoResponseIDs => \@AutoResponseIDs,
UserID => 1,
);
=cut
sub AutoResponseQueue {
my ( $Self, %Param ) = @_;
# check needed stuff
for my $Argument (qw(QueueID AutoResponseIDs UserID)) {
if ( !$Param{$Argument} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Argument!",
);
return;
}
}
# get database object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
# store queue:auto response relations
return if !$DBObject->Do(
SQL => 'DELETE FROM queue_auto_response WHERE queue_id = ?',
Bind => [ \$Param{QueueID} ],
);
NEWID:
for my $NewID ( @{ $Param{AutoResponseIDs} } ) {
next NEWID if !$NewID;
$DBObject->Do(
SQL => '
INSERT INTO queue_auto_response (queue_id, auto_response_id,
create_time, create_by, change_time, change_by)
VALUES
(?, ?, current_timestamp, ?, current_timestamp, ?)',
Bind => [
\$Param{QueueID},
\$NewID,
\$Param{UserID},
\$Param{UserID},
],
);
}
return 1;
}
=begin Internal:
=head2 _NameExistsCheck()
return if another auto-response with this name already exits
$AutoResponseObject->_NameExistsCheck(
Name => 'Some::AutoResponse',
ID => 1, # optional
);
=cut
sub _NameExistsCheck {
my ( $Self, %Param ) = @_;
# get database object
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
return if !$DBObject->Prepare(
SQL => 'SELECT id FROM auto_response WHERE name = ?',
Bind => [ \$Param{Name} ],
);
# fetch the result
my $Flag;
while ( my @Row = $DBObject->FetchrowArray() ) {
if ( !$Param{ID} || $Param{ID} ne $Row[0] ) {
$Flag = 1;
}
}
if ($Flag) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "An auto-response with the name '$Param{Name}' already exists.",
);
return;
}
return 1;
}
=end Internal:
=cut
1;
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<http://otrs.org/>).
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (AGPL). If you
did not receive this file, see L<http://www.gnu.org/licenses/agpl.txt>.
=cut
|