-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMicroSoftTeamController.php
446 lines (399 loc) · 14.2 KB
/
MicroSoftTeamController.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
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
438
439
440
441
442
443
444
445
446
<?php
/**
* This File defines handlers for Microsoft Team classroom.
*/
namespace App\Http\Controllers\Api\V1;
use App\Http\Controllers\Controller;
use App\Http\Requests\V1\GetTokenViaCode;
use App\Http\Requests\V1\GetUserProfileRequest;
use App\Http\Resources\V1\UserResource;
use App\Repositories\MicrosoftTeam\MicrosoftTeamRepositoryInterface;
use App\Repositories\User\UserRepositoryInterface;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Http;
use App\Http\Requests\V1\MSTeamCreateClassRequest;
use App\Http\Requests\V1\MSTeamCreateAssignmentRequest;
use App\Http\Requests\V1\MSSaveAccessTokenRequest;
use App\Http\Requests\V1\SubmitAssignmentMst;
use App\Models\IndependentActivity;
use App\Models\Playlist;
use App\Models\Project;
use App\Models\Activity;
use App\Jobs\PublishProject;
use App\Jobs\PublishPlaylist;
use App\Jobs\PublishIndependentActivity;
use App\User;
use Redirect;
/**
* Microsoft Team Classroom
*
* APIs for Microsoft Team Classroom
*/
class MicroSoftTeamController extends Controller
{
/**
* User repository object
*
* @var UserRepositoryInterface
*/
private $userRepository;
/**
* MS Team repository object
*
* @var MicrosoftTeamRepositoryInterface
*/
private $microsoftTeamRepository;
/**
* MicroSoftTeamController constructor.
*
* @param MicrosoftTeamRepositoryInterface $microsoftTeamRepository
* @param UserRepositoryInterface $userRepository
*/
public function __construct(MicrosoftTeamRepositoryInterface $microsoftTeamRepository, UserRepositoryInterface $userRepository)
{
$this->microsoftTeamRepository = $microsoftTeamRepository;
$this->userRepository = $userRepository;
}
/**
* Save Access Token
*
* Save MS Graph api access token in the database.
*
* @urlParam gid string User id of current logged in user
* @bodyParam code string The stringified of the GAPI authorization token JSON object
*
* @response {
* "message": "Access token has been saved successfully."
* }
*
* @response 500 {
* "errors": [
* "Failed to save the token."
* ]
* }
*
* @param Request $request
* @return Response
*/
public function getAccessToken(Request $request)
{
if(!empty($request->get('code'))) {
$code = $request->get('code');
$accessToken = $this->microsoftTeamRepository->getToken($code);
$isUpdated = $this->userRepository->update([
'msteam_access_token' => $accessToken
], $request->get('state'));
if ($isUpdated) {
return response([
'message' => 'Access token has been saved successfully.',
], 200);
}
return response([
'errors' => ['Failed to save the token.'],
], 500);
} else {
$gid = $request->get('gid');
$url = $this->microsoftTeamRepository->getLoginUrl($gid);
return Redirect::to($url);
}
}
/**
* get access_token using code
*
* @bodyParam request contains classId, assignmentId, submissionId
*
* @response {
* "message": "Token fetched successfully."
* }
*
* @response 500 {
* "errors": [
* "Invalid grant."
* ]
* }
*
* @param Request $request
* @return Response
*/
public function getAccessTokenViaCode(GetTokenViaCode $request)
{
$accessToken = $this->microsoftTeamRepository->getTokenViaCode($request);
if ($accessToken && array_key_exists('access_token', $accessToken)) {
$request['token'] = $accessToken['access_token'];
$getSubmission = $this->microsoftTeamRepository->getSubmission($request);
if ($getSubmission && array_key_exists('status', $getSubmission)) {
return response([
'status_code' => 200,
'message' => 'Token fetched successfully.',
'access_token' => $accessToken['access_token'],
'assignment_submission' => $getSubmission,
'refresh_token' => $accessToken['refresh_token']
], 200);
}
return response([
'status_code' => 424,
'errors' => $getSubmission['error'],
], 500);
}
return response([
'status_code' => 424,
'errors' => $accessToken['error'],
'message' => $accessToken['error_description']
], 500);
}
/**
* Submit assignment
*
* @bodyParam request contains classId, assignmentId, submissionId
*
* @response {
* "message": "Turned in successfully."
* }
*
* @response 500 {
* "errors": [
* "Failed to Turn in."
* ]
* }
*
* @param SubmitAssignmentMst $request
* @return Response
*/
public function submitAssignment(SubmitAssignmentMst $request)
{
$submitAssignment = $this->microsoftTeamRepository->submitAssignment($request);
if ($submitAssignment['statusCode'] === 200) {
return response([
'status_code' => $submitAssignment['statusCode'],
'message' => 'Turned in successfully. [MST Status => ' . $submitAssignment['status'] . ']'
], 200);
}
return response([
'status_code' => $submitAssignment['error']['code'],
'message' => $submitAssignment['error']['message']
], 500);
}
/**
* Save Access Token
*
* Save GraphAPI access token in the database.
*
* @bodyParam access_token string required The stringified of the GraphAPI access token JSON object
*
* @response {
* "message": "Access token has been saved successfully."
* }
*
* @response 500 {
* "errors": [
* "Failed to save the token."
* ]
* }
*
* @param MSSaveAccessTokenRequest $accessTokenRequest
* @return Response
*/
public function saveAccessToken(MSSaveAccessTokenRequest $accessTokenRequest)
{
$data = $accessTokenRequest->validated();
$authUser = auth()->user();
$isUpdated = $this->userRepository->update([
'msteam_access_token' => $data['access_token']
], $authUser->id);
if ($isUpdated) {
return response([
'message' => 'Access token has been saved successfully.',
], 200);
}
return response([
'errors' => ['Failed to save the token.'],
], 500);
}
/**
* Get List of Classes
*
* Get List of Microsoft Team Classes
* @response 200 {
* "classes": Array of classes
* }
* @return Response
*/
public function getClasses(Request $request)
{
$authUser = auth()->user();
$token = $authUser->msteam_access_token;
return response([
'classes' => $this->microsoftTeamRepository->getClassesList($token),
], 200);
}
/**
* Get User profile
*
* Get User profile of Microsoft Team
* @response 200 {
* "user": Array
* }
* @return Response
*/
public function getUserPofile(GetUserProfileRequest $request)
{
$accessToken = $this->microsoftTeamRepository->getTokenViaCode($request);
if ($accessToken && array_key_exists('access_token', $accessToken)) {
$getProfile = $this->microsoftTeamRepository->getUserProfile($accessToken['access_token']);
if ($getProfile && array_key_exists('displayName', $getProfile)) {
return response([
'profile' => $getProfile,
], 200);
}
}
return response([
'profile' => 'Something went wrong with the login code or token, unable to fetch user profile',
], 400);
}
/**
* Create a new Class
*
* Create a new Class/Team into Microsoft Team
*
* @bodyParam displayName required string Name of the class. Example: Test Class
* @bodyParam access_token string The stringified of the GAPI access token JSON object Example: 123
* @response 200 {
* "message": [
* "Class have been created successfully"
* ]
* }
* * @response 500 {
* "errors": [
* "Something went wrong."
* ]
* }
*
* @param MSTeamCreateClassRequest $createClassRequest
* @return Response
*/
public function createMsTeamClass(MSTeamCreateClassRequest $createClassRequest)
{
$data = $createClassRequest->validated();
$authUser = auth()->user();
$token = $authUser->msteam_access_token;
$response = json_decode($this->microsoftTeamRepository->createMsTeamClass($token, $data),true);
if($response['code'] === 202) {
return response([
'message' => 'Class have been created successfully',
'classId' => $response['classId'],
'aSyncUrl'=> $response['aSyncURL'],
], 200);
}
return response([
'errors' => 'Something went wrong.',
], 500);
}
/**
* Publish project
*
* Publish the project activities as an assignment
*
* @urlParam Project $project required The Id of a project. Example: 9
* @bodyParam classId optional string Id of the class. Example: bebe45d4-d0e6-4085-b418-e98a51db70c3
*
* @response 200 {
* "message": [
* "Your request to publish project [project->name] into MS Team has been received and is being processed.<br>You will be alerted in the notification section in the title bar when complete."
* ]
* }
*
* @response 500 {
* "errors": [
* "Project must be shared as we are temporarily publishing the shared link."
* ]
* }
* @param MSTeamCreateAssignmentRequest $createAssignmentRequest
* @param Project $project
* @return Response
*/
public function publishProject(MSTeamCreateAssignmentRequest $createAssignmentRequest, Project $project)
{
$data = $createAssignmentRequest->validated();
if(!$project->shared) { // temporary check will remove it in future
return response([
'errors' => 'Project must be shared as we are temporarily publishing the shared link.',
], 500);
}
$classId = isset($data['classId']) ? $data['classId'] : '';
// pushed publishing of project in background
PublishProject::dispatch(auth()->user(), $project, $classId)->delay(now()->addSecond());
return response([
'message' => "Your request to publish project [$project->name] into MS Team has been received and is being processed. <br>
You will be alerted in the notification section in the title bar when complete.",
], 200);
}
/**
* Publish independent activity/activity
*
* Publish the independent activity or activity in playlist as an assignment
*
* @urlParam Activity $activity required The Id of a activity. Example: 9
* @bodyParam classId optional uuid Id of the class. Example: bebe45d4-d0e6-4085-b418-e98a51db70c3
*
* @response 200 {
* "message": [
* "Your request to publish activity [activity->title] into MS Team has been received and is being processed.<br>You will be alerted in the notification section in the title bar when complete."
* ]
* }
*
* @response 500 {
* "errors": [
* "Activity must be shared as we are temporarily publishing the shared link."
* ]
* }
* @param MSTeamCreateAssignmentRequest $createAssignmentRequest
* @param Activity $activity
* @return Response
*/
public function publishIndependentActivity(MSTeamCreateAssignmentRequest $createAssignmentRequest, Activity $activity)
{
$data = $createAssignmentRequest->validated();
if(!$activity->shared) { // temporary check will remove it in future
return response([
'errors' => 'Activity must be shared as we are temporarily publishing the shared link.',
], 500);
}
$classId = isset($data['classId']) ? $data['classId'] : '';
// pushed publishing of Activity in background
PublishIndependentActivity::dispatch(auth()->user(), $activity, $classId)->delay(now()->addSecond());
return response([
'message' => "Your request to publish activity [$activity->title] into MS Team has been received and is being processed. <br>
You will be alerted in the notification section in the title bar when complete.",
], 200);
}
/**
* Publish playlist
*
* Publish the playlist activities as an assignment
*
* @urlParam playlist required The Id of a playlist. Example: 9
* @bodyParam classId optional string Id of the class. Example: bebe45d4-d0e6-4085-b418-e98a51db70c3
*
* @response 200 {
* "message": [
* "Your request to publish playlist [playlist->name] into MS Team has been received and is being processed.<br>You will be alerted in the notification section in the title bar when complete."
* ]
* }
*
* @param MSTeamCreateAssignmentRequest $createAssignmentRequest
* @param Playlist $playlist
* @return Response
*/
public function publishPlaylist(MSTeamCreateAssignmentRequest $createAssignmentRequest, Playlist $playlist)
{
$data = $createAssignmentRequest->validated();
$classId = isset($data['classId']) ? $data['classId'] : '';
// pushed publishing of playlist in background
PublishPlaylist::dispatch(auth()->user(), $playlist, $classId)->delay(now()->addSecond());
return response([
'message' => "Your request to publish playlist [$playlist->title] into MS Team has been received and is being processed. <br>
You will be alerted in the notification section in the title bar when complete.",
], 200);
}
}