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 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
|
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# Copyright (C) 2021 Znuny GmbH, https://znuny.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 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 LWP::UserAgent;
use XML::Simple;
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 ) = @_;
my $JSONObject = $Kernel::OM->Get('Kernel::System::JSON');
my $ParamObject = $Kernel::OM->Get('Kernel::System::Web::Request');
# 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 $ParserBackend;
my %ParserBackendParameter;
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;
}
$ParserBackend = $RouteMapping{ParserBackend} || 'JSON';
if ( IsHashRefWithData( $RouteMapping{ParserBackendParameter} ) ) {
%ParserBackendParameter = %{ $RouteMapping{ParserBackendParameter} };
}
$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, );
}
my %DataHeaderOverwrite = (
HTTP_X_OTRS_HEADER_USERLOGIN => 'UserLogin',
HTTP_X_OTRS_HEADER_CUSTOMERUSERLOGIN => 'CustomerUserLogin',
HTTP_X_OTRS_HEADER_SESSIONID => 'SessionID',
HTTP_X_OTRS_HEADER_PASSWORD => 'Password',
HTTP_X_OTRS_HEADER_IMPERSONATEASUSER => 'ImpersonateAsUser',
HTTP_X_OTRS_HEADER_TWOFACTORTOKEN => 'TwoFactorToken',
);
HEADER:
for my $Header ( sort keys %DataHeaderOverwrite ) {
next HEADER if !IsStringWithData( $ENV{$Header} );
$URIData{ $DataHeaderOverwrite{$Header} } = $ENV{$Header};
}
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,
);
}
# try to read request from special CGI parameters
# those are filled:
# 'If POSTed data is not of type application/x-www-form-urlencoded or multipart/form-data'
# https://metacpan.org/pod/CGI#Handling-non-urlencoded-arguments
my $Content = $ParamObject->GetParam( Param => 'POSTDATA' )
// $ParamObject->GetParam( Param => 'PUTDATA' )
// $ParamObject->GetParam( Param => 'PATCHDATA' );
# if no content is given yet, maybe there were some
# 'application/x-www-form-urlencoded or multipart/form-data'
# submitted...
if ( !IsStringWithData($Content) ) {
# get possible POST parameter name from config
# otherwise fall back on 'file'
my %UploadInfo = $Kernel::OM->Get('Kernel::System::Web::Request')->GetUploadAll(
Param => $Config->{PostParamName} || 'file',
);
# if the parameter indeed has some content with it
# pass it to $Content so we can work with it later
if ( IsStringWithData( $UploadInfo{Content} ) ) {
$Content = $UploadInfo{Content};
}
}
# fallback to otrs standard
if ( !$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,
);
}
# remove utf-8 BOMs:
# http://www.ueber.net/who/mjl/projects/bomstrip/
$Content =~ s{\xef\xbb\xbf}{}g;
# 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;
if ( $ParserBackend eq 'JSON' ) {
$ContentDecoded = $JSONObject->Decode(
%ParserBackendParameter,
Data => $Content,
);
}
else {
return $Self->_Error(
Summary => "Invalid parser backend '$ParserBackend' configured for Operation '$Operation'.",
HTTPError => 500,
);
}
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 success param.
my $HTTPCode = $Param{HTTPCode} // 200;
if ( !$Param{Success} ) {
# Create Fault structure.
my $FaultString = $Param{ErrorMessage} || 'Unknown';
$Param{Data} = {
faultcode => 'Server',
faultstring => $FaultString,
};
# overide HTTPCode to 500 if no custom HTTP code was provided
$HTTPCode = 500 if !$Param{HTTPCode};
}
my %AdditionalResponseHeaders;
if ( exists $Param{Data}->{AdditionalResponseHeaders} ) {
if ( IsHashRefWithData( $Param{Data}->{AdditionalResponseHeaders} ) ) {
%AdditionalResponseHeaders = %{ $Param{Data}->{AdditionalResponseHeaders} };
}
delete $Param{Data}->{AdditionalResponseHeaders};
}
# Prepare data.
my $JSONString = $Kernel::OM->Get('Kernel::System::JSON')->Encode(
Data => $Param{Data},
SortKeys => 1,
);
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,
AdditionalResponseHeaders => \%AdditionalResponseHeaders,
);
}
=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 ) = @_;
my $EncodeObject = $Kernel::OM->Get('Kernel::System::Encode');
my $JSONObject = $Kernel::OM->Get('Kernel::System::JSON');
my $OAuth2TokenObject = $Kernel::OM->Get('Kernel::System::OAuth2Token');
# 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 = $Kernel::OM->{Objects}->{ $Config->{Host} };
if (
!$Config->{ReuseClient}
|| !$RestClient
)
{
# fill default parameter
my %RESTClientParameter = (
host => $Config->{Host},
timeout => $Config->{Timeout},
);
# if configured we have to skip hostname verification
# on ssl connections for e.g. self signed certs
if ( $Config->{SSLNoHostnameVerification} ) {
# therefore we have to use our own LWP::UserAgent object
# with disabled 'verify_hostname' SSL option
$RESTClientParameter{useragent} = LWP::UserAgent->new(
keep_alive => $Config->{KeepAlive},
ssl_opts => {
verify_hostname => 0,
SSL_verify_mode => 0,
},
);
}
# create a REST::Client object we can perform our session with
$RestClient = REST::Client->new( \%RESTClientParameter );
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 X509 options if configured
if ( IsHashRefWithData( $Config->{X509} ) ) {
# use X509 options
if (
IsStringWithData( $Config->{X509}->{UseX509} )
&& $Config->{X509}->{UseX509} eq 'Yes'
)
{
#X509 client authentication
$RestClient->setCert( $Config->{X509}->{X509CertFile} );
$RestClient->setKey( $Config->{X509}->{X509KeyFile} );
#add a CA to verify server certificates
if ( IsStringWithData( $Config->{X509}->{X509CAFile} ) ) {
$RestClient->setCa( $Config->{X509}->{X509CAFile} );
}
}
}
if ( $Config->{ReuseClient} ) {
$Kernel::OM->{Objects}->{ $Config->{Host} } = $RestClient;
}
}
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},
'',
);
}
}
}
#
# JWT support
#
my $JWTObject = $Kernel::OM->Get('Kernel::System::JSONWebToken');
my $X509CertificateObject = $Kernel::OM->Get('Kernel::System::X509Certificate');
my $JWTObjectIsSupported = $JWTObject->IsSupported();
my $X509CertificateObjectIsSupported = $X509CertificateObject->IsSupported();
my $JWT;
if (
$JWTObjectIsSupported
&& IsHashRefWithData( $Config->{Authentication} )
&& IsStringWithData( $Config->{Authentication}->{AuthType} )
&& $Config->{Authentication}->{AuthType} eq 'JWT'
)
{
my %JWTPlaceholderData;
# Fetch data from X.509 certificate, if configured and supported
# to be able to insert it into configured placeholders of payload and additional header data
# of the JWT.
if (
$X509CertificateObjectIsSupported
&& $Config->{Authentication}->{JWTAuthCertificateFilePath}
)
{
my $X509Certificate = $X509CertificateObject->Parse(
FilePath => $Config->{Authentication}->{JWTAuthCertificateFilePath},
) // {};
for my $X509CertificateKey ( sort keys %{$X509Certificate} ) {
my $X509CertificateValue = $X509Certificate->{$X509CertificateKey} // '';
$JWTPlaceholderData{ 'OTRS_JWT_Cert' . $X509CertificateKey } = $X509CertificateValue;
}
}
# Calculate expiration date and insert it into placeholders of payload and additional header data
# of the JWT.
my $TTL = int( $Config->{Authentication}->{JWTAuthTTL} );
my $DateTimeObject = $Kernel::OM->Create(
'Kernel::System::DateTime',
ObjectParams => {
TimeZone => 'UTC',
}
);
$DateTimeObject->Add( Seconds => $TTL );
$JWTPlaceholderData{OTRS_JWT_ExpirationDateTimestamp} = $DateTimeObject->ToEpoch();
$JWTPlaceholderData{OTRS_JWT_ExpirationDateString} = $DateTimeObject->Format(
Format => '%Y-%m-%dT%H:%M:%S %{time_zone_long_name}',
);
my $Payload = $Config->{Authentication}->{JWTAuthPayload} // {};
my $AdditionalHeaderData = $Config->{Authentication}->{JWTAuthAdditionalHeaderData} // {};
$JWT = $JWTObject->Encode(
Payload => $Payload,
Algorithm => $Config->{Authentication}->{JWTAuthAlgorithm},
KeyFilePath => $Config->{Authentication}->{JWTAuthKeyFilePath},
KeyPassword => $Config->{Authentication}->{JWTAuthKeyFilePassword},
AdditionalHeaderData => $AdditionalHeaderData,
PlaceholderData => \%JWTPlaceholderData,
);
}
# 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},
'',
);
}
# JWT header
elsif (
$JWTObjectIsSupported
&& IsHashRefWithData( $Config->{Authentication} )
&& IsStringWithData( $Config->{Authentication}->{AuthType} )
&& $Config->{Authentication}->{AuthType} eq 'JWT'
&& IsStringWithData($JWT)
)
{
$Headers->{Authorization} = "Bearer $JWT";
}
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,
};
}
if ( grep { $_ eq $RestCommand } qw(POST PUT PATCH) ) {
if ( IsStringWithData( $Config->{ContentType} ) ) {
# Add defined content-type to HTTP header
if ( $Config->{ContentType} eq 'JSON' ) {
$Headers->{'Content-Type'} = 'application/json';
}
elsif ( $Config->{ContentType} eq 'FORM' ) {
$Headers->{'Content-Type'} = 'application/x-www-form-urlencoded';
}
elsif ( $Config->{ContentType} eq 'XML' ) {
$Headers->{'Content-Type'} = 'application/xml';
}
}
}
my $RequestHeaders = delete $Param{Data}->{__RequestHeaders};
if ( IsHashRefWithData($RequestHeaders) ) {
$Headers = $RequestHeaders;
}
my $RequestHeadersAppend = delete $Param{Data}->{__RequestHeadersAppend};
if ( IsHashRefWithData($RequestHeadersAppend) ) {
%{$Headers} = (
%{$Headers},
%{$RequestHeadersAppend},
);
}
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;
my %FlattenedParamData;
$Self->_FlattenDataStructure(
Data => $Param{Data},
Flattened => \%FlattenedParamData,
);
# Replace any URI params with their actual value.
# for example: from /Ticket/:TicketData.TicketID/:Other
# to /Ticket/1/2 (considering that $Param{Data} contains {TicketData}->{TicketID} = 1 and {Other} = 2).
FLATTENEDPARAMDATA:
for my $FlattenedParamName ( sort keys %FlattenedParamData ) {
next FLATTENEDPARAMDATA if $Controller !~ m{:$FlattenedParamName(?=/|\?|$)}ms;
my $ParamValue = $FlattenedParamData{$FlattenedParamName};
next FLATTENEDPARAMDATA if !defined $ParamValue;
$EncodeObject->EncodeInput( \$ParamValue );
$ParamValue = URI::Escape::uri_escape_utf8($ParamValue);
$Controller =~ s{:$FlattenedParamName(?=/|\?|$)}{$ParamValue}msg;
# Only delete "top level" hash keys.
# Keep data of nested structures as is because it would
# look like there's something missing otherwise (especially if
# array elements would be removed).
next FLATTENEDPARAMDATA if index( $FlattenedParamName, '.' ) != -1;
push @ParamsToDelete, $FlattenedParamName;
}
$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;
FLATTENEDPARAMDATA:
for my $FlattenedParamName ( sort keys %FlattenedParamData ) {
next FLATTENEDPARAMDATA if $QueryParamsStr !~ m{:$FlattenedParamName(?=&|$)}ms;
my $ParamValue = $FlattenedParamData{$FlattenedParamName};
next FLATTENEDPARAMDATA if !defined $ParamValue;
$EncodeObject->EncodeInput( \$ParamValue );
$ParamValue = URI::Escape::uri_escape_utf8($ParamValue);
$QueryParamsStr =~ s{:$FlattenedParamName(?=&|$)}{$ParamValue}msxg;
$ReplaceFlag = 1;
# Only delete "top level" hash keys.
# Keep data of nested structures as is because it would
# look like there's something missing otherwise (especially if
# array elements would be removed).
next FLATTENEDPARAMDATA if index( $FlattenedParamName, '.' ) != -1;
push @ParamsToDelete, $FlattenedParamName;
}
# 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 "top-level" params.
for my $ParamName (@ParamsToDelete) {
delete $Param{Data}->{$ParamName};
}
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},
);
if ( $Headers->{'Content-Type'} eq 'application/x-www-form-urlencoded' ) {
# Add parameters as form data to body.
$Param{Data} = $RestClient->buildQuery(
%{ $Param{Data} }
);
# Remove any leading questing mark
if ( IsStringWithData( $Param{Data} ) ) {
$Param{Data} =~ s{\A\?}{}sm;
}
}
elsif ( $Headers->{'Content-Type'} eq 'application/xml' ) {
my $XMLSimple = XML::Simple->new();
my $XMLOut;
eval {
$XMLOut = $XMLSimple->XMLout(
$Param{Data},
AttrIndent => 1,
ContentKey => '-content',
NoAttr => 0,
KeyAttr => [],
RootName => undef,
);
};
$XMLOut //= '';
if ( !length $XMLOut ) {
$Self->{DebuggerObject}->Error(
Summary => 'Could not generate XML content for request.',
);
}
$Param{Data} = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $XMLOut;
}
else {
# Default to JSON (OTRS default behavior)
$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;
}
if ( IsHashRefWithData( $Config->{AdditionalHeaders} ) ) {
my $AdditionalHeaders = $Config->{AdditionalHeaders};
# Insert data into placeholders.
my %PlaceholderData;
if (
IsHashRefWithData( $Config->{Authentication} )
&& IsStringWithData( $Config->{Authentication}->{AuthType} )
)
{
# JWT
if (
$Config->{Authentication}->{AuthType} eq 'JWT'
&& $JWTObjectIsSupported
&& IsStringWithData($JWT)
)
{
$PlaceholderData{OTRS_JWT} = $JWT;
}
# OAuth2 token
if (
$Config->{Authentication}->{AuthType} eq 'OAuth2Token'
&& $Config->{Authentication}->{OAuth2TokenConfigID}
)
{
my $OAuth2Token = $OAuth2TokenObject->GetToken(
TokenConfigID => $Config->{Authentication}->{OAuth2TokenConfigID},
UserID => 1,
);
if ( !IsStringWithData($OAuth2Token) ) {
my $ErrorMessage
= "OAuth2 token for config with ID $Config->{Authentication}->{OAuth2TokenConfigID} could not be retrieved.";
$Self->{DebuggerObject}->Error(
Summary => $ErrorMessage,
);
return {
Success => 0,
ErrorMessage => $ErrorMessage,
};
}
$PlaceholderData{OTRS_OAUTH2_TOKEN} = $OAuth2Token;
}
}
HEADERFIELDNAME:
for my $HeaderFieldname ( sort keys %{$AdditionalHeaders} ) {
my $HeaderValue = $AdditionalHeaders->{$HeaderFieldname};
next HEADERFIELDNAME if !defined $HeaderValue;
for my $Placeholder ( sort keys %PlaceholderData ) {
my $PlaceholderValue = $PlaceholderData{$Placeholder} // '';
$HeaderValue =~ s{<$Placeholder>}{$PlaceholderValue}g;
}
# Remove unknown placeholders.
$HeaderValue =~ s{<OTRS_.*?>}{}g;
$AdditionalHeaders->{$HeaderFieldname} = $HeaderValue;
}
%{$Headers} = (
%{$Headers},
%{ $Config->{AdditionalHeaders} },
);
}
if ( IsHashRefWithData($Headers) ) {
for my $HeaderName ( sort keys %{$Headers} ) {
my $HeaderValue = $Headers->{$HeaderName};
$RestClient->addHeader( $HeaderName, $HeaderValue );
}
}
# Add headers to request
push @RequestParam, $Headers;
$RestClient->$RestCommand(@RequestParam);
$Self->{DebuggerObject}->Debug(
Summary => "Request params from outgoing data",
Data => \@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();
$Self->{DebuggerObject}->Debug(
Summary => "JSON data received from remote system",
Data => $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 $SizeExceeded = 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 {
$SizeExceeded = 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' ) {
my $ResponseContentType = $RestClient->responseHeader('Content-Type') // '';
if ( $ResponseContentType =~ m{text/(plain|html|xml)} ) {
$Result = {
Body => $ResponseContent,
};
return {
Success => 1,
Data => $Result,
SizeExceeded => $SizeExceeded,
};
}
$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,
SizeExceeded => $SizeExceeded,
};
}
=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 = '';
my %AdditionalHeaders;
if ( IsHashRefWithData( $Self->{TransportConfig}->{Config}->{AdditionalHeaders} ) ) {
%AdditionalHeaders = %{ $Self->{TransportConfig}->{Config}->{AdditionalHeaders} };
}
if ( IsHashRefWithData( $Param{AdditionalResponseHeaders} ) ) {
%AdditionalHeaders = ( %AdditionalHeaders, %{ $Param{AdditionalResponseHeaders} } );
}
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},
};
}
=head2 _FlattenDataStructure()
Returns a flattened hash/array of a given hash/array.
$TransportObject->_FlattenDataStructure(
Data => \%OldHash,
Flattened => \%NewHash,
);
my %OldHash = (
Config => {
A => 1,
B => 2,
C => 3,
D => [
2, 5, 6,
],
},
Config2 => 1
);
my %NewHash = (
Config.A => 1,
Config.B => 1,
Config.C => 1,
Config.D.0 => 2,
Config.D.1 => 5,
Config.D.2 => 6,
Config2 => 1,
);
=cut
sub _FlattenDataStructure {
my ( $Self, %Param ) = @_;
for my $Needed (qw(Data Flattened)) {
if ( !$Param{$Needed} ) {
print "Got no $Needed!\n";
return;
}
}
my @Containers;
my $DataType;
if ( ref $Param{Data} eq 'HASH' ) {
@Containers = sort keys %{ $Param{Data} };
$DataType = 'Hash';
}
elsif ( ref $Param{Data} eq 'ARRAY' ) {
@Containers = @{ $Param{Data} };
$DataType = 'Array';
}
else {
return 1;
}
my $Prefix = $Param{Prefix} // '';
my $ArrayCount = 0;
CONTAINER:
for my $Container (@Containers) {
next CONTAINER if !$Container;
if ( $DataType eq 'Hash' ) {
if (
IsHashRefWithData( $Param{Data}->{$Container} )
|| IsArrayRefWithData( $Param{Data}->{$Container} )
)
{
$Self->_FlattenDataStructure(
Data => $Param{Data}->{$Container},
Flattened => $Param{Flattened},
Prefix => $Prefix . $Container . '.',
);
}
else {
$Prefix = $Prefix . $Container;
$Param{Flattened}->{$Prefix} = $Param{Data}->{$Container};
$Prefix = $Param{Prefix} || '';
}
}
else {
if (
IsHashRefWithData($Container)
|| IsArrayRefWithData($Container)
)
{
$Self->_FlattenDataStructure(
Data => $Container,
Flattened => $Param{Flattened},
Prefix => $Prefix . $Container . '.',
);
}
else {
$Prefix = $Prefix . $ArrayCount;
$Param{Flattened}->{$Prefix} = $Container;
$Prefix = $Param{Prefix} || '';
}
$ArrayCount++;
}
}
return 1;
}
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
|