-
Notifications
You must be signed in to change notification settings - Fork 20
/
Organizations.php
77 lines (69 loc) · 2.22 KB
/
Organizations.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
<?php
declare(strict_types=1);
namespace Fschmtt\Keycloak\Resource;
use Fschmtt\Keycloak\Collection\OrganizationCollection;
use Fschmtt\Keycloak\Http\Command;
use Fschmtt\Keycloak\Http\Criteria;
use Fschmtt\Keycloak\Http\Method;
use Fschmtt\Keycloak\Http\Query;
use Fschmtt\Keycloak\Representation\Organization;
class Organizations extends Resource
{
public function all(string $realm, ?Criteria $criteria = null): OrganizationCollection
{
return $this->queryExecutor->executeQuery(
new Query(
'/admin/realms/{realm}/organizations',
OrganizationCollection::class,
['realm' => $realm],
$criteria,
),
);
}
public function get(string $realm, string $id): Organization
{
return $this->queryExecutor->executeQuery(
new Query(
'/admin/realms/{realm}/organizations/{id}',
Organization::class,
['realm' => $realm, 'id' => $id],
),
);
}
public function create(string $realm, Organization $organization): void
{
$this->commandExecutor->executeCommand(
new Command(
'/admin/realms/{realm}/organizations',
Method::POST,
['realm' => $realm],
$organization,
),
);
}
public function delete(string $realm, string $id): void
{
$this->commandExecutor->executeCommand(
new Command(
'/admin/realms/{realm}/organizations/{id}',
Method::DELETE,
['realm' => $realm, 'id' => $id],
),
);
}
public function inviteUser(string $realm, string $id, string $email, string $firstName, string $lastName): void
{
$this->commandExecutor->executeCommand(
new Command(
'/admin/realms/{realm}/organizations/{id}/members/invite-user',
Method::POST,
['realm' => $realm, 'id' => $id],
payload: [
'email' => $email,
'firstName' => $firstName,
'lastName' => $lastName,
],
),
);
}
}