-
Notifications
You must be signed in to change notification settings - Fork 18
/
Roles.php
71 lines (64 loc) · 1.79 KB
/
Roles.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
<?php
declare(strict_types=1);
namespace Fschmtt\Keycloak\Resource;
use Fschmtt\Keycloak\Collection\RoleCollection;
use Fschmtt\Keycloak\Http\Command;
use Fschmtt\Keycloak\Http\Criteria;
use Fschmtt\Keycloak\Http\Method;
use Fschmtt\Keycloak\Http\Query;
use Fschmtt\Keycloak\Representation\Role;
class Roles extends Resource
{
public function all(string $realm, ?Criteria $criteria = null): RoleCollection
{
return $this->queryExecutor->executeQuery(
new Query(
'/admin/realms/{realm}/roles',
RoleCollection::class,
[
'realm' => $realm,
],
$criteria,
),
);
}
public function get(string $realm, string $roleName): Role
{
return $this->queryExecutor->executeQuery(
new Query(
'/admin/realms/{realm}/roles/{roleName}',
Role::class,
[
'realm' => $realm,
'roleName' => $roleName,
],
),
);
}
public function create(string $realm, Role $role): void
{
$this->commandExecutor->executeCommand(
new Command(
'/admin/realms/{realm}/roles',
Method::POST,
[
'realm' => $realm,
],
$role,
),
);
}
public function delete(string $realm, string $roleName): void
{
$this->commandExecutor->executeCommand(
new Command(
'/admin/realms/{realm}/roles/{roleName}',
Method::DELETE,
[
'realm' => $realm,
'roleName' => $roleName,
],
),
);
}
}