/usr/share/otrs/Kernel/System/CustomerCompany.pm is in otrs2 5.0.7-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 | # --
# Copyright (C) 2001-2016 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::CustomerCompany;
use strict;
use warnings;
use base qw(Kernel::System::EventHandler);
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::Log',
'Kernel::System::Main',
);
=head1 NAME
Kernel::System::CustomerCompany - customer company lib
=head1 SYNOPSIS
All Customer functions. E.g. to add and update customer companies.
=head1 PUBLIC INTERFACE
=over 4
=cut
=item new()
create an object. Do not use it directly, instead use:
use Kernel::System::ObjectManager;
local $Kernel::OM = Kernel::System::ObjectManager->new();
my $CustomerCompanyObject = $Kernel::OM->Get('Kernel::System::CustomerCompany');
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
# get needed objects
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
my $MainObject = $Kernel::OM->Get('Kernel::System::Main');
# load customer company backend modules
SOURCE:
for my $Count ( '', 1 .. 10 ) {
next SOURCE if !$ConfigObject->Get("CustomerCompany$Count");
my $GenericModule = $ConfigObject->Get("CustomerCompany$Count")->{Module}
|| 'Kernel::System::CustomerCompany::DB';
if ( !$MainObject->Require($GenericModule) ) {
$MainObject->Die("Can't load backend module $GenericModule! $@");
}
$Self->{"CustomerCompany$Count"} = $GenericModule->new(
Count => $Count,
CustomerCompanyMap => $ConfigObject->Get("CustomerCompany$Count"),
);
}
# init of event handler
$Self->EventHandlerInit(
Config => 'CustomerCompany::EventModulePost',
);
return $Self;
}
=item CustomerCompanyAdd()
add a new customer company
my $ID = $CustomerCompanyObject->CustomerCompanyAdd(
CustomerID => 'example.com',
CustomerCompanyName => 'New Customer Inc.',
CustomerCompanyStreet => '5201 Blue Lagoon Drive',
CustomerCompanyZIP => '33126',
CustomerCompanyCity => 'Miami',
CustomerCompanyCountry => 'USA',
CustomerCompanyURL => 'http://www.example.org',
CustomerCompanyComment => 'some comment',
ValidID => 1,
UserID => 123,
);
NOTE: Actual fields accepted by this API call may differ based on
CustomerCompany mapping in your system configuration.
=cut
sub CustomerCompanyAdd {
my ( $Self, %Param ) = @_;
# check data source
if ( !$Param{Source} ) {
$Param{Source} = 'CustomerCompany';
}
# check needed stuff
for (qw(CustomerID UserID)) {
if ( !$Param{$_} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $_!"
);
return;
}
}
my $Result = $Self->{ $Param{Source} }->CustomerCompanyAdd(%Param);
return if !$Result;
# trigger event
$Self->EventHandler(
Event => 'CustomerCompanyAdd',
Data => {
CustomerID => $Param{CustomerID},
NewData => \%Param,
},
UserID => $Param{UserID},
);
return $Result;
}
=item CustomerCompanyGet()
get customer company attributes
my %CustomerCompany = $CustomerCompanyObject->CustomerCompanyGet(
CustomerID => 123,
);
Returns:
%CustomerCompany = (
'CustomerCompanyName' => 'Customer Inc.',
'CustomerID' => 'example.com',
'CustomerCompanyStreet' => '5201 Blue Lagoon Drive',
'CustomerCompanyZIP' => '33126',
'CustomerCompanyCity' => 'Miami',
'CustomerCompanyCountry' => 'United States',
'CustomerCompanyURL' => 'http://example.com',
'CustomerCompanyComment' => 'Some Comments',
'ValidID' => '1',
'CreateTime' => '2010-10-04 16:35:49',
'ChangeTime' => '2010-10-04 16:36:12',
);
NOTE: Actual fields returned by this API call may differ based on
CustomerCompany mapping in your system configuration.
=cut
sub CustomerCompanyGet {
my ( $Self, %Param ) = @_;
# check needed stuff
if ( !$Param{CustomerID} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need CustomerID!"
);
return;
}
# get config object
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
SOURCE:
for my $Count ( '', 1 .. 10 ) {
next SOURCE if !$Self->{"CustomerCompany$Count"};
my %Company = $Self->{"CustomerCompany$Count"}->CustomerCompanyGet( %Param, );
next SOURCE if !%Company;
# return company data
return (
%Company,
Source => "CustomerCompany$Count",
Config => $ConfigObject->Get("CustomerCompany$Count"),
);
}
return;
}
=item CustomerCompanyUpdate()
update customer company attributes
$CustomerCompanyObject->CustomerCompanyUpdate(
CustomerCompanyID => 'oldexample.com', # required for CustomerCompanyID-update
CustomerID => 'example.com',
CustomerCompanyName => 'New Customer Inc.',
CustomerCompanyStreet => '5201 Blue Lagoon Drive',
CustomerCompanyZIP => '33126',
CustomerCompanyLocation => 'Miami',
CustomerCompanyCountry => 'USA',
CustomerCompanyURL => 'http://example.com',
CustomerCompanyComment => 'some comment',
ValidID => 1,
UserID => 123,
);
=cut
sub CustomerCompanyUpdate {
my ( $Self, %Param ) = @_;
$Param{CustomerCompanyID} ||= $Param{CustomerID};
# check needed stuff
if ( !$Param{CustomerCompanyID} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need CustomerCompanyID or CustomerID!"
);
return;
}
# check if company exists
my %Company = $Self->CustomerCompanyGet( CustomerID => $Param{CustomerCompanyID} );
if ( !%Company ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "No such company '$Param{CustomerCompanyID}'!",
);
return;
}
my $Result = $Self->{ $Company{Source} }->CustomerCompanyUpdate(%Param);
return if !$Result;
# trigger event
$Self->EventHandler(
Event => 'CustomerCompanyUpdate',
Data => {
CustomerID => $Param{CustomerID},
OldCustomerID => $Param{CustomerCompanyID},
NewData => \%Param,
OldData => \%Company,
},
UserID => $Param{UserID},
);
return $Result;
}
=item CustomerCompanySourceList()
return customer company source list
my %List = $CustomerCompanyObject->CustomerCompanySourceList(
ReadOnly => 0 # optional, 1 returns only RO backends, 0 returns writable, if not passed returns all backends
);
=cut
sub CustomerCompanySourceList {
my ( $Self, %Param ) = @_;
# get config object
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
my %Data;
SOURCE:
for my $Count ( '', 1 .. 10 ) {
next SOURCE if !$ConfigObject->Get("CustomerCompany$Count");
if ( defined $Param{ReadOnly} ) {
my $BackendConfig = $ConfigObject->Get("CustomerCompany$Count");
if ( $Param{ReadOnly} ) {
next SOURCE if !$BackendConfig->{ReadOnly};
}
else {
next SOURCE if $BackendConfig->{ReadOnly};
}
}
$Data{"CustomerCompany$Count"} = $ConfigObject->Get("CustomerCompany$Count")->{Name}
|| "No Name $Count";
}
return %Data;
}
=item CustomerCompanyList()
get list of customer companies.
my %List = $CustomerCompanyObject->CustomerCompanyList();
my %List = $CustomerCompanyObject->CustomerCompanyList(
Valid => 0,
Limit => 0, # optional, override configured search result limit (0 means unlimited)
);
my %List = $CustomerCompanyObject->CustomerCompanyList(
Search => 'somecompany',
);
Returns:
%List = {
'example.com' => 'example.com Customer Inc.',
'acme.com' => 'acme.com Acme, Inc.'
};
=cut
sub CustomerCompanyList {
my ( $Self, %Param ) = @_;
my %Data;
SOURCE:
for my $Count ( '', 1 .. 10 ) {
next SOURCE if !$Self->{"CustomerCompany$Count"};
# get comppany list result of backend and merge it
my %SubData = $Self->{"CustomerCompany$Count"}->CustomerCompanyList(%Param);
%Data = ( %Data, %SubData );
}
return %Data;
}
sub DESTROY {
my $Self = shift;
# execute all transaction events
$Self->EventHandlerTransaction();
return 1;
}
1;
=back
=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
|