-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathOrganization.cs
More file actions
437 lines (389 loc) · 19.3 KB
/
Organization.cs
File metadata and controls
437 lines (389 loc) · 19.3 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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
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
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Contentstack.Management.Core.Queryable;
using Contentstack.Management.Core.Services.Organization;
using Contentstack.Management.Core.Utils;
namespace Contentstack.Management.Core.Models
{
public class Organization
{
private readonly ContentstackClient _client;
#region Constructor
public Organization(ContentstackClient contentstackClient, string uid = null)
{
_client = contentstackClient;
Uid = uid;
}
#endregion
#region Public
public string Uid { get; set; }
/// <summary>
/// The Get all/single organizations call lists all organizations related to the system user in the order that they were created.
/// </summary>
/// <param name="parameters">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization();
/// ContentstackResponse contentstackResponse = organization.GetOrganizations();
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse GetOrganizations(ParameterCollection parameters = null)
{
_client.ThrowIfNotLoggedIn();
var Organizations = new GetOrganizations(_client.serializer, parameters, this.Uid);
return _client.InvokeSync(Organizations);
}
/// <summary>
/// The Get all/single organizations call lists all organizations related to the system user in the order that they were created.
/// </summary>
/// <param name="parameters">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization();
/// ContentstackResponse contentstackResponse = await organization.GetOrganizationsAsync();
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> GetOrganizationsAsync(ParameterCollection parameters = null)
{
_client.ThrowIfNotLoggedIn();
var Organizations = new GetOrganizations(_client.serializer, parameters, this.Uid);
return _client.InvokeAsync<GetOrganizations, ContentstackResponse>(Organizations);
}
/// <summary>
/// The Get all roles in an organization call gives the details of all the roles that are set to users in an Organization.
/// </summary>
/// <param name="parameters">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = organization.Roles();
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse Roles(ParameterCollection parameters = null)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var Roles = new OrganizationRolesService(_client.serializer, this.Uid, parameters);
return _client.InvokeSync(Roles);
}
/// <summary>
/// The Get all roles in an organization call gives the details of all the roles that are set to users in an Organization.
/// </summary>
/// <param name="parameters">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = await organization.RolesAsync();
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> RolesAsync(ParameterCollection parameters = null)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var Roles = new OrganizationRolesService(_client.serializer, this.Uid, parameters);
return _client.InvokeAsync<OrganizationRolesService, ContentstackResponse>(Roles);
}
/// <summary>
/// The Add users to organization call allows you to send invitations to add users to your organization. Only the owner or the admin of the organization can add users.
/// </summary>
/// <param name="orgInvite">List of User invitation.</param>
/// <param name="stackInvite">Stack Uid with user invitation details.</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// UserInvitation invitation = new UserInvitation()
/// {
/// Email = "<EMAIL>",
/// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
/// };
/// ContentstackResponse contentstackResponse = organization.AddUser(new System.Collections.Generic.List<UserInvitation>()
/// {
/// invitation
/// },
/// new Dictionary<string, List<UserInvitation>> ()
/// {
/// "<STACK_UID>"= invitation
/// });
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse AddUser(List<UserInvitation> orgInvite, Dictionary<string, List<UserInvitation>> stackInvite)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var userInviteService = new UserInvitationService(_client.serializer, this.Uid, "POST");
if (orgInvite != null)
{
userInviteService.AddOrganizationInvite(orgInvite);
}
if (stackInvite != null)
{
userInviteService.AddStackInvite(stackInvite);
}
return _client.InvokeSync(userInviteService);
}
/// <summary>
/// The Add users to organization call allows you to send invitations to add users to your organization. Only the owner or the admin of the organization can add users.
/// </summary>
/// <param name="orgInvite">List of User invitation.</param>
/// <param name="stackInvite">Stack Uid with user invitation details.</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// UserInvitation invitation = new UserInvitation()
/// {
/// Email = "<EMAIL>",
/// Roles = new System.Collections.Generic.List<string>() { "<ROLE_UID>" }
/// };
/// ContentstackResponse contentstackResponse = await organization.AddUserAsync(new System.Collections.Generic.List<UserInvitation>()
/// {
/// invitation
/// },
/// new <string, List<UserInvitation>> ()
/// {
/// "<STACK_UID>"= invitation
/// }
/// );
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> AddUserAsync(List<UserInvitation> orgInvite, Dictionary<string, List<UserInvitation>> stackInvite)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var userInviteService = new UserInvitationService(_client.serializer, this.Uid, "POST");
if (orgInvite != null)
{
userInviteService.AddOrganizationInvite(orgInvite);
}
if (stackInvite != null)
{
userInviteService.AddStackInvite(stackInvite);
}
return _client.InvokeAsync<UserInvitationService, ContentstackResponse>(userInviteService);
}
/// <summary>
/// The Remove users from organization request allows you to remove existing users from your organization.
/// </summary>
/// <param name="emails">List of emails to be remove from the Organization</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = organization.RemoveUser(new List() { "<EMAIL>" });
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse RemoveUser(List<string> emails)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
if (emails == null)
{
throw new ArgumentNullException("emails", CSConstants.EmailsRequired);
}
var userInviteService = new UserInvitationService(_client.serializer, this.Uid, "DELETE");
userInviteService.RemoveUsers(emails);
return _client.InvokeSync(userInviteService);
}
/// <summary>
/// The Remove users from organization request allows you to remove existing users from your organization.
/// </summary>
/// <param name="emails">List of emails to be remove from the Organization</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = await organization.RemoveUserAsync(new List() { "<EMAIL>" });
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> RemoveUserAsync(List<string> emails)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
if (emails == null)
{
throw new ArgumentNullException("emails", CSConstants.EmailsRequired);
}
var userInviteService = new UserInvitationService(_client.serializer, this.Uid, "DELETE");
userInviteService.RemoveUsers(emails);
return _client.InvokeAsync<UserInvitationService, ContentstackResponse>(userInviteService);
}
/// <summary>
/// he Resend pending organization invitation call allows you to resend Organization invitations to users who have not yet accepted the earlier invitation.
/// Only the owner or the admin of the Organization can resend the invitation to add users to an Organization.
/// </summary>
/// <param name="shareUid">Uid for share invitation send to user.</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = organization.ResendInvitation("<SHARE_UID>");
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse ResendInvitation(string shareUid)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var userInviteService = new ResendInvitationService(_client.serializer, this.Uid, shareUid);
return _client.InvokeSync(userInviteService);
}
/// <summary>
/// he Resend pending organization invitation call allows you to resend Organization invitations to users who have not yet accepted the earlier invitation.
/// Only the owner or the admin of the Organization can resend the invitation to add users to an Organization.
/// </summary>
/// <param name="shareUid">Uid for share invitation send to user.</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = await organization.ResendInvitationAsync("<SHARE_UID>");
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> ResendInvitationAsync(string shareUid)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var userInviteService = new ResendInvitationService(_client.serializer, this.Uid, shareUid);
return _client.InvokeAsync<ResendInvitationService, ContentstackResponse>(userInviteService);
}
/// <summary>
/// The Get all organization invitations call gives you a list of all the Organization invitations.
/// </summary>
/// <param name="parameter">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = organization.GetInvitations();
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse GetInvitations(ParameterCollection parameter = null)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var userInviteService = new UserInvitationService(_client.serializer, this.Uid, "GET", parameter);
return _client.InvokeSync(userInviteService);
}
/// <summary>
/// The Get all organization invitations call gives you a list of all the Organization invitations.
/// </summary>
/// <param name="parameter">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = await organization.GetInvitationsAsync();
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> GetInvitationsAsync(ParameterCollection parameter = null)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var userInviteService = new UserInvitationService(_client.serializer, this.Uid, "GET", parameter);
return _client.InvokeAsync<UserInvitationService, ContentstackResponse>(userInviteService);
}
/// <summary>
/// The Transfer organization ownership call transfers the ownership of an Organization to another user.
/// </summary>
/// <param name="email">The email id of user for transfer.</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = organization.TransferOwnership("<EMAIL>");
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse TransferOwnership(string email)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var service = new TransferOwnershipService(_client.serializer, this.Uid, email);
return _client.InvokeSync(service);
}
/// <summary>
/// The Transfer organization ownership call transfers the ownership of an Organization to another user.
/// </summary>
/// <param name="email">The email id of user for transfer.</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = await organization.TransferOwnershipAsync("<EMAIL>");
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> TransferOwnershipAsync(string email)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var service = new TransferOwnershipService(_client.serializer, this.Uid, email);
return _client.InvokeAsync<TransferOwnershipService, ContentstackResponse>(service);
}
/// <summary>
/// The get Stacks call gets all the Stack within the Organization.
/// </summary>
/// <param name="parameters">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = organization.GetStacks();
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/></returns>
public ContentstackResponse GetStacks(ParameterCollection parameter = null)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var service = new OrganizationStackService(_client.serializer, this.Uid, parameter);
return _client.InvokeSync(service);
}
/// <summary>
/// The get Stacks call gets all the Stack within the Organization.
/// </summary>
/// <param name="parameter">URI query parameters</param>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// Organization organization = client.Organization("<ORG_UID>");
/// ContentstackResponse contentstackResponse = await organization.GetStacksAsync();
/// </code></pre>
/// </example>
/// <returns>The Task</returns>
public Task<ContentstackResponse> GetStacksAsync(ParameterCollection parameter = null)
{
_client.ThrowIfNotLoggedIn();
this.ThrowIfOrganizationUidNull();
var service = new OrganizationStackService(_client.serializer, this.Uid, parameter);
return _client.InvokeAsync<OrganizationStackService, ContentstackResponse>(service);
}
#endregion
#region Private
private void ThrowIfOrganizationUidNull()
{
if (string.IsNullOrEmpty(this.Uid))
{
throw new InvalidOperationException(CSConstants.OrganizationUIDRequired);
}
}
#endregion
}
}