-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationController.php
More file actions
528 lines (473 loc) · 16.9 KB
/
ApplicationController.php
File metadata and controls
528 lines (473 loc) · 16.9 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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
<?php
namespace App\Http\Controllers;
use App\Classes\Repositories\ApplicationRepositoryInterface;
use App\Classes\Transformers\ApplicationTransformer;
use App\Http\Requests\UpsertApplicationRulesRequest;
use App\Models\Application;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use League\Fractal\Manager;
/**
* @OA\Tag(
* name="Aplications",
* description="Operations about Aplications"
* )
*/
class ApplicationController extends Controller
{
/**
* @var ApplicationRepositoryInterface
*/
protected $repo;
/**
* @var Request
*/
protected $request;
/**
* @var Manager
*/
protected $manager;
/**
* When more tenants are added, this will be inferred from the auth token that was used.
*
* @var int
*/
private $tenantId = 1;
/**
* Create a new controller instance.
*
* @param ApplicationRepositoryInterface $repo
* @param Request $request
* @param Manager $manager
*/
public function __construct(
ApplicationRepositoryInterface $repo,
Request $request,
Manager $manager
) {
$this->repo = $repo;
$this->request = $request;
$this->manager = $manager;
}
/**
* @param Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
/**
* @OA\Get(
* path="/apps",
* tags={"Applications"},
* summary="Get all applications for a user",
* operationId="getAllForUser",
* security={},
* deprecated=true,
* @OA\Parameter(
* name="userId",
* in="query",
* required=true,
* description="ID of the user to fetch applications for",
* @OA\Schema(type="string")
* ),
* @OA\Response(
* response=200,
* description="Successful response",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="data", type="array", @OA\Items(type="object"))
* )
* )
* )
*/
public function getAllForUser(Request $request)
{
$this->validate($this->request, [
'userId' => 'required|string',
]);
$userId = $request->get('userId', null);
$tenantId = $this->tenantId;
try {
/** @var Collection $apps */
$apps = $this->repo->findForUserId($tenantId, $userId);
} catch (\Exception $e) {
Log::error('Could not get Applications list for user', ['message' => $e->getMessage()]);
return response()->json([
'status' => 500,
'error_message' => 'Could not get Applications list',
'errors' => [],
], 500);
}
$resource = new \League\Fractal\Resource\Collection($apps, new ApplicationTransformer);
$response = $this->manager->createData($resource);
return response()->json($response->toArray(), 200);
}
/**
* @param int $id
* @return \Symfony\Component\HttpFoundation\Response
*/
/**
* @OA\Get(
* path="/apps/{id}",
* tags={"Applications"},
* summary="Get an application by ID",
* operationId="getApplicationById",
* security={},
* deprecated=true,
* @OA\Parameter(
* name="id",
* in="path",
* required=true,
* description="ID of the application to retrieve",
* @OA\Schema(type="integer", format="int64")
* ),
* @OA\Response(
* response=200,
* description="Successful response",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="data", type="array", @OA\Items(type="object"))
* )
* )
* )
*/
public function getById($id)
{
try {
$application = $this->repo->find($id);
} catch (\Exception $e) {
Log::error('Application not found', ['message' => $e->getMessage()]);
return response()->json([
'status' => 404,
'error_message' => 'Application does not exist',
'errors' => ['No matching Application'],
], 404);
}
if ($application->tenant_id !== $this->tenantId) {
return response()->json([
'status' => 403,
'error_message' => 'Application does not belong to tenant',
'errors' => ['Application does not belong to tenant'],
], 403);
}
$resource = new \League\Fractal\Resource\Item($application, new ApplicationTransformer());
$response = $this->manager->createData($resource);
return response()->json($response->toArray(), 200);
}
/**
* Creates an Application Entity
* @param Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
/**
* @OA\Post(
* path="/apps",
* tags={"Applications"},
* summary="Create a new application",
* operationId="createApplication",
* security={},
* deprecated=true,
* @OA\RequestBody(
* required=true,
* @OA\JsonContent(
* required={"name", "userId"},
* @OA\Property(property="name", type="string", example="My Application", description="Name of the application"),
* @OA\Property(property="description", type="string", example="A description of the application", description="Description of the application (optional)"),
* @OA\Property(property="userId", type="string", example="user123", description="ID of the user creating the application"),
* @OA\Property(property="estimatedUsers", type="integer", example=100, description="Estimated number of users (optional)")
* )
* ),
* @OA\Response(
* response=200,
* description="Successful response",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="data", type="array", @OA\Items(type="object"))
* )
* )
* )
*/
public function create(Request $request)
{
$this->validate($this->request, [
'name' => 'required|string',
'description' => 'string',
'userId' => 'required|string',
'estimatedUsers' => 'sometimes|integer',
]);
$data = $this->request->except('userId');
$data['estimated_users_count'] = $request->get('estimatedUsers', 0);
$data['tenant_user_id'] = $request->get('userId');
$data['tenant_id'] = $this->tenantId;
try {
$application = $this->repo->create($data);
} catch (\Exception $e) {
Log::error('Application not created', ['message' => $e->getMessage()]);
return response()->json([
'status' => 500,
'error_message' => 'Unable to create Application',
'errors' => [$e->getMessage()],
], 500);
}
$resource = new \League\Fractal\Resource\Item($application, new ApplicationTransformer());
$response = $this->manager->createData($resource);
return response()->json($response->toArray(), 201);
}
/**
* @OA\Patch(
* path="/apps/{id}",
* tags={"Applications"},
* summary="Update an application by ID",
* operationId="updateApplication",
* security={},
* deprecated=true,
* @OA\Parameter(
* name="id",
* in="path",
* required=true,
* description="ID of the application to update",
* @OA\Schema(type="integer", format="int64")
* ),
* @OA\RequestBody(
* required=true,
* @OA\JsonContent(
* @OA\Property(property="estimatedUsers", type="integer", example=100, description="Estimated number of users (optional)")
* )
* ),
* @OA\Response(
* response=200,
* description="Successful response",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="data", type="array", @OA\Items(type="object"))
* )
* )
* )
*/
public function update(Request $request, $id)
{
$this->validate($this->request, [
'estimatedUsers' => 'sometimes|integer',
]);
$data = [];
$data['estimated_users_count'] = $request->get('estimatedUsers', 0);
try {
$this->repo->updateWithIdAndInput($id, $data);
} catch (\Exception $e) {
Log::error('Application not updated', ['message' => $e->getMessage()]);
return response()->json([
'status' => 500,
'error_message' => 'Unable to update Application',
'errors' => [$e->getMessage()],
], 500);
}
$application = $this->repo->find($id);
$resource = new \League\Fractal\Resource\Item($application, new ApplicationTransformer());
$response = $this->manager->createData($resource);
return response()->json($response->toArray(), 201);
}
/**
* @OA\Delete(
* path="/apps/{id}",
* tags={"Applications"},
* summary="Delete an application by ID",
* operationId="deleteApplication",
* security={},
* deprecated=true,
* @OA\Parameter(
* name="id",
* in="path",
* required=true,
* description="ID of the application to delete",
* @OA\Schema(type="integer", format="int64")
* ),
* @OA\Response(
* response=200,
* description="Successful response",
* @OA\JsonContent(
* type="object",
* @OA\Property(property="data", type="array", @OA\Items(type="object"))
* )
* )
* )
*/
public function delete($id)
{
try {
$application = $this->repo->find($id);
} catch (\Exception $e) {
Log::error('Application not found', ['message' => $e->getMessage()]);
return response()->json([
'status' => 404,
'error_message' => 'Application does not exist',
'errors' => ['No matching Application'],
], 404);
}
if ($application->tenant_id !== $this->tenantId) {
return response()->json([
'status' => 403,
'error_message' => 'Application does not belong to tenant',
'errors' => ['Application does not belong to tenant'],
], 403);
}
try {
$this->repo->destroy($id);
} catch (\Exception $e) {
Log::error('Application not found', ['message' => $e->getMessage()]);
return response()->json([
'status' => 404,
'error_message' => 'Application does not exist',
'errors' => ['No matching Application'],
], 404);
}
return response()->json([
'status' => 200,
'message' => 'Application deleted',
], 200);
}
/**
* @OA\Patch(
* path="/apps/{tenant_user_id}/activate",
* tags={"Applications"},
* summary="Activate all applications by tenant_user_id",
* operationId="activateApplicationsByTenantUserId",
* security={},
* deprecated=true,
* @OA\Parameter(
* name="tenant_user_id",
* in="path",
* required=true,
* description="Tenant user ID used to activate all linked applications",
* @OA\Schema(type="string")
* ),
* @OA\Response(
* response=200,
* description="Successful response",
* @OA\JsonContent(type="object")
* )
* )
*/
public function activate($tenantUserId)
{
$applications = Application::query()
->where('tenant_id', $this->tenantId)
->where('tenant_user_id', $tenantUserId)
->get();
if ($applications->isEmpty()) {
return response()->json([
'status' => 404,
'error_message' => 'Application does not exist',
'errors' => ['No matching Application for tenant_user_id'],
], 404);
}
try {
Application::query()
->where('tenant_id', $this->tenantId)
->where('tenant_user_id', $tenantUserId)
->update([
'is_active' => true,
'updated_at' => now(),
]);
} catch (\Exception $e) {
Log::error('Applications not activated', ['message' => $e->getMessage()]);
return response()->json([
'status' => 500,
'error_message' => 'Unable to activate Applications',
'errors' => [$e->getMessage()],
], 500);
}
$applications = Application::query()
->where('tenant_id', $this->tenantId)
->where('tenant_user_id', $tenantUserId)
->get();
$resource = new \League\Fractal\Resource\Collection($applications, new ApplicationTransformer());
$response = $this->manager->createData($resource);
$payload = $response->toArray();
$payload['updated_count'] = $applications->count();
$payload['tenant_user_id'] = $tenantUserId;
return response()->json($payload, 200);
}
/**
* @OA\Patch(
* path="/apps/{tenant_user_id}/deactivate",
* tags={"Applications"},
* summary="Deactivate all applications by tenant_user_id",
* operationId="deactivateApplicationsByTenantUserId",
* security={},
* deprecated=true,
* @OA\Parameter(
* name="tenant_user_id",
* in="path",
* required=true,
* description="Tenant user ID used to deactivate all linked applications",
* @OA\Schema(type="string")
* ),
* @OA\Response(
* response=200,
* description="Successful response",
* @OA\JsonContent(type="object")
* )
* )
*/
public function deactivate($tenantUserId)
{
$applications = Application::query()
->where('tenant_id', $this->tenantId)
->where('tenant_user_id', $tenantUserId)
->get();
if ($applications->isEmpty()) {
return response()->json([
'status' => 404,
'error_message' => 'Application does not exist',
'errors' => ['No matching Application for tenant_user_id'],
], 404);
}
try {
Application::query()
->where('tenant_id', $this->tenantId)
->where('tenant_user_id', $tenantUserId)
->update([
'is_active' => false,
'updated_at' => now(),
]);
} catch (\Exception $e) {
Log::error('Applications not deactivated', ['message' => $e->getMessage()]);
return response()->json([
'status' => 500,
'error_message' => 'Unable to deactivate Applications',
'errors' => [$e->getMessage()],
], 500);
}
$applications = Application::query()
->where('tenant_id', $this->tenantId)
->where('tenant_user_id', $tenantUserId)
->get();
$resource = new \League\Fractal\Resource\Collection($applications, new ApplicationTransformer());
$response = $this->manager->createData($resource);
$payload = $response->toArray();
$payload['updated_count'] = $applications->count();
$payload['tenant_user_id'] = $tenantUserId;
return response()->json($payload, 200);
}
/**
* Bulk replace rules for all applications belonging to a tenant user.
*
* @param UpsertApplicationRulesRequest $request
* @return \Illuminate\Http\JsonResponse
*/
public function upsertRules(UpsertApplicationRulesRequest $request)
{
$validated = $request->validated();
$updated = Application::query()
->where('tenant_user_id', $validated['tenant_user_id'])
->update([
'rules' => $validated['rules'],
'updated_at' => now(),
]);
return response()->json([
'status' => 200,
'message' => 'Application rules updated successfully.',
'tenant_user_id' => $validated['tenant_user_id'],
'updated_count' => $updated,
], 200);
}
}