-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBonCardSoap.php
More file actions
370 lines (308 loc) · 7.9 KB
/
Copy pathBonCardSoap.php
File metadata and controls
370 lines (308 loc) · 7.9 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
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
<?php
namespace agentur1601com;
use Exception;
use SoapHeader;
use SoapClient;
use SoapParam;
class BonCardSoap
{
/**
* @var int 1|2 $_soapVersion
*/
protected $_soapVersion = SOAP_1_2;
/**
* url to get commands, vars and functions - so you have not to set them manuel
* @example "https://www.boncard-payment-services.ch/ps_switch2/WSWebShopService.asmx?WSDL"
*
* @var string $_wsdl_url
*/
protected $_wsdl_url;
/**
* @var string $_encoding
*/
protected $_encoding = "UTF-8";
/**
* If 1 you can get the request and response xml and headers
* @example 0 | 1
* @var int $_trace
*/
protected $_trace = 1;
/**
* Timeout after x seconds
* @var int $_timeout
*/
protected $_timeout = 20;
/**
* @var bool $_exception
*/
protected $_exception = false;
/**
* For auth
* @var string $_userId
*/
protected $_userId;
/**
* For auth
* @var string $_password
*/
protected $_password;
/**
* @var SoapHeader $_soapHeader
*/
protected $_soapHeader;
/**
* @var SoapClient $_soapClient
*/
protected $_soapClient;
/**
* Contains data for request
* @var array $_soapData
*/
protected $_soapData;
/**
* Contains the last call
* @var \stdClass $_lastCall
*/
protected $_lastCallResponse;
/**
* BonCardSoap constructor.
* @param null $productive
*/
public function __construct($productive = null)
{
$this->_wsdl_url = "https://www.boncard-payment-services.ch/ps_switch2/WSWebShopService.asmx?WSDL";
if($productive === true)
{
$this->_wsdl_url = "https://www.boncard-payment-services.ch/ps_switch/WSWebShopService.asmx?WSDL";
}
}
/**
* @param int $soapVersion
* @return BonCardSoap
*/
public function setSoapVersion(int $soapVersion = SOAP_1_2) : self
{
$this->_soapVersion = $soapVersion;
return $this;
}
/**
* @param string $wsdlUrl
* @return BonCardSoap
*/
public function setWsdlUrl(string $wsdlUrl) : self
{
$this->_wsdl_url = $wsdlUrl;
return $this;
}
/**
* @param string $encoding
* @return BonCardSoap
*/
public function setEncoding(string $encoding = "UTF-8") : self
{
$this->_encoding = $encoding;
return $this;
}
/**
* @param int $trace
* @return BonCardSoap
*/
public function setTrace(int $trace = 1) : self
{
$this->_trace = $trace;
return $this;
}
/**
* @param int $timeout
* @return BonCardSoap
*/
public function setTimeout(int $timeout = 20) : self
{
$this->_timeout = $timeout;
return $this;
}
/**
* @param bool $exception
* @return BonCardSoap
*/
public function setException(bool $exception) : self
{
$this->_exception = $exception;
return $this;
}
/**
* @param string $userId
* @return BonCardSoap
*/
public function setUserId(string $userId) : self
{
$this->_userId = $userId;
return $this;
}
/**
* @param string $password
* @return BonCardSoap
*/
public function setPassword(string $password) : self
{
$this->_password = $password;
return $this;
}
/**
* @return BonCardSoap
* @throws Exception
*/
public function createSoapHeader() : self
{
if(!$this->_userId || !$this->_password)
{
throw new Exception("UserId / Password has to be set");
}
if(!$this->_soapClient)
{
throw new Exception("SOAP Client has to be created");
}
$this->_soapHeader = new SoapHeader(
"https://www.boncard-payment-services.ch/ps_switch/",
"MyHeader",
[
"UserId" => $this->_userId,
"Password" => $this->_password
]
);
$this->_soapClient->__setSoapHeaders($this->_soapHeader);
return $this;
}
/**
* @return SoapHeader
*/
public function getSoapHeader() : SoapHeader
{
return $this->_soapHeader;
}
/**
* @return BonCardSoap
*/
public function clearSoapHeader() : self
{
$this->_soapClient->__setSoapHeaders();
return $this;
}
/**
* @return BonCardSoap
* @throws Exception
*/
public function createSoapClient() : self
{
if(!$this->_soapVersion === null)
{
throw new Exception("SOAP Version has to be set");
}
if(!$this->_wsdl_url === null)
{
throw new Exception("WSDL URL has to be set");
}
if(!$this->_encoding === null)
{
throw new Exception("Encoding has to be set");
}
if(!$this->_trace === null)
{
throw new Exception("Trace has to be set");
}
if(!$this->_timeout === null)
{
throw new Exception("Timeout has to be set");
}
if(!$this->_exception === null)
{
throw new Exception("Exception has to be set");
}
$this->_soapClient = new SoapClient(
$this->_wsdl_url,
[
'soap_version' => $this->_soapVersion,
'cache_wsdl' => WSDL_CACHE_NONE,
'encoding' => $this->_encoding,
'trace' => $this->_trace,
'connection_timeout' => $this->_timeout,
'exceptions' => $this->_exception,
]
);
return $this;
}
/**
* @return SoapClient
*/
public function getSoapClient() : SoapClient
{
return $this->_soapClient;
}
/**
* @param array $soapDataArr
* @return BonCardSoap
*/
public function setSoapData(array $soapDataArr) : self
{
$this->_soapData = [];
foreach ($soapDataArr as $key => $value)
{
$this->_soapData[] = new SoapParam($value, $key);
}
return $this;
}
/**
* @return array
*/
public function getSoapData() : array
{
return $this->_soapData;
}
/**
* @param string $function
* @return mixed
* @throws Exception
*/
public function sendRequest(string $function)
{
if(!$this->_soapClient)
{
throw new Exception("Soap Client has to be created");
}
if(!$this->_soapHeader)
{
throw new Exception("Soap Header has to be created");
}
$this->_lastCallResponse = $this->_soapClient->__soapCall(
$function,
$this->_soapData
);
return $this->_lastCallResponse;
}
/**
* Return pdf as stream or file path
* @param string|null $pdfPath
* @return bool|string
*/
public function getPDF(string $pdfPath = null)
{
if(!$this->_lastCallResponse->{"pdfData"})
{
return false;
}
if($pdfPath === null)
{
return $this->_lastCallResponse->{"pdfData"};
}
file_put_contents($pdfPath, $this->_lastCallResponse->{"pdfData"});
return $pdfPath;
}
/**
* @param string $xml
* @return mixed
*/
public function simpleParseXML(string $xml)
{
return str_replace([">"],[">\n"],$xml);
}
}