This repository was archived by the owner on Oct 10, 2018. It is now read-only.
forked from tijsverkoyen/bpost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBpack247.php
239 lines (204 loc) · 5.62 KB
/
Bpack247.php
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
<?php
namespace TijsVerkoyen\Bpost;
use TijsVerkoyen\Bpost\Bpack247\Customer;
/**
* bPost Bpack24/7 class
*
* @author Tijs Verkoyen <[email protected]>
* @version 3.0.0
* @copyright Copyright (c), Tijs Verkoyen. All rights reserved.
* @license BSD License
*/
class Bpack247
{
// URL for the api
const API_URL = 'http://www.bpack247.be/BpostRegistrationWebserviceREST/servicecontroller.svc';
// current version
const VERSION = '3.0.0';
/**
* The account id
*
* @var string
*/
private $accountId;
/**
* A cURL instance
*
* @var resource
*/
private $curl;
/**
* The passPhrase
*
* @var string
*/
private $passPhrase;
/**
* The port to use.
*
* @var int
*/
private $port;
/**
* The timeout
*
* @var int
*/
private $timeOut = 30;
/**
* The user agent
*
* @var string
*/
private $userAgent;
/**
* Make the call
*
* @param string $url The URL to call.
* @param string $body The data to pass.
* @param string $method The HTTP-method to use.
* @return mixed
*/
private function doCall($url, $body = null, $method = 'GET')
{
// build Authorization header
$headers[] = 'Authorization: Basic ' . $this->getAuthorizationHeader();
// set options
$options[CURLOPT_URL] = self::API_URL . $url;
$options[CURLOPT_USERAGENT] = $this->getUserAgent();
$options[CURLOPT_RETURNTRANSFER] = true;
$options[CURLOPT_TIMEOUT] = (int) $this->getTimeOut();
$options[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_1_1;
$options[CURLOPT_HTTPHEADER] = $headers;
if ($method == 'POST') {
$options[CURLOPT_POST] = true;
$options[CURLOPT_POSTFIELDS] = $body;
}
// init
$this->curl = curl_init();
// set options
curl_setopt_array($this->curl, $options);
// execute
$response = curl_exec($this->curl);
$headers = curl_getinfo($this->curl);
// fetch errors
$errorNumber = curl_errno($this->curl);
$errorMessage = curl_error($this->curl);
// error?
if ($errorNumber != '') {
throw new Exception($errorMessage, $errorNumber);
}
// valid HTTP-code
if (!in_array($headers['http_code'], array(0, 200))) {
$xml = @simplexml_load_string($response);
if ($xml !== false && ($xml->getName() == 'businessException' || $xml->getName() == 'validationException')
) {
$message = (string) $xml->message;
$code = isset($xml->code) ? (int) $xml->code : null;
throw new Exception($message, $code);
}
throw new Exception('Invalid response.', $headers['http_code']);
}
// convert into XML
$xml = simplexml_load_string($response);
// validate
if ($xml->getName() == 'businessException') {
$message = (string) $xml->message;
$code = (string) $xml->code;
throw new Exception($message, $code);
}
// return the response
return $xml;
}
/**
* Generate the secret string for the Authorization header
*
* @return string
*/
private function getAuthorizationHeader()
{
return base64_encode($this->accountId . ':' . $this->passPhrase);
}
/**
* Set the timeout
* After this time the request will stop. You should handle any errors triggered by this.
*
* @param int $seconds The timeout in seconds.
*/
public function setTimeOut($seconds)
{
$this->timeOut = (int) $seconds;
}
/**
* Get the timeout that will be used
*
* @return int
*/
public function getTimeOut()
{
return (int) $this->timeOut;
}
/**
* Get the useragent that will be used.
* Our version will be prepended to yours.
* It will look like: "PHP Bpost/<version> <your-user-agent>"
*
* @return string
*/
public function getUserAgent()
{
return (string) 'PHP Bpost Bpack247/' . self::VERSION . ' ' . $this->userAgent;
}
/**
* Set the user-agent for you application
* It will be appended to ours, the result will look like: "PHP Bpost/<version> <your-user-agent>"
*
* @param string $userAgent Your user-agent, it should look like <app-name>/<app-version>.
*/
public function setUserAgent($userAgent)
{
$this->userAgent = (string) $userAgent;
}
/**
* Create Bpost instance
*
* @param string $accountId
* @param string $passPhrase
*/
public function __construct($accountId, $passPhrase)
{
$this->accountId = (string) $accountId;
$this->passPhrase = (string) $passPhrase;
}
// webservice methods
public function createMember(Customer $customer)
{
$url = '/customer';
$document = new \DOMDocument('1.0', 'utf-8');
$document->preserveWhiteSpace = false;
$document->formatOutput = true;
$document->appendChild(
$customer->toXML(
$document
)
);
return $this->doCall(
$url,
$document->saveXML(),
'POST'
);
}
/**
* Retrieve member information
*
* @param string $id
* @return Customer
*/
public function getMember($id)
{
$xml = $this->doCall(
'/customer/' . $id
);
return Customer::createFromXML($xml);
}
}