/usr/share/otrs/Kernel/Modules/AgentCustomerSearch.pm is in otrs2 3.3.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 | # --
# Kernel/Modules/AgentCustomerSearch.pm - a module used for the autocomplete feature
# Copyright (C) 2001-2014 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::Modules::AgentCustomerSearch;
## nofilter(TidyAll::Plugin::OTRS::Perl::DBObject)
use strict;
use warnings;
use Kernel::System::CustomerUser;
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {%Param};
bless( $Self, $Type );
# check all needed objects
for (qw(ParamObject DBObject TicketObject LayoutObject ConfigObject LogObject)) {
if ( !$Self->{$_} ) {
$Self->{LayoutObject}->FatalError( Message => "Got no $_!" );
}
}
# create needed objects
$Self->{CustomerUserObject} = Kernel::System::CustomerUser->new(%Param);
# get config
$Self->{Config} = $Self->{ConfigObject}->Get("Ticket::Frontend::$Self->{Action}");
return $Self;
}
sub Run {
my ( $Self, %Param ) = @_;
my $JSON = '';
# search customers
if ( !$Self->{Subaction} ) {
# get needed params
my $Search = $Self->{ParamObject}->GetParam( Param => 'Term' ) || '';
my $MaxResults = int( $Self->{ParamObject}->GetParam( Param => 'MaxResults' ) || 20 );
# workaround, all auto completion requests get posted by utf8 anyway
# convert any to 8bit string if application is not running in utf8
if ( !$Self->{EncodeObject}->EncodeInternalUsed() ) {
$Search = $Self->{EncodeObject}->Convert(
Text => $Search,
From => 'utf-8',
To => $Self->{LayoutObject}->{UserCharset},
);
}
# get customer list
my %CustomerUserList = $Self->{CustomerUserObject}->CustomerSearch(
Search => $Search,
);
# build data
my @Data;
my $MaxResultCount = $MaxResults;
CUSTOMERUSERID:
for my $CustomerUserID (
sort { $CustomerUserList{$a} cmp $CustomerUserList{$b} }
keys %CustomerUserList
)
{
push @Data, {
CustomerKey => $CustomerUserID,
CustomerValue => $CustomerUserList{$CustomerUserID},
};
$MaxResultCount--;
last CUSTOMERUSERID if $MaxResultCount <= 0;
}
# build JSON output
$JSON = $Self->{LayoutObject}->JSONEncode(
Data => \@Data,
);
}
# get customer info
elsif ( $Self->{Subaction} eq 'CustomerInfo' ) {
# get params
my $CustomerUserID = $Self->{ParamObject}->GetParam( Param => 'CustomerUserID' ) || '';
my $CustomerID = '';
my $CustomerTableHTMLString = '';
# get customer data
my %CustomerData = $Self->{CustomerUserObject}->CustomerUserDataGet(
User => $CustomerUserID,
);
# get customer id
if ( $CustomerData{UserCustomerID} ) {
$CustomerID = $CustomerData{UserCustomerID};
}
# build html for customer info table
if ( $Self->{ConfigObject}->Get('Ticket::Frontend::CustomerInfoCompose') ) {
$CustomerTableHTMLString = $Self->{LayoutObject}->AgentCustomerViewTable(
Data => {%CustomerData},
Max => $Self->{ConfigObject}->Get('Ticket::Frontend::CustomerInfoComposeMaxSize'),
);
}
# build JSON output
$JSON = $Self->{LayoutObject}->JSONEncode(
Data => {
CustomerID => $CustomerID,
CustomerTableHTMLString => $CustomerTableHTMLString,
},
);
}
# get customer tickets
elsif ( $Self->{Subaction} eq 'CustomerTickets' ) {
# get params
my $CustomerUserID = $Self->{ParamObject}->GetParam( Param => 'CustomerUserID' ) || '';
my $CustomerID = $Self->{ParamObject}->GetParam( Param => 'CustomerID' ) || '';
# get secondary customer ids
my @CustomerIDs;
if ($CustomerUserID) {
@CustomerIDs = $Self->{CustomerUserObject}->CustomerIDs(
User => $CustomerUserID,
);
}
# add own customer id
if ($CustomerID) {
push @CustomerIDs, $CustomerID;
}
my $View = $Self->{ParamObject}->GetParam( Param => 'View' ) || '';
my $SortBy = $Self->{ParamObject}->GetParam( Param => 'SortBy' ) || 'Age';
my $OrderBy = $Self->{ParamObject}->GetParam( Param => 'OrderBy' ) || 'Down';
my @ViewableTickets;
if (@CustomerIDs) {
my @CustomerIDsEscaped;
for my $CustomerID (@CustomerIDs) {
push @CustomerIDsEscaped,
$Self->{DBObject}->QueryStringEscape( QueryString => $CustomerID );
}
@ViewableTickets = $Self->{TicketObject}->TicketSearch(
Result => 'ARRAY',
Limit => 250,
SortBy => [$SortBy],
OrderBy => [$OrderBy],
CustomerID => \@CustomerIDsEscaped,
UserID => $Self->{UserID},
Permission => 'ro',
);
}
my $LinkSort = 'Subaction=' . $Self->{Subaction}
. ';View=' . $Self->{LayoutObject}->Ascii2Html( Text => $View )
. ';CustomerUserID=' . $Self->{LayoutObject}->Ascii2Html( Text => $CustomerUserID )
. ';CustomerID=' . $Self->{LayoutObject}->Ascii2Html( Text => $CustomerID )
. '&';
my $LinkPage = 'Subaction=' . $Self->{Subaction}
. ';View=' . $Self->{LayoutObject}->Ascii2Html( Text => $View )
. ';SortBy=' . $Self->{LayoutObject}->Ascii2Html( Text => $SortBy )
. ';OrderBy=' . $Self->{LayoutObject}->Ascii2Html( Text => $OrderBy )
. ';CustomerUserID=' . $Self->{LayoutObject}->Ascii2Html( Text => $CustomerUserID )
. ';CustomerID=' . $Self->{LayoutObject}->Ascii2Html( Text => $CustomerID )
. '&';
my $LinkFilter = 'Subaction=' . $Self->{Subaction}
. ';CustomerUserID=' . $Self->{LayoutObject}->Ascii2Html( Text => $CustomerUserID )
. ';CustomerID=' . $Self->{LayoutObject}->Ascii2Html( Text => $CustomerID )
. '&';
my $CustomerTicketsHTMLString = '';
if (@ViewableTickets) {
$CustomerTicketsHTMLString .= $Self->{LayoutObject}->TicketListShow(
TicketIDs => \@ViewableTickets,
Total => scalar @ViewableTickets,
Env => $Self,
View => $View,
TitleName => 'Customer history',
LinkPage => $LinkPage,
LinkSort => $LinkSort,
LinkFilter => $LinkFilter,
Output => 'raw',
OrderBy => $OrderBy,
SortBy => $SortBy,
AJAX => 1,
);
}
# build JSON output
$JSON = $Self->{LayoutObject}->JSONEncode(
Data => {
CustomerTicketsHTMLString => $CustomerTicketsHTMLString,
},
);
}
# send JSON response
return $Self->{LayoutObject}->Attachment(
ContentType => 'application/json; charset=' . $Self->{LayoutObject}->{Charset},
Content => $JSON || '',
Type => 'inline',
NoCache => 1,
);
}
1;
|