Newer
Older
<?php
/**
* Copyright (C) 2019 Leipzig University Library
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* @author Sebastian Kehr <kehr@ub.uni-leipzig.de>
* @license http://opensource.org/licenses/gpl-2.0.php GNU GPLv2
*/
namespace fid\Service;
use fid\Service\DataTransferObject\Library;
use fid\Service\DataTransferObject\Logon;
use fid\Service\DataTransferObject\Order;
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
use fid\Service\DataTransferObject\User;
use InvalidArgumentException;
use Psr\Http\Client\ClientExceptionInterface as HttpClientExceptionInterface;
use Psr\Http\Client\ClientInterface as HttpClientInterface;
use Psr\Http\Message\RequestFactoryInterface;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\StreamFactoryInterface;
use Psr\Http\Message\UriFactoryInterface;
use Symfony\Component\Serializer\SerializerInterface;
use VuFind\Cookie\CookieManager;
use Zend\Session\Container as Session;
class Client
{
protected const ERRMSG_HTTPCLIENT
= 'An unexpected http client error occured.';
protected const ERRMSG_HTTPRESPONSE
= 'An unexcected http response occured.';
/**
* @var string
*/
protected $baseUrl;
/**
* @var Session
*/
protected $session;
/**
* @var CookieManager
*/
protected $cookies;
/**
* @var SerializerInterface
*/
protected $serializer;
/**
* @var HttpClientInterface
*/
protected $httpClient;
/**
* @var UriFactoryInterface
*/
protected $uriFactory;
/**
* @var StreamFactoryInterface
*/
protected $streamFactory;
/**
* @var RequestInterface
*/
protected $requestFactory;
/**
* @var string
*/
protected $locale = 'en';
/**
* Client constructor.
*
* @param string $baseUrl
* @param Session $session
* @param CookieManager $cookies
* @param SerializerInterface $serializer
* @param HttpClientInterface $httpClient
* @param UriFactoryInterface $uriFactory
* @param StreamFactoryInterface $streamFactory
* @param RequestFactoryInterface $requestFactory
*/
public function __construct(
string $baseUrl,
Session $session,
CookieManager $cookies,
SerializerInterface $serializer,
HttpClientInterface $httpClient,
UriFactoryInterface $uriFactory,
StreamFactoryInterface $streamFactory,
RequestFactoryInterface $requestFactory
) {
$this->baseUrl = $baseUrl;
$this->session = $session;
$this->cookies = $cookies;
$this->serializer = $serializer;
$this->httpClient = $httpClient;
$this->uriFactory = $uriFactory;
$this->streamFactory = $streamFactory;
$this->requestFactory = $requestFactory;
}
/**
* @param string $locale
*/
public function setLocale(string $locale): void
{
$this->locale = $locale;
}
public function isLoggedOn(): bool
{
try {
return !!$this->restoreLogon();
} catch (ClientException $exception) {
return false;
}
}
/**
* @param string[] $credentials
*
* @return Logon
* @throws ClientException
*/
public function logon(string ...$credentials): Logon
{
$this->logoff();
switch (count($credentials)) {
case 1:
$credentials = base64_decode(urldecode($credentials[0]));
$logon = $this->storeLogon($this->parseLogon($credentials));
return $this->refreshLogon($logon);
case 2:
list($username, $password) = $credentials;
$body = json_encode(compact('username', 'password'));
$request = $this->buildRequest('post', 'logons', $body);
$response = $this->sendRequest($request);
if ($response->getStatusCode() !== 201) {
$this->throwException($response);
}
$logon = $this->parseLogon((string)$response->getBody());
return $this->storeLogon($logon);
default:
throw new InvalidArgumentException();
}
}
/**
* @throws ClientException
*/
public function logoff(): void
{
try {
$logon = $this->restoreLogon();
} catch (ClientException $exception) {
return;
}
$username = $logon->getUsername();
$request = $this->buildRequest('delete', "logons/$username");
$this->cookies->set('finc_fid_logon', null);
$this->session->exchangeArray([]);
$response = $this->sendRequest($request);
switch ($response->getStatusCode()) {
case 404:
case 204:
break;
default:
$this->throwException($response);
}
}
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
/**
* @param Order $order
*
* @return Order
* @throws ClientException
*/
public function requestOrderCreation(Order $order): Order
{
$body = $this->serializer->serialize($order, 'json', [
'groups' => ['order:creation:request'],
]);
$request = $this->buildRequest('post', 'orders', $body);
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 201) {
$this->throwException($response);
}
/** @var Order $result */
$result = $this->serializer->deserialize((string)$response->getBody(),
Order::class, 'json', ['groups' => ['order:creation:response']]);
return $result;
}
/**
* @return array|Order[]
* @throws ClientException
*/
public function requestOrderList(): array
{
if ($list = $this->session['orders'] ?? null) {
return $list;
}
$request = $this->buildRequest('get', 'orders');
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 200) {
$this->throwException($response);
}
/** @var Order[] $list */
$list = $this->serializer->deserialize((string)$response->getBody(),
Order::class . '[]', 'json');
$keys = array_map(function (Order $order) {
return $order->getId();
}, $list);
return $this->session['orders'] = array_combine($keys, $list);
}
/**
* @param string $baseUrl
* @param string $username
* @param string $firstname
* @param string $lastname
*
* @throws ClientException
*/
public function requestRegistrationLink(
string $baseUrl,
string $username,
string $firstname,
string $lastname
): void {
$body = json_encode(compact('baseUrl', 'username', 'firstname',
'lastname'));
$request = $this->buildRequest('post', 'mail/registration', $body);
$response = $this->sendRequest($request);
if ($response->getStatusCode() !== 204) {
$this->throwException($response);
}
}
/**
* @param string $baseUrl
* @param string $username
*
* @return void
* @throws ClientException
*/
public function requestPasswordLink(string $baseUrl, string $username): void
{
$body = json_encode(compact('baseUrl', 'username'));
$request = $this->buildRequest('post', 'mail/password', $body);
$response = $this->sendRequest($request);
if ($response->getStatusCode() !== 204) {
$this->throwException($response);
}
}
/**
* @param string $baseUrl
* @param string $username
*
* @throws ClientException
*/
public function requestUsernameLink(string $baseUrl, string $username): void
{
$body = json_encode(compact('baseUrl', 'username'));
$request = $this->buildRequest('post', 'mail/username', $body);
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 204) {
$this->throwException($response);
}
}
/**
* @return User|null
* @throws ClientException
public function requestUserDetails($userId = null): ?User
{
$logon = $this->restoreLogon();
/** @var User $user */
$user = $this->session['user'] ?? null;
$ownId = $logon->getOwnerId();
if (is_null($userId) || $userId === $ownId) {
// user asks for own profile data
if (!empty($user)) return $user;
$userId = $ownId;
} else {
// user asks for another user's profile
// this shall only be possible for authorized admins
$this->authorize('edit_user');
}
$request = $this->buildRequest('get', "users/$userId");
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 200) {
$this->throwException($response);
}
/** @var User $user */
$user = $this->serializer->deserialize((string)$response->getBody(),
User::class, 'json', ['groups' => ['user:details:response']]);
if ($ownId === $userId) $this->session['user'] = $user;
return $user;
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
}
/**
* @param User $user
*
* @return User
* @throws ClientException
*/
public function requestUserCreation(User $user): User
{
$body = $this->serializer->serialize($user, 'json', [
'groups' => ['user:creation:request']
]);
$request = $this->buildRequest('post', 'users', $body);
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 201) {
$this->throwException($response);
}
/** @var User $result */
$result = $this->serializer->deserialize((string)$response->getBody(),
User::class, 'json', ['groups' => ['user:creation:response']]);
return $result;
}
/**
* @param User $user
*
* @return User
* @throws ClientException
*/
public function requestUserUpdate(User $user): User
{
return $this->doRequestUserUpdate($user, ['user:update:request']);
}
/**
* @param User $user
*
* @return User
* @throws ClientException
*/
public function requestUserPasswordUpdate(User $user): User
{
return $this->doRequestUserUpdate($user,
['user:update-password:request']);
/**
* @param User $user
*
* @return User
* @throws ClientException
*/
public function requestUserUsernameUpdate(User $user): User
{
return $this->doRequestUserUpdate($user, [
'user:update-username:request'
]);
}
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/**
* @return User[]
* @throws ClientException
* @throws UserNotAuthorizedException
*/
public function requestUserList(): array
{
// user asks for another users' profiles
// this shall only be possible for authorized admins
$this->authorize('read_user_list');
if ($list = $this->session['users'] ?? null) {
return $list;
}
$request = $this->buildRequest('get', 'users');
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 200) {
$this->throwException($response);
}
/** @var Library[] $list */
$list = $this->serializer->deserialize(
(string)$response->getBody(), User::class . '[]', 'json');
$keys = array_map(function (User $libary) {
return $libary->getId();
}, $list);
return $this->session['users'] = array_combine($keys, $list);
}
public function flushUserList() {
unset($this->session['users']);
}
/**
* throws an Exception in case the user does not have the requested permission
* or the permission cannot be verified
* @param String $permission Name of the permission
* @param User|null $user user object or null if we want to validate the currently logged in user
* @throws ClientException
* @throws UserNotAuthorizedException
*/
protected function authorize(String $permission,User $user = null) {
$user = $this->requestUserDetails();
if (!$user->hasPermission($permission)) {
throw new UserNotAuthorizedException();
}
}
public function isAuthorized(String $permission) {
try {
$this->authorize($permission);
} catch (\Exception $ex) {
return FALSE;
}
return TRUE;
}
/**
* @return Library[]
* @throws ClientException
*/
public function requestLibraryList(): array
{
if ($list = $this->session['libraries'][$this->locale] ?? null) {
return $list;
}
$request = $this->buildRequest('get', 'libraries');
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 200) {
$this->throwException($response);
}
/** @var Library[] $list */
$list = $this->serializer->deserialize(
(string)$response->getBody(), Library::class . '[]', 'json');
$keys = array_map(function (Library $libary) {
return $libary->getId();
}, $list);
return $this->session['libraries'][$this->locale] = array_combine($keys,
$list);
/**
* @param User $user
* @param array $groups
*
* @return User
* @throws ClientException
*/
protected function doRequestUserUpdate(User $user, array $groups): User
{
$body = $this->serializer->serialize($user, 'json', compact('groups'));
$request = $this->buildRequest('put', "users/{$user->getId()}", $body);
$response = $this->sendAuthenticatedRequest($request);
if ($response->getStatusCode() !== 200) {
$this->throwException($response);
}
/** @var User $result */
$result = $this->serializer->deserialize((string)$response->getBody(),
User::class, 'json', ['groups' => ['user:update:response']]);
$logon = $this->restoreLogon();
if ($logon->getOwnerId() === $user->getId()) {
// refresh user data
$this->session['user'] = $result;
}
return $result;
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
/**
* @return Logon
* @throws ClientException
*/
protected function refreshLogon(Logon $logon): Logon
{
if (time() < $logon->getStalesAt()) {
return $logon;
}
$username = $logon->getUsername();
$password = $logon->getPassword();
$body = json_encode(compact('username', 'password'));
$request = $this->buildRequest('post', 'logons', $body);
$response = $this->sendAuthenticatedRequest($request, false);
if ($response->getStatusCode() !== 201) {
$this->throwException($response);
}
$logon = $this->parseLogon((string)$response->getBody());
return $this->storeLogon($logon);
}
/**
* @param RequestInterface $request
* @param bool $retryOn401
*
* @return ResponseInterface
* @throws ClientException
*/
protected function sendAuthenticatedRequest(
RequestInterface $request,
bool $retryOn401 = true
): ResponseInterface {
$token = ($logon = $this->restoreLogon())->getToken();
$request = $request->withHeader('Authorization', "Bearer $token");
$response = $this->sendRequest($request);
if ($response->getStatusCode() === 401 && $retryOn401) {
$this->refreshLogon($logon);
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
return $this->sendAuthenticatedRequest($request, false);
}
return $response;
}
/**
* @param RequestInterface $request
*
* @return ResponseInterface
* @throws ClientException
*/
protected function sendRequest(RequestInterface $request): ResponseInterface
{
try {
return $this->httpClient->sendRequest($request);
} catch (HttpClientExceptionInterface $exception) {
throw new ClientException(self::ERRMSG_HTTPCLIENT, 0, $exception);
}
}
protected function buildRequest(
string $verb,
string $path,
string $body = '',
array $query = []
): RequestInterface {
$uri = $this->uriFactory->createUri("$this->baseUrl/$path")
->withQuery(http_build_query($query));
return $this->requestFactory->createRequest($verb, $uri)
->withBody($this->streamFactory->createStream($body))
->withHeader('Content-type', 'application/json')
->withHeader('Accept', 'application/json')
->withHeader('Accept-language', $this->locale);
}
/**
* @param ResponseInterface $response
*
* @throws ClientException
*/
protected function throwException(ResponseInterface $response)
{
$errorCode = $response->getStatusCode();
$error = json_decode((string)$response->getBody(), true);
throw new ClientException($error['message'], $errorCode);
}
/**
* @return Logon
* @throws ClientException
*/
protected function restoreLogon(): Logon
{
/** @var Logon $logon */
if ($logon = $this->session['logon'] ?? null) {
$logon->setToken($this->cookies->get('finc_fid_logon'));
if (time() < $logon->getExpiresAt()) {
return $logon;
}
}
$this->session->exchangeArray([]);
$this->cookies->set('finc_fid_logon', null);
throw new ClientException('Missing or expired logon.', 401);
}
protected function storeLogon(Logon $logon): Logon
{
$this->cookies->set('finc_fid_logon', $token = $logon->getToken());
$logon->setToken(null);
$this->session->exchangeArray(compact('logon'));
$logon->setToken($token);
return $logon;
}
protected function parseLogon(string $logon): Logon
{
$logon = $this->serializer->deserialize($logon, Logon::class, 'json');
/** @var Logon $logon */
return $logon;
}
}