-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathDirectorySync.php
More file actions
263 lines (235 loc) · 7.19 KB
/
DirectorySync.php
File metadata and controls
263 lines (235 loc) · 7.19 KB
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
<?php
namespace WorkOS;
/**
* Class DirectorySync.
*
* This class facilitates the user of WorkOS Directory Sync.
*/
class DirectorySync
{
public const DEFAULT_PAGE_SIZE = 10;
/**
* List Directories.
*
* @param null|string $domain Domain of a Directory
* @param null|string $search Searchable text for a Directory
* @param int $limit Maximum number of records to return
* @param null|string $before Directory ID to look before
* @param null|string $after Directory ID to look after
* @param null|string $organizationId Unique ID for an organization
* @param Resource\Order $order The Order in which to paginate records
*
* @throws Exception\WorkOSException
*
* @return array{?string, ?string, Resource\Directory[]} An array containing the Directory ID to use as before and after cursor, and an array of Directory instances
*/
public function listDirectories(
$domain = null,
$search = null,
$limit = self::DEFAULT_PAGE_SIZE,
$before = null,
$after = null,
$organizationId = null,
$order = null
) {
$directoriesPath = "directories";
$params = [
"limit" => $limit,
"before" => $before,
"after" => $after,
"domain" => $domain,
"search" => $search,
"organization_id" => $organizationId,
"order" => $order
];
$response = Client::request(
Client::METHOD_GET,
$directoriesPath,
null,
$params,
true
);
$directories = [];
list($before, $after) = Util\Request::parsePaginationArgs($response);
foreach ($response["data"] as $responseData) {
\array_push($directories, Resource\Directory::constructFromResponse($responseData));
}
return [$before, $after, $directories];
}
/**
* List Directory Groups.
*
* @param null|string $directory Directory ID
* @param null|string $user Directory User ID
* @param int $limit Maximum number of records to return
* @param null|string $before Directory Group ID to look before
* @param null|string $after Directory Group ID to look after
* @param Resource\Order $order The Order in which to paginate records
*
* @throws Exception\WorkOSException
*
* @return array{?string, ?string, Resource\DirectoryGroup[]} An array containing the Directory Group ID to use as before and after cursor, and an array of Directory Group instances
*/
public function listGroups(
$directory = null,
$user = null,
$limit = self::DEFAULT_PAGE_SIZE,
$before = null,
$after = null,
$order = null
) {
$groupsPath = "directory_groups";
$params = [
"limit" => $limit,
"before" => $before,
"after" => $after,
"order" => $order
];
if ($directory) {
$params["directory"] = $directory;
}
if ($user) {
$params["user"] = $user;
}
$response = Client::request(
Client::METHOD_GET,
$groupsPath,
null,
$params,
true
);
$groups = [];
list($before, $after) = Util\Request::parsePaginationArgs($response);
foreach ($response["data"] as $response) {
\array_push($groups, Resource\DirectoryGroup::constructFromResponse($response));
}
return [$before, $after, $groups];
}
/**
* Get a Directory Group.
*
* @param string $directoryGroup Directory Group ID
*
* @throws Exception\WorkOSException
*
* @return Resource\DirectoryGroup
*/
public function getGroup($directoryGroup)
{
$groupPath = "directory_groups/{$directoryGroup}";
$response = Client::request(
Client::METHOD_GET,
$groupPath,
null,
null,
true
);
return Resource\DirectoryGroup::constructFromResponse($response);
}
/**
* List Directory Users.
*
* @param null|string $directory Directory ID
* @param null|string $group Directory Group ID
* @param int $limit Maximum number of records to return
* @param null|string $before Directory User ID to look before
* @param null|string $after Directory User ID to look after
* @param Resource\Order $order The Order in which to paginate records
*
* @return array{?string, ?string, Resource\DirectoryUser[]} An array containing the Directory User ID to use as before and after cursor, and an array of Directory User instances
*
* @throws Exception\WorkOSException
*/
public function listUsers(
$directory = null,
$group = null,
$limit = self::DEFAULT_PAGE_SIZE,
$before = null,
$after = null,
$order = null
) {
$usersPath = "directory_users";
$params = [
"limit" => $limit,
"before" => $before,
"after" => $after,
"order" => $order
];
if ($directory) {
$params["directory"] = $directory;
}
if ($group) {
$params["group"] = $group;
}
$response = Client::request(
Client::METHOD_GET,
$usersPath,
null,
$params,
true
);
$users = [];
list($before, $after) = Util\Request::parsePaginationArgs($response);
foreach ($response["data"] as $response) {
\array_push($users, Resource\DirectoryUser::constructFromResponse($response));
}
return [$before, $after, $users];
}
/**
* Get a Directory User.
*
* @param string $directoryUser Directory User ID
*
* @throws Exception\WorkOSException
*
* @return Resource\DirectoryUser
*/
public function getUser($directoryUser)
{
$userPath = "directory_users/{$directoryUser}";
$response = Client::request(
Client::METHOD_GET,
$userPath,
null,
null,
true
);
return Resource\DirectoryUser::constructFromResponse($response);
}
/**
* Delete a Directory.
*
* @param string $directory Directory ID
*
* @throws Exception\WorkOSException
*
* @return Resource\Response
*/
public function deleteDirectory($directory)
{
$directoryPath = "directories/{$directory}";
$response = Client::request(
Client::METHOD_DELETE,
$directoryPath,
null,
null,
true
);
return $response;
}
/**
* Get a Directory.
*
* @param string $directory WorkOS directory ID
*
* @throws Exception\WorkOSException
*
* @return Resource\Directory
*/
public function getDirectory($directory)
{
$directoriesPath = "directories/{$directory}";
$response = Client::request(Client::METHOD_GET, $directoriesPath, null, null, true);
return Resource\Directory::constructFromResponse($response);
}
}