forked from zammad/zammad-api-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.php
More file actions
231 lines (204 loc) · 6.7 KB
/
Client.php
File metadata and controls
231 lines (204 loc) · 6.7 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
<?php
/**
* @package Zammad API Client
* @author Jens Pfeifer <jens.pfeifer@znuny.com>
*/
namespace ZammadAPIClient;
use ZammadAPIClient\Client\Response;
class Client
{
const API_VERSION = 'v1';
private $http_client;
private $last_response;
private $options;
private $on_behalf_of_user;
/**
* Creates a Client object.
*
* @param Array $options Options to use for client:
* $options = [
* // URL of Zammad
* 'url' => 'https://my.zammad.com:3000',
*
* // authentication via username and password
* 'username' => 'my-username',
* 'password' => 'my-password',
* // OR: authentication via HTTP token
* 'http_token' => 'my-token',
* // OR: authentication via OAuth2 token
* 'oauth2_token' => 'my-token',
*
* // Optional: timeout (in seconds) for requests, defaults to 5
* // 0: no timeout
* timeout => 10,
*
* // Optional: Enable debug output
* debug => true,
* ];
*
* @param ?HTTPClientInterface $client Optional, pass in custom HTTP client.
*
* @return Object Client object
*/
public function __construct( array $options = [], ?HTTPClientInterface $client = null)
{
$this->options = $options;
$this->http_client = $client ?? new HTTPClient($options);
}
/**
* Executes a request.
*
* @param String $method GET, PUT, POST, DELETE
* @param String $url E. g. tickets/1
* @param Array $url_parameters E. g. [ 'expand' => true, ]
*
* @return Response object
*/
private function request ( $method, $url, array $url_parameters = [], array $options = [] )
{
$method = mb_strtoupper($method);
if (!empty($url_parameters)) {
$options['query'] = $url_parameters;
}
// Set JSON headers
$options['headers']['Accept'] = 'application/json';
$options['headers']['Content-Type'] = 'application/json; charset=utf-8';
// Set "on behalf of user" header
if ( !empty($this->on_behalf_of_user) ) {
$options['headers']['X-On-Behalf-Of'] = $this->on_behalf_of_user;
}
$http_client_response = $this->http_client->request( $method, $url, $options );
if ( !is_object($http_client_response) ) {
throw new \RuntimeException('Unable to create HTTP client request.');
}
// Turn HTTP client's response into our own.
$response = new Response(
$http_client_response->getStatusCode(),
$http_client_response->getReasonPhrase(),
$http_client_response->getBody(),
$http_client_response->getHeaders()
);
$this->setLastResponse($response);
return $response;
}
/**
* Executes GET request.
*
* @param String $url E. g. tickets/1
* @param Array $url_parameters E. g. [ 'expand' => true, ]
*
* @return Response object
*/
public function get( $url, array $url_parameters = [] )
{
$response = $this->request(
'GET',
$url,
$url_parameters
);
return $response;
}
/**
* Executes POST request.
*
* @param String $url E. g. tickets/1
* @param Array $data Array with data to send as JSON.
* @param Array $url_parameters E. g. [ 'expand' => true, ]
*
* @return Response object
*/
public function post( $url, array $data = [], array $url_parameters = [] )
{
$response = $this->request(
'POST',
$url,
$url_parameters,
[ 'json' => $data, ]
);
return $response;
}
/**
* Executes PUT request.
*
* @param String $url E. g. tickets/1
* @param Array $data Array with data to send as JSON.
* @param Array $url_parameters E. g. [ 'expand' => true, ]
*
* @return Response object
*/
public function put( $url, array $data = [], array $url_parameters = [] )
{
$response = $this->request(
'PUT',
$url,
$url_parameters,
[ 'json' => $data, ]
);
return $response;
}
/**
* Executes DELETE request.
*
* @param String $url E. g. tickets/1
* @param Array $url_parameters E. g. [ 'expand' => true, ]
*
* @return Response object
*/
public function delete( $url, array $url_parameters = [] )
{
$response = $this->request(
'DELETE',
$url,
$url_parameters
);
return $response;
}
/**
* Creates a resource object.
*
* @param String $resource_type ResourceType::TICKET
*
* @return Object Resource object
*/
public function resource($resource_type)
{
$resource_object = new $resource_type($this);
return $resource_object;
}
/**
* Sets user on behalf of which API calls will be executed.
*
* @param String $user User ID, login or email address
*/
public function setOnBehalfOfUser($user)
{
$this->on_behalf_of_user = $user;
}
/**
* Unsets user on behalf of which API calls will be executed.
* API calls will then be called again by the user who is being used
* for authentication.
*/
public function unsetOnBehalfOfUser()
{
$this->on_behalf_of_user = null;
}
/**
* Stores Response object as last Response object.
*
* @param Object $response Response object to store.
*/
private function setLastResponse( Response $response )
{
$this->last_response = $response;
}
/**
* Returns last Response object.
*
* @return objects Last Response object.
*/
public function getLastResponse()
{
return $this->last_response;
}
}