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
|
# --
# 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::SOAP;
use strict;
use warnings;
use Encode;
use HTTP::Status;
use MIME::Base64;
use PerlIO;
use SOAP::Lite;
use Kernel::System::VariableCheck qw(:all);
our $ObjectManagerDisabled = 1;
=head1 NAME
Kernel::GenericInterface::Transport::HTTP::SOAP - GenericInterface network transport interface for HTTP::SOAP
=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 );
# Check needed objects.
for my $Needed (qw(DebuggerObject TransportConfig)) {
$Self->{$Needed} = $Param{$Needed} || die "Got no $Needed!";
}
# Set binary mode for STDIN and STDOUT (normally is the same as :raw).
binmode STDIN;
binmode STDOUT;
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 => 'HTTP::SOAP Have no TransportConfig',
HTTPError => 500,
);
}
if ( !IsHashRefWithData( $Self->{TransportConfig}->{Config} ) ) {
return $Self->_Error(
Summary => 'HTTP::SOAP Have no Config',
HTTPError => 500,
);
}
my $Config = $Self->{TransportConfig}->{Config};
# Check namespace config.
if ( !IsStringWithData( $Config->{NameSpace} ) ) {
return $Self->_Error(
Summary => 'HTTP::SOAP Have no NameSpace in config',
HTTPError => 500,
);
}
# Check basic stuff.
my $Length = $ENV{'CONTENT_LENGTH'} || 0;
# If the HTTP_TRANSFER_ENCODING environment variable is defined, check if is chunked.
my $Chunked = (
defined $ENV{'HTTP_TRANSFER_ENCODING'}
&& $ENV{'HTTP_TRANSFER_ENCODING'} =~ /^chunked.*$/
) || 0;
my $Content = q{};
# If chunked transfer encoding is used, read request from chunks and calculate its length afterwards
if ($Chunked) {
my $Buffer;
while ( read( STDIN, $Buffer, 1024 ) ) {
$Content .= $Buffer;
}
$Length = length($Content);
}
# No length provided.
if ( !$Length ) {
return $Self->_Error(
Summary => HTTP::Status::status_message(411),
HTTPError => 411,
);
}
# Request bigger than allowed.
if ( IsInteger( $Config->{MaxLength} ) && $Length > $Config->{MaxLength} ) {
return $Self->_Error(
Summary => HTTP::Status::status_message(413),
HTTPError => 413,
);
}
# In case client requests to continue submission, tell it to continue.
if ( IsStringWithData( $ENV{EXPECT} ) && $ENV{EXPECT} =~ m{ \b 100-Continue \b }xmsi ) {
$Self->_Output(
HTTPCode => 100,
Content => '',
);
}
# If no chunked transfer encoding was used, read request directly.
if ( !$Chunked ) {
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.
my $RequestMethod = $ENV{'REQUEST_METHOD'} || 'GET';
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 charset if necessary.
my $ContentCharset;
if ( $ENV{'CONTENT_TYPE'} =~ m{ \A ( .+ ) ;\s*charset= ["']{0,1} ( .+? ) ["']{0,1} (;|\z) }xmsi ) {
# Remember content type for the response.
$Self->{ContentType} = $1;
$ContentCharset = $2;
}
if ( $ContentCharset && $ContentCharset !~ m{ \A utf [-]? 8 \z }xmsi ) {
$Content = $Kernel::OM->Get('Kernel::System::Encode')->Convert2CharsetInternal(
Text => $Content,
From => $ContentCharset,
);
}
else {
$Kernel::OM->Get('Kernel::System::Encode')->EncodeInput( \$Content );
}
# Send received data to debugger.
$Self->{DebuggerObject}->Debug(
Summary => 'Received data by provider from remote system',
Data => $Content,
);
# Deserialize data.
my $Deserialized = eval { SOAP::Deserializer->deserialize($Content); };
my $DeserializedFault = $@ || '';
if ($DeserializedFault) {
return $Self->_Error(
Summary => 'Error deserializing message:' . $DeserializedFault,
HTTPError => 500,
);
}
# Check if the deserialized result is there.
if ( !defined $Deserialized || !$Deserialized->body() ) {
return $Self->_Error(
Summary => 'Got no result body from deserialized content',
HTTPError => 500,
);
}
# Get body for request.
my $Body = $Deserialized->body();
# Get operation from soap data.
my $Operation = ( sort keys %{$Body} )[0];
# Determine local operation name from request wrapper name scheme
# possible values are 'Append', 'Plain' and 'Request'.
my $LocalOperation = $Operation;
$Config->{RequestNameScheme} //= 'Plain';
if ( $Config->{RequestNameScheme} eq 'Request' ) {
$LocalOperation =~ s{ Request \z }{}xms;
}
elsif (
$Config->{RequestNameScheme} eq 'Append'
&& $Config->{RequestNameFreeText}
&& $LocalOperation =~ m{ \A ( .+ ) $Config->{RequestNameFreeText} \z }xms
)
{
$LocalOperation = $1;
}
# Remember operation for response.
$Self->{Operation} = $LocalOperation;
my $OperationData = $Body->{$Operation};
# Fall-back for backwards compatibility (SOAP::Lite default behavior).
if ( !IsStringWithData( $Config->{SOAPAction} ) ) {
$Config->{SOAPAction} = 'Yes';
}
# Check SOAPAction if configured and necessary.
my $SOAPAction = $ENV{HTTP_SOAPACTION};
if (
$Config->{SOAPAction} eq 'Yes'
&& IsStringWithData($SOAPAction)
&& $SOAPAction ne '""'
&& $SOAPAction ne "''"
)
{
my $SOAPActionStripped = $SOAPAction =~ s{ \A ( ["']? ) (?<SOAPAction> .+? ) \1 \z }{$+{SOAPAction}}xmsr;
# Fall-back for backwards compatibility.
if ( !IsStringWithData( $Config->{SOAPActionScheme} ) ) {
$Config->{SOAPActionScheme} = 'NameSpaceSeparatorOperation';
}
my $ExpectedSOAPAction;
my $ExpectedSOAPActionAlt;
if (
$Config->{SOAPActionScheme} eq 'FreeText'
&& IsStringWithData( $Config->{SOAPActionFreeText} )
)
{
$ExpectedSOAPAction = $Config->{SOAPActionFreeText};
}
elsif ( $Config->{SOAPActionScheme} eq 'Operation' ) {
$ExpectedSOAPAction = $LocalOperation;
}
elsif (
$Config->{SOAPActionScheme} eq 'SeparatorOperation'
&& IsStringWithData( $Config->{SOAPActionSeparator} )
)
{
$ExpectedSOAPAction = $Config->{SOAPActionSeparator} . $LocalOperation;
}
elsif (
$Config->{SOAPActionScheme} eq 'NameSpaceSeparatorOperation'
&& IsStringWithData( $Config->{SOAPActionSeparator} )
)
{
$ExpectedSOAPAction = $Config->{NameSpace} . $Config->{SOAPActionSeparator} . $LocalOperation;
# Fall-back for backwards compatibility
# this is actually incorrect, but probably needed for the time being (see bug#12196)
$ExpectedSOAPActionAlt = $Config->{NameSpace} . $LocalOperation;
}
# Fall-back for backwards compatibility.
elsif ( $Config->{SOAPActionScheme} eq 'NameSpaceSeparatorOperation' ) {
$ExpectedSOAPAction = $Config->{NameSpace} . '#' . $LocalOperation;
$ExpectedSOAPActionAlt = $Config->{NameSpace} . '/' . $LocalOperation;
}
# Check if SOAPAction header matches up with our expectation.
# For safety, no check is done if SOAPActionScheme is invalid.
if (
$ExpectedSOAPAction
&& $ExpectedSOAPAction ne $SOAPActionStripped
&& ( !$ExpectedSOAPActionAlt || $ExpectedSOAPActionAlt ne $SOAPActionStripped )
)
{
return $Self->_Error(
Summary => "SOAPAction '$SOAPActionStripped' does not match expected result '$ExpectedSOAPAction'",
);
}
}
# All OK - return data.
return {
Success => 1,
Operation => $LocalOperation,
Data => $OperationData || undef,
};
}
=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',
);
}
my $Config = $Self->{TransportConfig}->{Config};
# Check success param.
my $OperationResponse;
my $HTTPCode;
if ( !$Param{Success} ) {
# Create SOAP Fault structure.
my $FaultString = $Param{ErrorMessage} || 'Unknown';
$Param{Data} = {
faultcode => 'Server',
faultstring => $FaultString,
};
# Override OperationResponse string to Fault to make the correct SOAP envelope.
$OperationResponse = 'Fault';
# Override HTTPCode to 500.
$HTTPCode = 500;
}
else {
$HTTPCode = 200;
# Build response wrapper name
# possible values are 'Append', 'Plain', 'Replace' and 'Response'.
$OperationResponse = $Self->{Operation};
$Config->{ResponseNameScheme} ||= 'Response';
if ( $Config->{ResponseNameScheme} eq 'Response' ) {
$Config->{ResponseNameScheme} = 'Append';
$Config->{ResponseNameFreeText} = 'Response';
}
if ( $Config->{ResponseNameFreeText} ) {
if ( $Config->{ResponseNameScheme} eq 'Append' ) {
# Append configured text.
$OperationResponse .= $Config->{ResponseNameFreeText};
}
elsif ( $Config->{ResponseNameScheme} eq 'Replace' ) {
# Completely replace name with configured text.
$OperationResponse = $Config->{ResponseNameFreeText};
}
}
}
# Prepare data.
my $SOAPResult;
if ( defined $Param{Data} && IsHashRefWithData( $Param{Data} ) ) {
my $SOAPData = $Self->_SOAPOutputRecursion(
Data => $Param{Data},
Sort => $Config->{Sort},
);
# Check output of recursion.
if ( !$SOAPData->{Success} ) {
return $Self->_Output(
HTTPCode => 500,
Content => "Error in SOAPOutputRecursion: " . $SOAPData->{ErrorMessage},
);
}
$SOAPResult = SOAP::Data->value( @{ $SOAPData->{Data} } );
if ( ref $SOAPResult ne 'SOAP::Data' ) {
return $Self->_Output(
HTTPCode => 500,
Content => 'Error in SOAP result',
);
}
}
# Create return structure.
my @CallData = ( 'response', $OperationResponse );
if ($SOAPResult) {
push @CallData, $SOAPResult;
}
my $Serialized = SOAP::Serializer->autotype(0)->default_ns( $Config->{NameSpace} )->envelope(@CallData);
my $SerializedFault = $@ || '';
if ($SerializedFault) {
return $Self->_Output(
HTTPCode => 500,
Content => 'Error serializing message:' . $SerializedFault,
);
}
# No error - return output.
return $Self->_Output(
HTTPCode => $HTTPCode,
Content => $Serialized,
);
}
=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 => 'SOAP Transport: Have no TransportConfig',
};
}
if ( !IsHashRefWithData( $Self->{TransportConfig}->{Config} ) ) {
return {
Success => 0,
ErrorMessage => 'SOAP Transport: Have no Config',
};
}
my $Config = $Self->{TransportConfig}->{Config};
# Check required config.
NEEDED:
for my $Needed (qw(Endpoint NameSpace Timeout)) {
next NEEDED if IsStringWithData( $Config->{$Needed} );
return {
Success => 0,
ErrorMessage => "SOAP Transport: Have no $Needed in config",
};
}
# Check data param.
if ( defined $Param{Data} && ref $Param{Data} ne 'HASH' ) {
return {
Success => 0,
ErrorMessage => 'SOAP Transport: Invalid Data',
Data => $Param{Data},
};
}
# Check operation param.
if ( !IsStringWithData( $Param{Operation} ) ) {
return {
Success => 0,
ErrorMessage => 'SOAP Transport: Need Operation',
};
}
# Prepare data if we have any.
my $SOAPData;
if ( defined $Param{Data} && IsHashRefWithData( $Param{Data} ) ) {
$SOAPData = $Self->_SOAPOutputRecursion(
Data => $Param{Data},
Sort => $Config->{Sort},
);
# Check output of recursion.
if ( !$SOAPData->{Success} ) {
return {
Success => 0,
ErrorMessage => "Error in SOAPOutputRecursion: " . $SOAPData->{ErrorMessage},
};
}
}
# Build request wrapper name
# possible values are 'Append', 'Plain' and 'Request'.
my $OperationRequest = $Param{Operation};
$Config->{RequestNameScheme} ||= 'Plain';
if ( $Config->{RequestNameScheme} eq 'Request' ) {
$Config->{RequestNameScheme} = 'Append';
$Config->{RequestNameFreeText} = 'Request';
}
if ( $Config->{RequestNameScheme} = 'Append' && $Config->{RequestNameFreeText} ) {
$OperationRequest .= $Config->{RequestNameFreeText};
}
# Prepare method.
my $SOAPMethod = SOAP::Data->name($OperationRequest)->uri( $Config->{NameSpace} );
if ( ref $SOAPMethod ne 'SOAP::Data' ) {
return {
Success => 0,
ErrorMessage => 'SOAP Transport: Error preparing used method',
};
}
# Prepare connect.
my $SOAPHandle = eval {
SOAP::Lite->autotype(0)->default_ns( $Config->{NameSpace} )->proxy(
$Config->{Endpoint},
timeout => $Config->{Timeout},
);
};
my $SOAPHandleFault = $@ || '';
if ($SOAPHandleFault) {
return {
Success => 0,
ErrorMessage => 'Error creating SOAPHandle: ' . $SOAPHandleFault,
};
}
# 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' ) {
$SOAPHandle->transport()->proxy()->ssl_opts(
$SSLOptionsMap{$SSLOption} => $Config->{SSL}->{$SSLOption},
);
next SSLOPTION;
}
# Passwords needs a special treatment.
$SOAPHandle->transport()->proxy()->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'
)
{
$SOAPHandle->transport()->proxy()->no_proxy();
}
# Use proxy.
elsif ( IsStringWithData( $Config->{Proxy}->{ProxyHost} ) ) {
# set host
$SOAPHandle->transport()->proxy()->proxy(
[ 'http', 'https', ],
$Config->{Proxy}->{ProxyHost},
);
# Add proxy authentication.
if (
IsStringWithData( $Config->{Proxy}->{ProxyUser} )
&& IsStringWithData( $Config->{Proxy}->{ProxyPassword} )
)
{
$SOAPHandle->transport()->http_request()->proxy_authorization_basic(
$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} )
)
{
$SOAPHandle->transport()->http_request()->authorization_basic(
$Config->{Authentication}->{BasicAuthUser},
$Config->{Authentication}->{BasicAuthPassword},
);
}
# Determine target SOAPAction header.
my $SOAPAction;
# Fall-back for backwards compatibility (SOAP::Lite default behavior)
if ( !IsStringWithData( $Config->{SOAPAction} ) ) {
$Config->{SOAPAction} = 'Yes';
$Config->{SOAPActionScheme} = 'NameSpaceSeparatorOperation';
$Config->{SOAPActionSeparator} = '#';
}
if ( $Config->{SOAPAction} eq 'No' ) {
$SOAPAction = '';
}
# Construct SOAPAction header.
else {
# Fall-back for backwards compatibility.
if ( !IsStringWithData( $Config->{SOAPActionScheme} ) ) {
$Config->{SOAPActionScheme} = 'NameSpaceSeparatorOperation';
}
if (
$Config->{SOAPActionScheme} eq 'FreeText'
&& IsStringWithData( $Config->{SOAPActionFreeText} )
)
{
$SOAPAction = $Config->{SOAPActionFreeText};
}
elsif ( $Config->{SOAPActionScheme} eq 'Operation' ) {
$SOAPAction = $Param{Operation};
}
elsif (
$Config->{SOAPActionScheme} eq 'SeparatorOperation'
&& IsStringWithData( $Config->{SOAPActionSeparator} )
)
{
$SOAPAction = $Config->{SOAPActionSeparator} . $Param{Operation};
}
elsif (
$Config->{SOAPActionScheme} eq 'NameSpaceSeparatorOperation'
&& IsStringWithData( $Config->{SOAPActionSeparator} )
)
{
$SOAPAction = $Config->{NameSpace} . $Config->{SOAPActionSeparator} . $Param{Operation};
}
# Fall-back for the following cases:
# - SOAPActionScheme is invalid
# - SOAPActionFreeText is required but not set
# - SOAPActionSeparator is required but not set
else {
$SOAPAction = '';
}
}
# Set SOAPAction header now.
$SOAPHandle->on_action(
sub { '"' . $SOAPAction . '"' }
);
# Send request to server.
#
# For SOAP::Lite version > .712 if $SOAPData->{Data} is an array and is sent directly the
# result is that the data is surrounded by <soapenc:Array>, to avoid this is necessary to
# pass each part of the $SOAPData->{Data} Array one by one.
my @CallData = ($SOAPMethod);
if ($SOAPData) {
# Check if $SOAPData->{Data} is an array reference.
if ( IsArrayRefWithData( $SOAPData->{Data} ) ) {
# pPush array element ($DataPart) one by one.
for my $DataPart ( @{ $SOAPData->{Data} } ) {
push @CallData, $DataPart;
}
}
# Otherwise use the same method as before.
else {
push @CallData, $SOAPData->{Data};
}
}
my $SOAPResult = eval {
$SOAPHandle->call(@CallData);
};
my $SOAPResultFault = $@ || '';
if ($SOAPResultFault) {
return {
Success => 0,
ErrorMessage => 'Error in SOAP call: ' . $SOAPResultFault,
};
}
# Check if the soap result is there.
if ( !defined $SOAPResult || !$SOAPResult->body() ) {
return {
Success => 0,
ErrorMessage => 'Got no result body from soap call',
};
}
# Send sent data to debugger.
if ( !$SOAPResult->context()->transport()->proxy()->http_response()->request()->content() ) {
return {
Success => 0,
ErrorMessage => 'SOAP Transport: Could not get XML data sent to remote system',
};
}
my $XMLRequest = $SOAPResult->context()->transport()->proxy()->http_response()->request()->content();
# Get encode object.
my $EncodeObject = $Kernel::OM->Get('Kernel::System::Encode');
$EncodeObject->EncodeInput( \$XMLRequest );
$Self->{DebuggerObject}->Debug(
Summary => 'XML data sent to remote system',
Data => $XMLRequest,
);
# Check received data.
if ( !$SOAPResult->context()->transport()->proxy()->http_response()->content() ) {
return {
Success => 0,
ErrorMessage => 'Could not get XML data received from remote system',
};
}
my $XMLResponse = $SOAPResult->context()->transport()->proxy()->http_response()->content();
# Convert charset if necessary.
if ( $Config->{Encoding} && $Config->{Encoding} !~ m{ \A utf -? 8 \z }xmsi ) {
$XMLResponse = $EncodeObject->Convert(
Text => $XMLResponse,
From => $Config->{Encoding},
To => 'utf-8',
);
}
else {
$EncodeObject->EncodeInput( \$XMLResponse );
}
# Send processed data to debugger
$Self->{DebuggerObject}->Debug(
Summary => 'XML data received from remote system',
Data => $XMLResponse,
);
# Deserialize response.
my $Deserialized = eval {
SOAP::Deserializer->deserialize($XMLResponse);
};
# Check if deserializing was successful.
if ( !defined $Deserialized || !$Deserialized->body() ) {
return {
Success => 0,
ErrorMessage => 'SOAP Transport: Could not deserialize received XML data',
};
}
my $Body = $Deserialized->body();
# Check if we got a SOAP Fault message.
if ( exists $Body->{'Fault'} ) {
my $ErrorMessage = '';
for my $Key ( sort keys %{ $Body->{Fault} } ) {
$ErrorMessage .= "$Key: $Body->{Fault}->{$Key}, ";
}
$ErrorMessage = substr $ErrorMessage, 0, -2;
return {
Success => 0,
ErrorMessage => $ErrorMessage,
};
}
# Build response wrapper name
# possible values are 'Append', 'Plain', 'Replace' and 'Response'
my $OperationResponse = $Param{Operation};
$Config->{ResponseNameScheme} ||= 'Response';
if ( $Config->{ResponseNameScheme} eq 'Response' ) {
$Config->{ResponseNameScheme} = 'Append';
$Config->{ResponseNameFreeText} = 'Response';
}
if ( $Config->{ResponseNameFreeText} ) {
if ( $Config->{ResponseNameScheme} eq 'Append' ) {
# Append configured text.
$OperationResponse .= $Config->{ResponseNameFreeText};
}
elsif ( $Config->{ResponseNameScheme} eq 'Replace' ) {
# Completely replace name with configured text.
$OperationResponse = $Config->{ResponseNameFreeText};
}
}
# Check if we have response data for the specified operation in the soap result.
if ( !exists $Body->{$OperationResponse} ) {
return {
Success => 0,
ErrorMessage =>
"No response data found for specified operation '$Param{Operation}'"
. " in soap response",
};
}
# All OK - return result.
return {
Success => 1,
Data => $Body->{$OperationResponse} || undef,
};
}
=begin Internal:
=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 _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 = 'text/xml';
if ( $Self->{ContentType} ) {
$ContentType = $Self->{ContentType};
}
}
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 $ConfigKeepAlive = $Kernel::OM->Get('Kernel::Config')->Get('SOAP::Keep-Alive');
my $Connection = $ConfigKeepAlive ? '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 _SOAPOutputRecursion()
Convert Perl data structure into a structure usable for SOAP::Lite.
Because some systems require data in a specific order,
the sort order of hash ref entries (and only those) can be specified optionally.
If entries exist that are not mentioned in sorting config,
they will be added after the sorted entries in ascending alphanumerical order.
Example:
$Data = {
Key1 => 'Value',
Key2 => {
Key3 => 'Value',
Key4 => [
'Value',
'Value',
{
Key5 => 'Value',
},
],
},
};
$Sort = [ # wrapper for level 1
{ # first entry for level 1
Key2 => [ # wrapper for level 2
{ # first entry for level 2
Key4 => [
undef,
undef,
[ # wrapper for level 3
{
Key5 => undef, # first entry for level 3
},
], # wrapper for level 3
],
}, # first entry for level 2
{ # second entry for level 2
Key3 => undef,
}, # second entry for level 2
], # wrapper for level 2
} # first entry for level 1
{ # second entry for level 1
Key1 => undef,
} # second entry for level 1
]; # wrapper for level 1
my $Result = $TransportObject->_SOAPOutputRecursion(
Data => { # data payload
...
},
Sort => { # sorting instructions, optional
...
},
);
$Result = {
Success => 1, # 0 or 1
ErrorMessage => '', # in case of error
Data => { # data payload in SOAP::Data format
...
},
};
=cut
sub _SOAPOutputRecursion {
my ( $Self, %Param ) = @_;
# Get and check types of data and sort elements.
my $Type = $Self->_SOAPOutputTypesGet(%Param);
return $Type if !$Type->{Success};
# Process undefined data.
if ( $Type->{Data} eq 'UNDEFINED' ) {
return {
Success => 1,
Data => '',
};
}
# Process string.
if ( $Type->{Data} eq 'STRING' ) {
return {
Success => 1,
Data => $Self->_SOAPOutputProcessString( Data => $Param{Data} ),
};
}
# Process array ref.
if ( $Type->{Data} eq 'ARRAYREF' ) {
my @Result;
KEY:
for my $Key ( @{ $Param{Data} } ) {
# Process key.
my $RecurseResult = $Self->_SOAPOutputRecursion(
Data => $Key,
Sort => $Param{Sort},
);
# Return on error.
return $RecurseResult if !$RecurseResult->{Success};
# Treat result of strings differently.
if ( !defined $Key || IsString($Key) || IsString( $RecurseResult->{Data} ) ) {
push @Result, $RecurseResult->{Data};
next KEY;
}
push @Result, \SOAP::Data->value( @{ $RecurseResult->{Data} } );
}
# Return result of successful recursion.
return {
Success => 1,
Data => \@Result,
};
}
# Process hash ref.
# Sorted entries first.
my %UnsortedData = %{ $Param{Data} };
my @SortedData;
my @Result;
if ( $Type->{Sort} eq 'ARRAYREF' ) {
ELEMENT:
for my $SortArrayElement ( @{ $Param{Sort} } ) {
# For easier reading - structure has already been validated in _SOAPOutputTypesGet().
my ($SortKey) = sort keys %{$SortArrayElement};
# Missing data elements are OK, we just skip them.
next ELEMENT if !exists $UnsortedData{$SortKey};
# Add to sorted data and remove from remaining data hash.
push @SortedData, {
Key => $SortKey,
Data => $UnsortedData{$SortKey},
Sort => $SortArrayElement->{$SortKey},
};
delete $UnsortedData{$SortKey};
next ELEMENT;
}
}
# Add remaining hash entries.
for my $Key ( sort keys %UnsortedData ) {
push @SortedData, {
Key => $Key,
Data => $UnsortedData{$Key},
};
}
# Process (potentially sorted) hash entries.
ENTRY:
for my $Entry (@SortedData) {
# Process element.
my $RecurseResult = $Self->_SOAPOutputHashRecursion(
Data => $Entry->{Data},
Sort => $Entry->{Sort},
);
# Return on error.
return $RecurseResult if !$RecurseResult->{Success};
# Process key and add key/value pair to result.
push @Result, SOAP::Data->name( $Entry->{Key} )->value( $RecurseResult->{Data} );
}
# Return result of successful recursion.
return {
Success => 1,
Data => \@Result,
};
}
=head2 _SOAPOutputHashRecursion()
This is a part of _SOAPOutputRecursion.
It contains the functions to process a hash key/value pair.
my $Result = $TransportObject->_SOAPOutputHashRecursion(
Data => { # data payload
...
},
Sort => { # sort data payload
...
},
);
$Result = {
Success => 1, # 0 or 1
ErrorMessage => '', # in case of error
Data => ( # data payload in SOAP::Data format
...
),
};
=cut
sub _SOAPOutputHashRecursion {
my ( $Self, %Param ) = @_;
# Process data.
my $RecurseResult = $Self->_SOAPOutputRecursion(%Param);
# Return on error.
return $RecurseResult if !$RecurseResult->{Success};
# Set result based on data type.
my $Result;
if ( !defined $Param{Data} || IsString( $Param{Data} ) || IsString( $RecurseResult->{Data} ) ) {
$Result = $RecurseResult->{Data};
}
elsif ( IsArrayRefWithData( $Param{Data} ) ) {
$Result = SOAP::Data->value( @{ $RecurseResult->{Data} } );
}
elsif ( IsHashRefWithData( $Param{Data} ) ) {
$Result = \SOAP::Data->value( @{ $RecurseResult->{Data} } );
}
# This should have caused an error before, but just in case.
else {
return {
Success => 0,
ErrorMessage => 'Unexpected problem - data value is invalid',
};
}
# Return result of successful recursion.
return {
Success => 1,
Data => $Result,
};
}
=head2 _SOAPOutputProcessString()
This is a part of _SOAPOutputRecursion.
It contains functions to quote invalid XML characters and encode the string
my $Result = $TransportObject->_SOAPOutputProcessString(
Data => 'a <string> & more',
);
$Result = 'a <string> & more';
=cut
sub _SOAPOutputProcessString {
my ( $Self, %Param ) = @_;
return '' if !defined $Param{Data};
# Escape characters that are invalid in XML (or might cause problems).
$Param{Data} =~ s{ & }{&}xmsg;
$Param{Data} =~ s{ < }{<}xmsg;
$Param{Data} =~ s{ > }{>}xmsg;
# Remove restricted characters #x1-#x8, #xB-#xC, #xE-#x1F, #x7F-#x84 and #x86-#x9F.
$Param{Data} =~ s{ [\x01-\x08\x0B-\x0C\x0E-\x1F\x7F-\x84\x86-\x9F] }{}msxg;
return $Param{Data};
}
=head2 _SOAPOutputTypesGet()
Determine and validate types of data and (optional) sort attributes.
The structure may contain multiple levels with scalars, array references and hash references.
Empty array references and array references directly within array references
are not permitted as they don't have a valid XML representation.
Undefined data and empty hash references are treated as empty string.
The sorting structure has to be equal to the data structure
with hash references replaced by an array reference and its elements wrapped in individual hash references.
Values in the sorting structure are ignored but have to be specified
(at least 'undef') for correct type detection.
my $Result = $TransportObject->_SOAPOutputTypesGet(
Data => { # data payload
...
},
Sort => { # sorting instructions, optional
...
},
);
$Result = {
Success => 1, # 0 or 1
ErrorMessage => '', # in case of error
Data => 'HASHREF', # type of data content
Sort => 'ARRAYREF', # type of sort content
};
=cut
sub _SOAPOutputTypesGet {
my ( $Self, %Param ) = @_;
# Check types.
my %Type;
KEY:
for my $Key (qw(Data Sort)) {
# Those are valid.
if ( !defined $Param{$Key} ) {
$Type{$Key} = 'UNDEFINED';
next KEY;
}
my $Ref = ref $Param{$Key};
if ( !$Ref ) {
$Type{$Key} = 'STRING';
next KEY;
}
if ( IsArrayRefWithData( $Param{$Key} ) ) {
$Type{$Key} = 'ARRAYREF';
next KEY;
}
# Hash ref is only allowed for data.
if ( IsHashRefWithData( $Param{$Key} ) ) {
$Type{$Key} = 'HASHREF';
next KEY;
}
# Clean up empty hash references for data and empty array references for sort.
if (
$Key eq 'Data' && $Ref eq 'HASH'
|| $Key eq 'Sort' && $Ref eq 'ARRAY'
)
{
$Param{$Key} = undef;
$Type{$Key} = 'UNDEFINED';
next KEY;
}
# Everything else is invalid - throw error.
if ( $Ref eq 'HASH' || $Ref eq 'ARRAY' ) {
$Ref .= ' (empty)';
}
return {
Success => 0,
ErrorMessage => "$Key type '$Ref' is invalid",
};
}
# If there is no data to be sorted set sorting accordingly.
if ( $Type{Data} eq 'UNDEFINED' && $Type{Sort} ne 'UNDEFINED' ) {
$Type{Sort} = 'UNDEFINED';
}
# Types of data and sort must match if sorting is used (=is defined)
# if data is hash reference sort must be array reference.
if (
$Type{Sort} ne 'UNDEFINED'
&& $Type{Data} ne $Type{Sort}
&& !(
$Type{Data} eq 'HASHREF'
&& $Type{Sort} eq 'ARRAYREF'
)
)
{
return {
Success => 0,
ErrorMessage => "Types of Data '$Type{Data}' and Sort '$Type{Sort}' don't match",
};
}
# Sort array content check.
if ( $Type{Sort} eq 'ARRAYREF' ) {
for my $SortArrayElement ( @{ $Param{Sort} } ) {
if ( !IsHashRefWithData($SortArrayElement) ) {
return {
Success => 0,
ErrorMessage => 'Element of sort array is not a hash reference',
};
}
my @SortArrayElementKeys = sort keys %{$SortArrayElement};
if ( scalar @SortArrayElementKeys != 1 ) {
return {
Success => 0,
ErrorMessage =>
'Sort array element hash reference must contain exactly one key/value pair',
};
}
if ( !IsStringWithData( $SortArrayElementKeys[0] ) ) {
return {
Success => 0,
ErrorMessage =>
'Key of sort array element hash reference must be a non zero-length string',
};
}
}
}
# Return validated types.
return {
Success => 1,
Data => $Type{Data},
Sort => $Type{Sort},
};
}
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
|