forked from microsoftgraph/aspnet-snippets-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGroupsController.cs
225 lines (195 loc) · 9.04 KB
/
GroupsController.cs
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
/*
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
* See LICENSE in the source repository root for complete license information.
*/
using Microsoft.Graph;
using Microsoft_Graph_ASPNET_Snippets.Helpers;
using Microsoft_Graph_ASPNET_Snippets.Models;
using Resources;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace Microsoft_Graph_ASPNET_Snippets.Controllers.Groups
{
[Authorize]
public class GroupsController : Controller
{
GroupsService groupsService = new GroupsService();
public ActionResult Index()
{
return View("Groups");
}
// Get groups.
// This snippet requires an admin work account.
public async Task<ActionResult> GetGroups()
{
ResultsViewModel results = new ResultsViewModel();
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Get groups.
results.Items = await groupsService.GetGroups(graphClient);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Get Office 365 (unified) groups.
// This snippet requires an admin work account.
public async Task<ActionResult> GetUnifiedGroups()
{
ResultsViewModel results = new ResultsViewModel();
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Get unified groups.
results.Items = await groupsService.GetUnifiedGroups(graphClient);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Get the groups that the current user is a direct member of.
// This snippet requires an admin work account.
public async Task<ActionResult> GetMyMemberOfGroups()
{
ResultsViewModel results = new ResultsViewModel();
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Get groups the current user is a direct member of.
results.Items = await groupsService.GetMyMemberOfGroups(graphClient);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Create a new group. It can be an Office 365 group, dynamic group, or security group.
// This snippet creates an Office 365 (unified) group.
// This snippet requires an admin work account.
public async Task<ActionResult> CreateGroup()
{
ResultsViewModel results = new ResultsViewModel();
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Add the group.
results.Items = await groupsService.CreateGroup(graphClient);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Get a specified group.
// This snippet requires an admin work account.
public async Task<ActionResult> GetGroup(string id)
{
ResultsViewModel results = new ResultsViewModel();
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Get the group.
results.Items = await groupsService.GetGroup(graphClient, id);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Read properties and relationships of group members.
// This snippet requires an admin work account.
public async Task<ActionResult> GetMembers(string id)
{
ResultsViewModel results = new ResultsViewModel(false);
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Get group members.
results.Items = await groupsService.GetMembers(graphClient, id);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Read properties and relationships of group members.
// This snippet requires an admin work account.
public async Task<ActionResult> GetOwners(string id)
{
ResultsViewModel results = new ResultsViewModel(false);
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Get group owners.
results.Items = await groupsService.GetOwners(graphClient, id);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Update a group.
// This snippet changes the group name.
// This snippet requires an admin work account.
public async Task<ActionResult> UpdateGroup(string id, string name)
{
ResultsViewModel results = new ResultsViewModel(false);
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Update the group.
results.Items = await groupsService.UpdateGroup(graphClient, id, name);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
// Delete a group. Warning: This operation cannot be undone.
// This snippet requires an admin work account.
public async Task<ActionResult> DeleteGroup(string id)
{
ResultsViewModel results = new ResultsViewModel(false);
try
{
// Initialize the GraphServiceClient.
GraphServiceClient graphClient = SDKHelper.GetAuthenticatedClient();
// Delete the group.
results.Items = await groupsService.DeleteGroup(graphClient, id);
}
catch (ServiceException se)
{
if (se.Error.Message == Resource.Error_AuthChallengeNeeded) return new EmptyResult();
return RedirectToAction("Index", "Error", new { message = string.Format(Resource.Error_Message, Request.RawUrl, se.Error.Code, se.Error.Message) });
}
return View("Groups", results);
}
}
}