-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJobTemplateLibraryService.pm
More file actions
200 lines (167 loc) · 5.06 KB
/
JobTemplateLibraryService.pm
File metadata and controls
200 lines (167 loc) · 5.06 KB
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
package SigniantJobTemplateLibraryService;
use SOAP::Lite;
####################################################################################
# constructor
sub new
{
my ($class) = @_;
my $self = {
_baseUrl => undef,
_username => undef,
_password => undef,
_lastError => undef
};
bless $self, $class;
return $self;
}
####################################################################################
# general setup
sub setup
{
my ( $self, $baseUrl, $username, $password ) = @_;
if ( $baseUrl !~ /\/$/ )
{
$baseUrl .= "/";
}
$self->baseUrl($baseUrl);
$self->username($username);
$self->password($password);
$self->lastError(" ");
return "ok";
}
####################################################################################
# returns (rc, @jobNames)
sub getJobTemplateLibraryNames
{
my ( $self, $jobGroup, $jobName, $action ) = @_;
my $soapCall = SOAP::Lite->proxy( $self->baseUrl . "services/JobTemplateLibraryService" )->uri("");
# Make the SOAP call
my $soapResult = $soapCall->getJobTemplateLibraryNames( $self->username, $self->password, $jobName, $jobGroup, $action );
# .. and handle the result.
if ( $soapResult->fault )
{
showFault( $self, $soapResult );
return (1);
}
else
{
return ( 0, split /,/, $soapResult->result );
}
return ( $soapResult->result() );
}
####################################################################################
# returns (rc)
sub newJobTemplateLibrary
{
my ( $self, $jtlName ) = @_;
my $soapCall = SOAP::Lite->proxy( $self->baseUrl . "services/JobTemplateLibraryService" )->uri("");
# Make the SOAP call
my $soapResult = $soapCall->newJobTemplateLibrary( $self->username, $self->password, $jtlName );
# .. and handle the result.
if ( $soapResult->fault )
{
showFault( $self, $soapResult );
return (1);
}
return ( $soapResult->result() );
}
####################################################################################
# returns (rc)
sub importJobTemplateLibrary
{
my ( $self, $jtlName, $jtlData ) = @_;
my $soapCall = SOAP::Lite->proxy( $self->baseUrl . "services/JobTemplateLibraryService" )->uri("");
# Make the SOAP call
my $soapResult = $soapCall->importJobTemplateLibrary( $self->username, $self->password, $jtlName, $jtlData );
# .. and handle the result.
if ( $soapResult->fault )
{
showFault( $self, $soapResult );
return ( 1, "" );
}
return ( 0, $soapResult->result() );
}
####################################################################################
# returns (rc, jtlXMLString)
sub exportJobTemplateLibrary
{
my ( $self, $jtlName ) = @_;
my $soapCall = SOAP::Lite->proxy( $self->baseUrl . "services/JobTemplateLibraryService" )->uri("");
# Make the SOAP call
my $soapResult = $soapCall->exportJobTemplateLibrary( $self->username, $self->password, $jtlName );
# .. and handle the result.
if ( $soapResult->fault )
{
showFault( $self, $soapResult );
return ( 1, 0 );
}
return ( 0, $soapResult->result() );
}
#################################################
sub dumpComplexHashAsString
{
my ( $self, $depth, %theHash ) = @_;
my $outp = "";
my $depthStr = " " x $depth;
foreach my $key ( sort keys %theHash )
{
my $val = $theHash{$key};
if ( $val =~ /HASH\(0x.*\)/ )
{
$outp .= $depthStr . "$key = " . $val . "\n";
$outp .= dumpComplexHashAsString( $self, $depth + 1, %{ $theHash{$key} } );
}
else
{
$outp .= $depthStr . "$key = " . $val . "\n";
}
}
return ($outp);
}
#################################################
sub showFault
{
my ( $self, $soapResult ) = @_;
my $err =
"Fault Code : "
. $soapResult->faultcode . "\n"
. "Fault String : "
. $soapResult->faultstring . "\n"
. "Fault Detail : "
. $soapResult->faultdetail . "\n"
. dumpComplexHashAsString( $self, 0, %{ $soapResult->faultdetail } ) . "\n";
$self->lastError($err);
print STDERR $err;
}
#################################################
############ accessor methods ###################
#################################################
#accessor method for baseUrl
sub baseUrl
{
my ( $self, $baseUrl ) = @_;
$self->{_baseUrl} = $baseUrl if defined($baseUrl);
return $self->{_baseUrl};
}
#accessor method for username
sub username
{
my ( $self, $username ) = @_;
$self->{_username} = $username if defined($username);
return $self->{_username};
}
#accessor method for password
sub password
{
my ( $self, $password ) = @_;
$self->{_password} = $password if defined($password);
return $self->{_password};
}
#accessor method for lastError
sub lastError
{
my ( $self, $lastError ) = @_;
$self->{_lastError} = $lastError if defined($lastError);
return $self->{_lastError};
}
1;