-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathUserService.php
101 lines (78 loc) · 2.96 KB
/
UserService.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
<?php declare(strict_types=1);
namespace Vin\ShopwareSdk\Service;
use Vin\ShopwareSdk\Data\Entity\User\UserEntity;
/**
* Class UserService
* @package Vin\ShopwareSdk\Service
*/
class UserService extends ApiService
{
private const USER_INFO_ENDPOINT = '/api/_info/me';
public function me(array $headers = []): UserEntity
{
$response = $this->httpClient->get($this->getFullUrl(self::USER_INFO_ENDPOINT), [
'headers' => $this->getBasicHeaders($headers)
]);
$contents = self::handleResponse($response->getBody()->getContents(), $response->getHeaders());
$response = new ApiResponse($contents, $response->getHeaders(), $response->getStatusCode());
$data = $response->getContents()['data']['attributes'];
$entity = new UserEntity();
$entity->assignProperties($data);
return $entity;
}
public function updateMe(array $headers = []): void
{
$this->httpClient->patch($this->getFullUrl(self::USER_INFO_ENDPOINT), [
'headers' => $this->getBasicHeaders($headers)
]);
}
public function status(array $headers = []): void
{
$this->httpClient->post($this->getFullUrl('/api/_info/ping'), [
'headers' => $this->getBasicHeaders($headers)
]);
}
public function upsertUser(string $userId, array $headers = []): void
{
$data['id'] = $userId;
$this->httpClient->post($this->getFullUrl('/api/user'), [
'body' => json_encode($data),
'headers' => $this->getBasicHeaders($headers)
]);
}
public function deleteUser(string $userId, array $headers = []): void
{
$data = ['user-verified' => true];
$this->httpClient->delete($this->getFullUrl('/api/user/' . $userId), [
'body' => json_encode($data),
'headers' => $this->getBasicHeaders($headers)
]);
}
public function upsertRole(array $headers = [], ?string $roleId = null): void
{
$data = ['user-verified' => true];
if ($roleId) {
$data['id'] = $roleId;
}
$this->httpClient->post($this->getFullUrl('/api/acl-role'), [
'body' => json_encode($data),
'headers' => $this->getBasicHeaders($headers)
]);
}
public function deleteUserRole(string $userId, string $roleId, array $headers = []): void
{
$data = ['user-verified' => true];
$this->httpClient->delete($this->getFullUrl(sprintf('/api/user/%s/acl-role/%s', $userId, $roleId)), [
'body' => json_encode($data),
'headers' => $this->getBasicHeaders($headers)
]);
}
public function deleteRole(string $roleId, array $headers = []): void
{
$data = ['user-verified' => true];
$this->httpClient->delete($this->getFullUrl(sprintf('/api/acl-role/%s', $roleId)), [
'body' => json_encode($data),
'headers' => $this->getBasicHeaders($headers)
]);
}
}