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 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
|
# --
# 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::GenericInterface::Transport::HTTP::REST;
use strict;
use warnings;
use HTTP::Status;
use MIME::Base64;
use REST::Client;
use URI::Escape;
use Kernel::Config;
use Kernel::System::VariableCheck qw(:all);
our $ObjectManagerDisabled = 1;
=head1 NAME
Kernel::GenericInterface::Transport::HTTP::REST - GenericInterface network transport interface for HTTP::REST
=head1 PUBLIC INTERFACE
=head2 new()
usually, you want to create an instance of this
by using Kernel::GenericInterface::Transport->new();
=cut
sub new {
my ( $Type, %Param ) = @_;
# Allocate new hash for object.
my $Self = {};
bless( $Self, $Type );
for my $Needed (qw(DebuggerObject TransportConfig)) {
$Self->{$Needed} = $Param{$Needed} || die "Got no $Needed!";
}
return $Self;
}
=head2 ProviderProcessRequest()
Process an incoming web service request. This function has to read the request data
from from the web server process.
Based on the request the Operation to be used is determined.
No out-bound communication is done here, except from continue requests.
In case of an error, the resulting http error code and message are remembered for the response.
my $Result = $TransportObject->ProviderProcessRequest();
$Result = {
Success => 1, # 0 or 1
ErrorMessage => '', # in case of error
Operation => 'DesiredOperation', # name of the operation to perform
Data => { # data payload of request
...
},
};
=cut
sub ProviderProcessRequest {
my ( $Self, %Param ) = @_;
# Check transport config.
if ( !IsHashRefWithData( $Self->{TransportConfig} ) ) {
return $Self->_Error(
Summary => 'REST Transport: Have no TransportConfig',
HTTPError => 500,
);
}
if ( !IsHashRefWithData( $Self->{TransportConfig}->{Config} ) ) {
return $Self->_Error(
Summary => 'Rest Transport: Have no Config',
HTTPError => 500,
);
}
my $Config = $Self->{TransportConfig}->{Config};
$Self->{KeepAlive} = $Config->{KeepAlive} || 0;
if ( !IsHashRefWithData( $Config->{RouteOperationMapping} ) ) {
return $Self->_Error(
Summary => "HTTP::REST Can't find RouteOperationMapping in Config",
HTTPError => 500,
);
}
my $EncodeObject = $Kernel::OM->Get('Kernel::System::Encode');
my $Operation;
my %URIData;
my $RequestURI = $ENV{REQUEST_URI} || $ENV{PATH_INFO};
$RequestURI =~ s{.*Webservice(?:ID)?\/[^\/]+(\/.*)$}{$1}xms;
# Remove any query parameter from the URL
# e.g. from /Ticket/1/2?UserLogin=user&Password=secret
# to /Ticket/1/2?.
$RequestURI =~ s{([^?]+)(.+)?}{$1};
# Remember the query parameters e.g. ?UserLogin=user&Password=secret.
my $QueryParamsStr = $2 || '';
my %QueryParams;
if ($QueryParamsStr) {
# Remove question mark '?' in the beginning.
substr $QueryParamsStr, 0, 1, '';
# Convert query parameters into a hash
# e.g. from UserLogin=user&Password=secret
# to (
# UserLogin => 'user',
# Password => 'secret',
# );
for my $QueryParam ( split /[;&]/, $QueryParamsStr ) {
my ( $Key, $Value ) = split '=', $QueryParam;
# Convert + characters to its encoded representation, see bug#11917.
$Value =~ s{\+}{%20}g;
# Unescape URI strings in query parameters.
$Key = URI::Escape::uri_unescape($Key);
$Value = URI::Escape::uri_unescape($Value);
# Encode variables.
$EncodeObject->EncodeInput( \$Key );
$EncodeObject->EncodeInput( \$Value );
if ( !defined $QueryParams{$Key} ) {
$QueryParams{$Key} = $Value || '';
}
# Elements specified multiple times will be added as array reference.
elsif ( ref $QueryParams{$Key} eq '' ) {
$QueryParams{$Key} = [ $QueryParams{$Key}, $Value ];
}
else {
push @{ $QueryParams{$Key} }, $Value;
}
}
}
my $RequestMethod = $ENV{'REQUEST_METHOD'} || 'GET';
ROUTE:
for my $CurrentOperation ( sort keys %{ $Config->{RouteOperationMapping} } ) {
next ROUTE if !IsHashRefWithData( $Config->{RouteOperationMapping}->{$CurrentOperation} );
my %RouteMapping = %{ $Config->{RouteOperationMapping}->{$CurrentOperation} };
if ( IsArrayRefWithData( $RouteMapping{RequestMethod} ) ) {
next ROUTE if !grep { $RequestMethod eq $_ } @{ $RouteMapping{RequestMethod} };
}
# Convert the configured route with the help of extended regexp patterns
# to a regexp. This generated regexp is used to:
# 1.) Determine the Operation for the request
# 2.) Extract additional parameters from the RequestURI
# For further information: http://perldoc.perl.org/perlre.html#Extended-Patterns
#
# For example, from the RequestURI: /Ticket/1/2
# and the route setting: /Ticket/:TicketID/:Other
# %URIData will then contain:
# (
# TicketID => 1,
# Other => 2,
# );
my $RouteRegEx = $RouteMapping{Route};
$RouteRegEx =~ s{:([^\/]+)}{(?<$1>[^\/]+)}xmsg;
next ROUTE if !( $RequestURI =~ m{^ $RouteRegEx $}xms );
# Import URI params.
for my $URIKey ( sort keys %+ ) {
my $URIValue = $+{$URIKey};
# Unescape value
$URIValue = URI::Escape::uri_unescape($URIValue);
# Encode value.
$EncodeObject->EncodeInput( \$URIValue );
# Add to URI data.
$URIData{$URIKey} = $URIValue;
}
$Operation = $CurrentOperation;
# Leave with the first matching regexp.
last ROUTE;
}
# Combine query params with URIData params, URIData has more precedence.
if (%QueryParams) {
%URIData = ( %QueryParams, %URIData, );
}
if ( !$Operation ) {
return $Self->_Error(
Summary => "HTTP::REST Error while determine Operation for request URI '$RequestURI'.",
HTTPError => 500,
);
}
my $Length = $ENV{'CONTENT_LENGTH'};
# No length provided, return the information we have.
# Also return for 'GET' method because it does not allow sending an entity-body in requests.
# For more information, see https://bugs.otrs.org/show_bug.cgi?id=14203.
if ( !$Length || $RequestMethod eq 'GET' ) {
return {
Success => 1,
Operation => $Operation,
Data => {
%URIData,
RequestMethod => $RequestMethod,
},
};
}
# Request bigger than allowed.
if ( IsInteger( $Config->{MaxLength} ) && $Length > $Config->{MaxLength} ) {
return $Self->_Error(
Summary => HTTP::Status::status_message(413),
HTTPError => 413,
);
}
# Read request.
my $Content;
read STDIN, $Content, $Length;
# If there is no STDIN data it might be caused by fastcgi already having read the request.
# In this case we need to get the data from CGI.
if ( !IsStringWithData($Content) && $RequestMethod ne 'GET' ) {
my $ParamName = $RequestMethod . 'DATA';
$Content = $Kernel::OM->Get('Kernel::System::Web::Request')->GetParam(
Param => $ParamName,
);
}
# Check if we have content.
if ( !IsStringWithData($Content) ) {
return $Self->_Error(
Summary => 'Could not read input data',
HTTPError => 500,
);
}
# Convert char-set if necessary.
my $ContentCharset;
if ( $ENV{'CONTENT_TYPE'} =~ m{ \A .* charset= ["']? ( [^"']+ ) ["']? \z }xmsi ) {
$ContentCharset = $1;
}
if ( $ContentCharset && $ContentCharset !~ m{ \A utf [-]? 8 \z }xmsi ) {
$Content = $EncodeObject->Convert2CharsetInternal(
Text => $Content,
From => $ContentCharset,
);
}
else {
$EncodeObject->EncodeInput( \$Content );
}
# Send received data to debugger.
$Self->{DebuggerObject}->Debug(
Summary => 'Received data by provider from remote system',
Data => $Content,
);
my $ContentDecoded = $Kernel::OM->Get('Kernel::System::JSON')->Decode(
Data => $Content,
);
if ( !$ContentDecoded ) {
return $Self->_Error(
Summary => 'Error while decoding request content.',
HTTPError => 500,
);
}
my $ReturnData;
if ( IsHashRefWithData($ContentDecoded) ) {
$ReturnData = $ContentDecoded;
@{$ReturnData}{ keys %URIData } = values %URIData;
}
elsif ( IsArrayRefWithData($ContentDecoded) ) {
ELEMENT:
for my $CurrentElement ( @{$ContentDecoded} ) {
if ( IsHashRefWithData($CurrentElement) ) {
@{$CurrentElement}{ keys %URIData } = values %URIData;
}
push @{$ReturnData}, $CurrentElement;
}
}
else {
return $Self->_Error(
Summary => 'Unsupported request content structure.',
HTTPError => 500,
);
}
# All OK - return data
return {
Success => 1,
Operation => $Operation,
Data => $ReturnData,
};
}
=head2 ProviderGenerateResponse()
Generates response for an incoming web service request.
In case of an error, error code and message are taken from environment
(previously set on request processing).
The HTTP code is set accordingly
- C<200> for (syntactically) correct messages
- C<4xx> for http errors
- C<500> for content syntax errors
my $Result = $TransportObject->ProviderGenerateResponse(
Success => 1
Data => { # data payload for response, optional
...
},
);
$Result = {
Success => 1, # 0 or 1
ErrorMessage => '', # in case of error
};
=cut
sub ProviderGenerateResponse {
my ( $Self, %Param ) = @_;
# Do we have a http error message to return.
if ( IsStringWithData( $Self->{HTTPError} ) && IsStringWithData( $Self->{HTTPMessage} ) ) {
return $Self->_Output(
HTTPCode => $Self->{HTTPError},
Content => $Self->{HTTPMessage},
);
}
# Check data param.
if ( defined $Param{Data} && ref $Param{Data} ne 'HASH' ) {
return $Self->_Output(
HTTPCode => 500,
Content => 'Invalid data',
);
}
# Check success param.
my $HTTPCode = 200;
if ( !$Param{Success} ) {
# Create Fault structure.
my $FaultString = $Param{ErrorMessage} || 'Unknown';
$Param{Data} = {
faultcode => 'Server',
faultstring => $FaultString,
};
# Override HTTPCode to 500.
$HTTPCode = 500;
}
# Orepare data.
my $JSONString = $Kernel::OM->Get('Kernel::System::JSON')->Encode(
Data => $Param{Data},
);
if ( !$JSONString ) {
return $Self->_Output(
HTTPCode => 500,
Content => 'Error while encoding return JSON structure.',
);
}
# No error - return output.
return $Self->_Output(
HTTPCode => $HTTPCode,
Content => $JSONString,
);
}
=head2 RequesterPerformRequest()
Prepare data payload as XML structure, generate an outgoing web service request,
receive the response and return its data.
my $Result = $TransportObject->RequesterPerformRequest(
Operation => 'remote_op', # name of remote operation to perform
Data => { # data payload for request
...
},
);
$Result = {
Success => 1, # 0 or 1
ErrorMessage => '', # in case of error
Data => {
...
},
};
=cut
sub RequesterPerformRequest {
my ( $Self, %Param ) = @_;
# Check transport config.
if ( !IsHashRefWithData( $Self->{TransportConfig} ) ) {
return {
Success => 0,
ErrorMessage => 'REST Transport: Have no TransportConfig',
};
}
if ( !IsHashRefWithData( $Self->{TransportConfig}->{Config} ) ) {
return {
Success => 0,
ErrorMessage => 'REST Transport: Have no Config',
};
}
my $Config = $Self->{TransportConfig}->{Config};
NEEDED:
for my $Needed (qw(Host DefaultCommand Timeout)) {
next NEEDED if IsStringWithData( $Config->{$Needed} );
return {
Success => 0,
ErrorMessage => "REST Transport: Have no $Needed in config",
};
}
# Check data param.
if ( defined $Param{Data} && ref $Param{Data} ne 'HASH' ) {
return {
Success => 0,
ErrorMessage => 'REST Transport: Invalid Data',
};
}
# Check operation param.
if ( !IsStringWithData( $Param{Operation} ) ) {
return {
Success => 0,
ErrorMessage => 'REST Transport: Need Operation',
};
}
# Create header container and add proper content type
my $Headers = { 'Content-Type' => 'application/json; charset=UTF-8' };
# set up a REST session
my $RestClient = REST::Client->new(
{
host => $Config->{Host},
timeout => $Config->{Timeout},
}
);
if ( !$RestClient ) {
my $ErrorMessage = "Error while creating REST client from 'REST::Client'.";
# Log to debugger.
$Self->{DebuggerObject}->Error(
Summary => $ErrorMessage,
);
return {
Success => 0,
ErrorMessage => $ErrorMessage,
};
}
# Add SSL options if configured.
my %SSLOptions;
if (
IsHashRefWithData( $Config->{SSL} )
&& IsStringWithData( $Config->{SSL}->{UseSSL} )
&& $Config->{SSL}->{UseSSL} eq 'Yes'
)
{
my %SSLOptionsMap = (
SSLCertificate => 'SSL_cert_file',
SSLKey => 'SSL_key_file',
SSLPassword => 'SSL_passwd_cb',
SSLCAFile => 'SSL_ca_file',
SSLCADir => 'SSL_ca_path',
);
SSLOPTION:
for my $SSLOption ( sort keys %SSLOptionsMap ) {
next SSLOPTION if !IsStringWithData( $Config->{SSL}->{$SSLOption} );
if ( $SSLOption ne 'SSLPassword' ) {
$RestClient->getUseragent()->ssl_opts(
$SSLOptionsMap{$SSLOption} => $Config->{SSL}->{$SSLOption},
);
next SSLOPTION;
}
# Passwords needs a special treatment.
$RestClient->getUseragent()->ssl_opts(
$SSLOptionsMap{$SSLOption} => sub { $Config->{SSL}->{$SSLOption} },
);
}
}
# Add proxy options if configured.
if (
IsHashRefWithData( $Config->{Proxy} )
&& IsStringWithData( $Config->{Proxy}->{UseProxy} )
&& $Config->{Proxy}->{UseProxy} eq 'Yes'
)
{
# Explicitly use no proxy (even if configured system wide).
if (
IsStringWithData( $Config->{Proxy}->{ProxyExclude} )
&& $Config->{Proxy}->{ProxyExclude} eq 'Yes'
)
{
$RestClient->getUseragent()->no_proxy();
}
# Use proxy.
elsif ( IsStringWithData( $Config->{Proxy}->{ProxyHost} ) ) {
# Set host.
$RestClient->getUseragent()->proxy(
[ 'http', 'https', ],
$Config->{Proxy}->{ProxyHost},
);
# Add proxy authentication.
if (
IsStringWithData( $Config->{Proxy}->{ProxyUser} )
&& IsStringWithData( $Config->{Proxy}->{ProxyPassword} )
)
{
$Headers->{'Proxy-Authorization'} = 'Basic ' . encode_base64(
$Config->{Proxy}->{ProxyUser} . ':' . $Config->{Proxy}->{ProxyPassword}
);
}
}
}
# Add authentication options if configured (hard wired to basic authentication at the moment).
if (
IsHashRefWithData( $Config->{Authentication} )
&& IsStringWithData( $Config->{Authentication}->{AuthType} )
&& $Config->{Authentication}->{AuthType} eq 'BasicAuth'
&& IsStringWithData( $Config->{Authentication}->{BasicAuthUser} )
&& IsStringWithData( $Config->{Authentication}->{BasicAuthPassword} )
)
{
$Headers->{Authorization} = 'Basic ' . encode_base64(
$Config->{Authentication}->{BasicAuthUser} . ':' . $Config->{Authentication}->{BasicAuthPassword}
);
}
my $RestCommand = $Config->{DefaultCommand};
if ( IsStringWithData( $Config->{InvokerControllerMapping}->{ $Param{Operation} }->{Command} ) )
{
$RestCommand = $Config->{InvokerControllerMapping}->{ $Param{Operation} }->{Command};
}
$RestCommand = uc $RestCommand;
if ( !grep { $_ eq $RestCommand } qw(GET POST PUT PATCH DELETE HEAD OPTIONS CONNECT TRACE) ) {
my $ErrorMessage = "'$RestCommand' is not a valid REST command.";
# Log to debugger.
$Self->{DebuggerObject}->Error(
Summary => $ErrorMessage,
);
return {
Success => 0,
ErrorMessage => $ErrorMessage,
};
}
if (
!IsHashRefWithData( $Config->{InvokerControllerMapping} )
|| !IsHashRefWithData( $Config->{InvokerControllerMapping}->{ $Param{Operation} } )
|| !IsStringWithData(
$Config->{InvokerControllerMapping}->{ $Param{Operation} }->{Controller}
)
)
{
my $ErrorMessage = "REST Transport: Have no Invoker <-> Controller mapping for Invoker '$Param{Operation}'.";
# Log to debugger.
$Self->{DebuggerObject}->Error(
Summary => $ErrorMessage,
);
return {
Success => 0,
ErrorMessage => $ErrorMessage,
};
}
my @RequestParam;
my $Controller = $Config->{InvokerControllerMapping}->{ $Param{Operation} }->{Controller};
# Remove any query parameters that might be in the config,
# For example, from the controller: /Ticket/:TicketID/?:UserLogin&:Password
# controller must remain /Ticket/:TicketID/
$Controller =~ s{([^?]+)(.+)?}{$1};
# Remember the query parameters e.g. ?:UserLogin&:Password.
my $QueryParamsStr = $2 || '';
my @ParamsToDelete;
# Replace any URI params with their actual value.
# for example: from /Ticket/:TicketID/:Other
# to /Ticket/1/2 (considering that $Param{Data} contains TicketID = 1 and Other = 2).
for my $ParamName ( sort keys %{ $Param{Data} } ) {
if ( $Controller =~ m{:$ParamName(?=/|\?|$)}msx ) {
my $ParamValue = $Param{Data}->{$ParamName};
$ParamValue = URI::Escape::uri_escape_utf8($ParamValue);
$Controller =~ s{:$ParamName(?=/|\?|$)}{$ParamValue}msxg;
push @ParamsToDelete, $ParamName;
}
}
$Self->{DebuggerObject}->Debug(
Summary => "URI after interpolating URI params from outgoing data",
Data => $Controller,
);
if ($QueryParamsStr) {
# Replace any query params with their actual value
# for example: from ?UserLogin:UserLogin&Password=:Password
# to ?UserLogin=user&Password=secret
# (considering that $Param{Data} contains UserLogin = 'user' and Password = 'secret').
my $ReplaceFlag;
for my $ParamName ( sort keys %{ $Param{Data} } ) {
if ( $QueryParamsStr =~ m{:$ParamName(?=&|$)}msx ) {
my $ParamValue = $Param{Data}->{$ParamName};
$ParamValue = URI::Escape::uri_escape_utf8($ParamValue);
$QueryParamsStr =~ s{:$ParamName(?=&|$)}{$ParamValue}msxg;
push @ParamsToDelete, $ParamName;
$ReplaceFlag = 1;
}
}
# Append query params in the URI.
if ($ReplaceFlag) {
$Controller .= $QueryParamsStr;
$Self->{DebuggerObject}->Debug(
Summary => "URI after interpolating Query params from outgoing data",
Data => $Controller,
);
}
}
# Remove already used params.
for my $ParamName (@ParamsToDelete) {
delete $Param{Data}->{$ParamName};
}
# Get JSON and Encode object.
my $JSONObject = $Kernel::OM->Get('Kernel::System::JSON');
my $EncodeObject = $Kernel::OM->Get('Kernel::System::Encode');
my $Body;
if ( IsHashRefWithData( $Param{Data} ) ) {
# POST, PUT and PATCH can have Data in the Body.
if (
$RestCommand eq 'POST'
|| $RestCommand eq 'PUT'
|| $RestCommand eq 'PATCH'
)
{
$Self->{DebuggerObject}->Debug(
Summary => "Remaining outgoing data to be sent",
Data => $Param{Data},
);
$Param{Data} = $JSONObject->Encode(
Data => $Param{Data},
);
# Make sure data is correctly encoded.
$EncodeObject->EncodeOutput( \$Param{Data} );
}
# Whereas GET and the others just have a the data added to the Query URI.
else {
my $QueryParams = $RestClient->buildQuery(
%{ $Param{Data} }
);
# Check if controller already have a question mark '?'.
if ( $Controller =~ m{\?}msx ) {
# Replace question mark '?' by an ampersand '&'.
$QueryParams =~ s{\A\?}{&};
}
$Controller .= $QueryParams;
$Self->{DebuggerObject}->Debug(
Summary => "URI after adding Query params from outgoing data",
Data => $Controller,
);
$Self->{DebuggerObject}->Debug(
Summary => "Remaining outgoing data to be sent",
Data => "No data is sent in the request body as $RestCommand command sets all"
. " Data as query params",
);
}
}
push @RequestParam, $Controller;
if ( IsStringWithData( $Param{Data} ) ) {
$Body = $Param{Data};
push @RequestParam, $Body;
}
# Add headers to request
push @RequestParam, $Headers;
$RestClient->$RestCommand(@RequestParam);
my $ResponseCode = $RestClient->responseCode();
my $ResponseError;
my $ErrorMessage = "Error while performing REST '$RestCommand' request to Controller '$Controller' on Host '"
. $Config->{Host} . "'.";
if ( !IsStringWithData($ResponseCode) ) {
$ResponseError = $ErrorMessage;
}
if ( $ResponseCode !~ m{ \A 20 \d \z }xms ) {
$ResponseError = $ErrorMessage . " Response code '$ResponseCode'.";
}
my $ResponseContent = $RestClient->responseContent();
if ( $ResponseCode ne '204' && !IsStringWithData($ResponseContent) ) {
$ResponseError .= ' No content provided.';
}
# Return early in case an error on response.
if ($ResponseError) {
my $ResponseData = 'No content provided.';
if ( IsStringWithData($ResponseContent) ) {
$ResponseData = "Response content: '$ResponseContent'";
}
# log to debugger
$Self->{DebuggerObject}->Error(
Summary => $ResponseError,
Data => $ResponseData,
);
return {
Success => 0,
ErrorMessage => $ResponseError,
};
}
# Send processed data to debugger.
my $SizeExeeded = 0;
{
my $MaxSize = $Kernel::OM->Get('Kernel::Config')->Get('GenericInterface::Operation::ResponseLoggingMaxSize')
|| 200;
$MaxSize = $MaxSize * 1024;
use bytes;
my $ByteSize = length($ResponseContent);
if ( $ByteSize < $MaxSize ) {
$Self->{DebuggerObject}->Debug(
Summary => 'JSON data received from remote system',
Data => $ResponseContent,
);
}
else {
$SizeExeeded = 1;
$Self->{DebuggerObject}->Debug(
Summary => "JSON data received from remote system was too large for logging",
Data =>
'See SysConfig option GenericInterface::Operation::ResponseLoggingMaxSize to change the maximum.',
);
}
}
$ResponseContent = $EncodeObject->Convert2CharsetInternal(
Text => $ResponseContent,
From => 'utf-8',
);
# To convert the data into a hash, use the JSON module.
my $Result;
if ( $ResponseCode ne '204' ) {
$Result = $JSONObject->Decode(
Data => $ResponseContent,
);
if ( !$Result ) {
my $ResponseError = $ErrorMessage . ' Error while parsing JSON data.';
# Log to debugger.
$Self->{DebuggerObject}->Error(
Summary => $ResponseError,
);
return {
Success => 0,
ErrorMessage => $ResponseError,
};
}
}
# All OK - return result.
return {
Success => 1,
Data => $Result || undef,
SizeExeeded => $SizeExeeded,
};
}
=begin Internal:
=head2 _Output()
Generate http response for provider and send it back to remote system.
Environment variables are checked for potential error messages.
Returns structure to be passed to provider.
my $Result = $TransportObject->_Output(
HTTPCode => 200, # http code to be returned, optional
Content => 'response', # message content, XML response on normal execution
);
$Result = {
Success => 0,
ErrorMessage => 'Message', # error message from given summary
};
=cut
sub _Output {
my ( $Self, %Param ) = @_;
# Check params.
my $Success = 1;
my $ErrorMessage;
if ( defined $Param{HTTPCode} && !IsInteger( $Param{HTTPCode} ) ) {
$Param{HTTPCode} = 500;
$Param{Content} = 'Invalid internal HTTPCode';
$Success = 0;
$ErrorMessage = 'Invalid internal HTTPCode';
}
elsif ( defined $Param{Content} && !IsString( $Param{Content} ) ) {
$Param{HTTPCode} = 500;
$Param{Content} = 'Invalid Content';
$Success = 0;
$ErrorMessage = 'Invalid Content';
}
# Prepare protocol.
my $Protocol = defined $ENV{SERVER_PROTOCOL} ? $ENV{SERVER_PROTOCOL} : 'HTTP/1.0';
# FIXME: according to SOAP::Transport::HTTP the previous should only be used
# for IIS to imitate nph- behavior
# for all other browser 'Status:' should be used here
# this breaks apache though
# prepare data
$Param{Content} ||= '';
$Param{HTTPCode} ||= 500;
my $ContentType;
if ( $Param{HTTPCode} eq 200 ) {
$ContentType = 'application/json';
}
else {
$ContentType = 'text/plain';
}
# Calculate content length (based on the bytes length not on the characters length).
my $ContentLength = bytes::length( $Param{Content} );
# Log to debugger.
my $DebugLevel;
if ( $Param{HTTPCode} eq 200 ) {
$DebugLevel = 'debug';
}
else {
$DebugLevel = 'error';
}
$Self->{DebuggerObject}->DebugLog(
DebugLevel => $DebugLevel,
Summary => "Returning provider data to remote system (HTTP Code: $Param{HTTPCode})",
Data => $Param{Content},
);
# Set keep-alive.
my $Connection = $Self->{KeepAlive} ? 'Keep-Alive' : 'close';
# prepare additional headers
my $AdditionalHeaderStrg = '';
if ( IsHashRefWithData( $Self->{TransportConfig}->{Config}->{AdditionalHeaders} ) ) {
my %AdditionalHeaders = %{ $Self->{TransportConfig}->{Config}->{AdditionalHeaders} };
for my $AdditionalHeader ( sort keys %AdditionalHeaders ) {
$AdditionalHeaderStrg
.= $AdditionalHeader . ': ' . ( $AdditionalHeaders{$AdditionalHeader} || '' ) . "\r\n";
}
}
# In the constructor of this module STDIN and STDOUT are set to binmode without any additional
# layer (according to the documentation this is the same as set :raw). Previous solutions for
# binary responses requires the set of :raw or :utf8 according to IO layers.
# with that solution Windows OS requires to set the :raw layer in binmode, see #bug#8466.
# while in *nix normally was better to set :utf8 layer in binmode, see bug#8558, otherwise
# XML parser complains about it... ( but under special circumstances :raw layer was needed
# instead ).
#
# This solution to set the binmode in the constructor and then :utf8 layer before the response
# is sent apparently works in all situations. ( Linux circumstances to requires :raw was no
# reproducible, and not tested in this solution).
binmode STDOUT, ':utf8'; ## no critic
# Print data to http - '\r' is required according to HTTP RFCs.
my $StatusMessage = HTTP::Status::status_message( $Param{HTTPCode} );
print STDOUT "$Protocol $Param{HTTPCode} $StatusMessage\r\n";
print STDOUT "Content-Type: $ContentType; charset=UTF-8\r\n";
print STDOUT "Content-Length: $ContentLength\r\n";
print STDOUT "Connection: $Connection\r\n";
print STDOUT $AdditionalHeaderStrg;
print STDOUT "\r\n";
print STDOUT $Param{Content};
return {
Success => $Success,
ErrorMessage => $ErrorMessage,
};
}
=head2 _Error()
Take error parameters from request processing.
Error message is written to debugger, written to environment for response.
Error is generated to be passed to provider/requester.
my $Result = $TransportObject->_Error(
Summary => 'Message', # error message
HTTPError => 500, # http error code, optional
);
$Result = {
Success => 0,
ErrorMessage => 'Message', # error message from given summary
};
=cut
sub _Error {
my ( $Self, %Param ) = @_;
# check needed params
if ( !IsString( $Param{Summary} ) ) {
return $Self->_Error(
Summary => 'Need Summary!',
HTTPError => 500,
);
}
# Log to debugger.
$Self->{DebuggerObject}->Error(
Summary => $Param{Summary},
);
# Remember data for response.
if ( IsStringWithData( $Param{HTTPError} ) ) {
$Self->{HTTPError} = $Param{HTTPError};
$Self->{HTTPMessage} = $Param{Summary};
}
# Return to provider/requester.
return {
Success => 0,
ErrorMessage => $Param{Summary},
};
}
1;
=end Internal:
=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
|