-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLexOfficeClient.php
291 lines (252 loc) · 6.92 KB
/
LexOfficeClient.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
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
<?php
namespace Exbil\LexOffice;
use Exbil\LexOffice\Contact\Contact as ContactClient;
use Exbil\LexOffice\Country\Country as CountryClient;
use Exbil\LexOffice\CreditNote\CreditNote as CreditNoteClient;
use Exbil\LexOffice\DownPaymentInvoice\DownPaymentInvoice as DownPaymentInvoiceClient;
use Exbil\LexOffice\Event\Event as EventClient;
use Exbil\LexOffice\File\File as FileClient;
use Exbil\LexOffice\Invoice\Invoice as InvoiceClient;
use Exbil\LexOffice\OrderConfirmation\OrderConfirmation;
use Exbil\LexOffice\OrderConfirmation\OrderConfirmation as OrderConfirmationClient;
use Exbil\LexOffice\Payment\Payment as PaymentClient;
use Exbil\LexOffice\PaymentCondition\PaymentCondition as PaymentConditionClient;
use Exbil\LexOffice\PostingCategory\PostingCategory;
use Exbil\LexOffice\Profile\Profile as ProfileClient;
use Exbil\LexOffice\PostingCategory\PostingCategory as PostingCategoryClient;
use Exbil\LexOffice\Quotation\Quotation as QuotationClient;
use Exbil\LexOffice\Traits\CacheResponseTrait;
use Exbil\LexOffice\RecurringTemplate\RecurringTemplate as RecurringTemplateClient;
use Exbil\LexOffice\Voucher\Voucher as VoucherClient;
use Exbil\LexOffice\Voucherlist\Voucherlist as VoucherlistClient;
use Exbil\LexOffice\Exceptions\LexOfficeApiException;
use Exbil\LexOffice\Exceptions\CacheException;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Psr7\Request;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
class LexOfficeClient
{
use CacheResponseTrait;
/**
* the library version
*/
public const VERSION = "0.14.1";
/**
* the lex-office api url
*
* @var string $apiUrl
*/
public string $apiUrl = 'https://api.lexoffice.io';
/**
* the lex-office api version
*
* @var string $apiVersion
*/
protected string $apiVersion = 'v1';
/**
* the lex-office api key
*
* @var string $apiKey
*/
protected string $apiKey;
/**
* @var Client $client
*/
protected Client $client;
/**
* @var Request|null $request
*/
public ?Request $request = null;
/**
* LexOffice constructor.
* @param string $apiKey
* @param Client|null $client
*/
public function __construct(string $apiKey, Client $client = null)
{
if (is_null($client)) {
$client = new Client();
}
$this->apiKey = $apiKey;
$this->client = $client;
}
/**
* @param $method
* @param $resource
* @param array $headers
* @return $this
*/
public function newRequest($method, $resource, $headers = []): self
{
$this->setRequest(
new Request($method, $this->createApiUrl($resource), $headers)
);
return $this;
}
/**
* @param RequestInterface $request
* @return $this
*/
public function setRequest(RequestInterface $request)
{
$request = $request
->withHeader('Authorization', 'Bearer ' . $this->apiKey)
->withHeader('Accept', 'application/json');
if (!$request->hasHeader('Content-Type') && in_array($request->getMethod(), ['POST', 'PUT'])) {
$request = $request->withHeader('Content-Type', 'application/json');
}
$this->request = $request;
return $this;
}
/**
* @param string $resource
* @return string
*/
protected function createApiUrl(string $resource): string
{
return $this->apiUrl . '/' . $this->apiVersion . '/' . $resource;
}
/**
* @return ResponseInterface
* @throws CacheException
* @throws LexOfficeApiException
*/
public function getResponse()
{
$cache = null;
if ($this->cacheInterface) {
$response = $cache = $this->getCacheResponse($this->request);
}
// when no cacheInterface is set or the cache is invalid
if (!isset($response) || !$response) {
try {
$response = $this->client->send($this->request);
} catch (GuzzleException $exception) {
throw new LexOfficeApiException(
$exception->getMessage(),
$exception->getCode(),
$exception
);
}
}
// set cache response when cache is invalid
if ($this->cacheInterface && !$cache) {
$this->setCacheResponse($this->request, $response);
}
return $response;
}
/**
* @return ContactClient
*/
public function contact(): ContactClient
{
return new ContactClient($this);
}
/**
* @return CountryClient
*/
public function country(): CountryClient
{
return new CountryClient($this);
}
/**
* @return EventClient
*/
public function event(): EventClient
{
return new EventClient($this);
}
/**
* @return InvoiceClient
*/
public function invoice(): InvoiceClient
{
return new InvoiceClient($this);
}
/**
* @return DownPaymentInvoiceClient
*/
public function downPaymentInvoice(): DownPaymentInvoiceClient
{
return new DownPaymentInvoiceClient($this);
}
/**
* @return OrderConfirmationClient
*/
public function orderConfirmation(): OrderConfirmationClient
{
return new OrderConfirmationClient($this);
}
/**
* @return PaymentClient
*/
public function payment(): PaymentClient
{
return new PaymentClient($this);
}
/**
* @return PaymentConditionClient
*/
public function paymentCondition(): PaymentConditionClient
{
return new PaymentConditionClient($this);
}
/**
* @return CreditNoteClient
*/
public function creditNote(): CreditNoteClient
{
return new CreditNoteClient($this);
}
/**
* @return QuotationClient
*/
public function quotation(): QuotationClient
{
return new QuotationClient($this);
}
/**
* @return VoucherClient
*/
public function voucher(): VoucherClient
{
return new VoucherClient($this);
}
/**
* @return RecurringTemplateClient
*/
public function recurringTemplate(): RecurringTemplateClient
{
return new RecurringTemplateClient($this);
}
/**
* @return VoucherlistClient
*/
public function voucherlist(): VoucherlistClient
{
return new VoucherlistClient($this);
}
/**
* @return ProfileClient
*/
public function profile(): ProfileClient
{
return new ProfileClient($this);
}
/**
* @return PostingCategoryClient
*/
public function postingCategory(): PostingCategoryClient
{
return new PostingCategoryClient($this);
}
/**
* @return FileClient
*/
public function file(): FileClient
{
return new FileClient($this);
}
}