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
|
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# --
# 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 https://www.gnu.org/licenses/gpl-3.0.txt.
# --
package Kernel::System::CloudService::Backend::Run;
use strict;
use warnings;
use Kernel::System::VariableCheck qw(:all);
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::Cache',
'Kernel::System::Encode',
'Kernel::System::JSON',
'Kernel::System::Log',
'Kernel::System::OTRSBusiness',
'Kernel::System::SystemData',
'Kernel::System::WebUserAgent',
);
=head1 NAME
Kernel::System::CloudService::Backend::Run - cloud service lib
=head1 DESCRIPTION
All functions for cloud service communication.
=head1 PUBLIC INTERFACE
=head2 new()
create a CloudService object. Do not use it directly, instead use:
my $CloudServiceObject = $Kernel::OM->Get('Kernel::System::CloudService::Backend::Run');
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
# set system registration data
%{ $Self->{RegistrationData} } =
$Kernel::OM->Get('Kernel::System::SystemData')->SystemDataGroupGet(
Group => 'Registration',
UserID => 1,
);
# set URL for calling cloud services
$Self->{CloudServiceURL} = 'https://cloud.otrs.com/otrs/public.pl';
return $Self;
}
=head2 Request()
perform a cloud service communication and return result data
my $RequestResult = $CloudServiceObject->Request(
OTRSIDAuth => { # will be send encoded as JSON
OTRSID => '',
Password => '',
},
UniqueIDAuth => { # will send encoded as JSON
UniqueID => '',
APIKey => '',
},
RequestData => { # this complex structure will be send encoded as JSON
CloudServiceTest => [
{
InstanceName = 'AnyName', # optional
Operation => "ConfigurationSet",
Data => {
# ... request operation data ...
},
},
{
Operation => "SomeOperation",
Data => {
# ... request operation data ...
},
},
# ... other entries may follow ...
],
FeatureAddonManagement => [
{
Operation => "FAOListAssigned",
Data => {
# ... request operation data ...
},
},
{
InstanceName = 'InstanceNameOne', # optional
Operation => "FAOGet",
Data => {
# ... request operation data ...
},
},
{
InstanceName = 'InstanceNameTwo', # optional
Operation => "FAOGet",
Data => {
# ... request operation data ...
},
},
# ... other entries may follow ...
],
# ... other entries may follow ...
},
Timeout => 15, # optional, timeout
Proxy => 'proxy.example.com', # optional, proxy
);
Returns:
$RequestResult {
Success => 1,
ErrorMessage => '...', # optional
Results => {
CloudServiceTest => [
{
Success => 1, # 1 or 0
ErrorMessage => '...', # optional
InstanceName = 'AnyName', # optional
Operation => "ConfigurationSet",
Data => {
# ... response operation data ..
},
},
{
Success => 0, # 1 or 0
ErrorMessage => '...', # optional
Operation => "SomeOperation",
Data => {
# ... response operation data ...
},
},
],
FeatureAddonManagement => [
{
Success => 1, # 1 or 0
ErrorMessage => '...', # optional
Operation => "FAOListAssigned",
Data => {
# ... response operation data ..
},
},
{
Success => 1, # 1 or 0
ErrorMessage => '...', # optional
InstanceName = 'InstanceNameOne', # optional
Operation => "FaoGet",
Data => {
# ... response operation data ...
},
},
{
Success => 0, # 1 or 0
ErrorMessage => '...', # optional
InstanceName = 'InstanceNameTwo', # optional
Operation => "FaoGet",
Data => {
# ... response operation data ...
},
},
],
},
};
=cut
sub Request {
my ( $Self, %Param ) = @_;
# create config object
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
# If OTRSSTORM package is installed, system is able to do a Cloud request even if CloudService is disabled.
if ( !$Kernel::OM->Get('Kernel::System::OTRSBusiness')->OTRSSTORMIsInstalled() ) {
# check if cloud services are disabled
my $CloudServicesDisabled = $ConfigObject->Get('CloudServices::Disabled');
return if $CloudServicesDisabled;
}
# check needed stuff
if ( !defined $Param{RequestData} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need RequestData!"
);
return;
}
# RequestData might be a hash
if ( !IsHashRefWithData( $Param{RequestData} ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Wrong structure for RequestData, it might be an hash with data!",
);
return;
}
# check in detail each request data
for my $CloudService ( sort keys %{ $Param{RequestData} } ) {
# check if CloudService is defined and not empty
if ( !$CloudService ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "A CloudService name is needed!",
);
return;
}
# check if CloudService is defined and not empty
if ( !IsArrayRefWithData( $Param{RequestData}->{$CloudService} ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "CloudService::$CloudService data structure is not valid!",
);
return;
}
for my $Instance ( @{ $Param{RequestData}->{$CloudService} } ) {
# check if Operation is present
if ( !$Instance->{Operation} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Each operation request needs a Operation name!",
);
return;
}
# if Data is present it might be a hash
if ( $Instance->{Data} && ref $Instance->{Data} ne 'HASH' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Request Data needs to be a hash structure!",
);
return;
}
}
}
# create json object
my $JSONObject = $Kernel::OM->Get('Kernel::System::JSON');
# get UniqueIDAut structure if needed
my $UniqueIDAuth;
if (
defined $Self->{RegistrationData}->{State}
&& $Self->{RegistrationData}->{State} eq 'registered'
)
{
# create cache object
my $CacheObject = $Kernel::OM->Get('Kernel::System::Cache');
# check cache
my $CacheKey = "APIKey::" . ( $Self->{RegistrationData}->{APIKey} || '' )
. "::UniqueID::" . ( $Self->{RegistrationData}->{UniqueID} || '' );
my $CacheContent = $CacheObject->Get(
Type => 'RequestUniqueIDAuth',
Key => $CacheKey,
);
if ( defined $CacheContent ) {
$UniqueIDAuth = $CacheContent;
}
else {
# create JSON string
$UniqueIDAuth = $JSONObject->Encode(
Data => {
APIKey => $Self->{RegistrationData}->{APIKey} || '',
UniqueID => $Self->{RegistrationData}->{UniqueID} || '',
},
);
$CacheObject->Set(
Type => 'RequestUniqueIDAuth',
Key => $CacheKey,
Value => $UniqueIDAuth || '',
TTL => 3 * 24 * 60 * 60,
);
}
}
# get OTRSIDAuth structure if needed
my $OTRSIDAuth = '';
if ( $Param{OTRSID} && $Param{Password} ) {
$OTRSIDAuth = $JSONObject->Encode(
Data => {
OTRSID => $Param{OTRSID},
Password => $Param{Password},
},
);
}
my $RequestTimeout = $Param{Timeout} || $ConfigObject->Get('WebUserAgent::Timeout') || 15;
my $RequestProxy = $Param{Proxy} || $ConfigObject->Get('WebUserAgent::Proxy') || '';
# set timeout setting for packages
if ( grep {/^Package/i} sort keys %{ $Param{RequestData} } ) {
$RequestTimeout = $ConfigObject->Get('Package::Timeout') || 120;
}
# create JSON string
my $RequestData = $JSONObject->Encode(
Data => $Param{RequestData},
);
# add params to webuseragent object
$Kernel::OM->ObjectParamAdd(
'Kernel::System::WebUserAgent' => {
Timeout => $RequestTimeout,
Proxy => $RequestProxy,
},
);
# Perform web service request.
my %Response;
TRY:
for my $Try ( 1 .. 3 ) {
%Response = $Kernel::OM->Get('Kernel::System::WebUserAgent')->Request(
Type => 'POST',
URL => $Self->{CloudServiceURL},
Data => {
Action => 'PublicCloudService',
RequestData => $RequestData,
UniqueIDAuth => $UniqueIDAuth,
OTRSIDAuth => $OTRSIDAuth,
},
);
last TRY if %Response
&& $Response{Status} eq '200 OK'
&& $Response{Content}
&& ref $Response{Content} eq 'SCALAR';
}
# test if the web response was successful
if ( !%Response || $Response{Status} ne '200 OK' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'notice',
Message => "PublicCloudService - Can't connect to server - $Response{Status}",
);
return;
}
# check if we have content as a scalar ref
if ( !$Response{Content} || ref $Response{Content} ne 'SCALAR' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'notice',
Message =>
"PublicCloudService - No content received from public cloud service. Please try again later.'",
);
return;
}
# convert internal used charset
$Kernel::OM->Get('Kernel::System::Encode')->EncodeInput(
$Response{Content},
);
# decode JSON data
my $ResponseData = $JSONObject->Decode(
Data => ${ $Response{Content} },
);
# check response structure
if ( !IsHashRefWithData($ResponseData) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't decode JSON data: 'PublicCloudService'!",
);
return;
}
# check if we have an error
if ( !$ResponseData->{Success} ) {
my $ResponseErrorMessage = $ResponseData->{ErrorMessage} || 'No error message available.';
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'notice',
Message => "PublicCloudService - Error from server: $ResponseErrorMessage !",
);
return;
}
# return data from server if defined
return $ResponseData->{Results} if defined $ResponseData->{Results};
return;
}
=head2 OperationResultGet()
my $OperationResult = $CloudServiceObject->OperationResultGet(
CloudService => 'Test',
Operation => 'test',
InstanceName => 'AnyName', # optional
RequestResult => {
Success => 1,
Results => {
Test => [
{
Success => 1,
InstanceName => 'AnyName',
Operation => 'Test',
Data => {
# ... response operation data ..
},
},
{
Success => 0,
ErrorMessage => 'some message',
Operation => 'SomeOperation',
Data => {
# ... response operation data ...
},
},
],
},
};
);
Returns:
$OperationResult {
Success => 1,
ErrorMessage => 'a message' # optional
InstanceName => 'AnyName',
Operation => "Test",
Data => {
# ... response operation data ..
},
},
=cut
sub OperationResultGet {
my ( $Self, %Param ) = @_;
# check needed
for my $Needed (qw(RequestResult CloudService Operation)) {
if ( !$Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return {
Success => 0,
};
}
}
# check RequestResult internals
if ( !IsHashRefWithData( $Param{RequestResult} ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "The format of the request result is invalid!",
);
return {
Success => 0,
};
}
if ( !$Param{RequestResult}->{ $Param{CloudService} } ) {
my $Message = "No CloudService:'$Param{CloudService}' found in the request result!";
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "$Message",
);
return {
Success => 0,
ErrorMessage => $Message,
};
}
if ( !IsArrayRefWithData( $Param{RequestResult}->{ $Param{CloudService} } ) ) {
my $Message = "Results from CloudService:'$Param{CloudService}' are invalid!";
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "$Message",
);
return {
Success => 0,
ErrorMessage => $Message,
};
}
# create a shortcut for actual cloud-service results
my @CloudServiceResults = @{ $Param{RequestResult}->{ $Param{CloudService} } };
RESULT:
for my $OperationResult (@CloudServiceResults) {
next RESULT if $OperationResult->{Operation} ne $Param{Operation};
if ( !$Param{InstanceName} ) {
next RESULT if defined $OperationResult->{InstanceName};
}
else {
if (
!defined $OperationResult->{InstanceName}
|| $OperationResult->{InstanceName} ne $Param{InstanceName}
)
{
next RESULT;
}
}
return $OperationResult;
}
# if not found return an error
my $Message = "No Results from CloudService:'$Param{CloudService}' Operation:'$Param{Operation}'";
if ( $Param{InstanceName} ) {
$Message .= " InstanceName:'$Param{InstanceName}'!";
}
else {
$Message .= " Without InstanceName!";
}
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => $Message,
);
return {
Success => 0,
Message => "No results found!",
};
}
1;
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<https://otrs.org/>).
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 L<https://www.gnu.org/licenses/gpl-3.0.txt>.
=cut
|