-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathSitesController.cs
More file actions
executable file
·1607 lines (1433 loc) · 71.6 KB
/
Copy pathSitesController.cs
File metadata and controls
executable file
·1607 lines (1433 loc) · 71.6 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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using AutoMapper;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Prime.Configuration.Auth;
using Prime.Engines;
using Prime.Models;
using Prime.Models.Api;
using Prime.Services;
using Prime.ViewModels;
using Prime.ViewModels.Sites;
namespace Prime.Controllers
{
[Produces("application/json")]
[Route("api/[controller]")]
[ApiController]
[Authorize(Roles = Roles.PrimeEnrollee + "," + Roles.ViewSite)]
public class SitesController : PrimeControllerBase
{
private readonly IAdminService _adminService;
private readonly IBusinessEventService _businessEventService;
private readonly ICommunitySiteService _communitySiteService;
private readonly IExportService _exportService;
private readonly IHealthAuthoritySiteService _healthAuthoritySiteService;
private readonly IDocumentService _documentService;
private readonly IEmailService _emailService;
private readonly IMapper _mapper;
private readonly IOrganizationService _organizationService;
private readonly ISiteService _siteService;
private readonly ISiteSubmissionService _siteSubmissionService;
private readonly IDeviceProviderService _deviceProviderService;
public SitesController(
IAdminService adminService,
IBusinessEventService businessEventService,
ICommunitySiteService communitySiteService,
IHealthAuthoritySiteService healthAuthoritySiteService,
IDocumentService documentService,
IEmailService emailService,
IExportService exportService,
IMapper mapper,
IOrganizationService organizationService,
ISiteService siteService,
ISiteSubmissionService siteSubmissionService,
IDeviceProviderService deviceProviderService)
{
_adminService = adminService;
_businessEventService = businessEventService;
_communitySiteService = communitySiteService;
_documentService = documentService;
_emailService = emailService;
_exportService = exportService;
_mapper = mapper;
_organizationService = organizationService;
_siteService = siteService;
_deviceProviderService = deviceProviderService;
_healthAuthoritySiteService = healthAuthoritySiteService;
_siteSubmissionService = siteSubmissionService;
}
// GET: api/Sites
/// <summary>
/// Gets all of the Sites for an organization, or all sites if user has ADMIN role
/// </summary>
/// <param name="organizationId"></param>
/// <param name="verbose"></param>
[HttpGet("/api/organizations/{organizationId:int}/sites", Name = nameof(GetSites))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<IEnumerable<Site>>), StatusCodes.Status200OK)]
public async Task<ActionResult> GetSites(int organizationId, [FromQuery] bool verbose)
{
var organization = await _organizationService.GetOrganizationAsync(organizationId);
if (organization == null)
{
return NotFound($"Organization not found with id {organizationId}");
}
var sites = await _communitySiteService.GetSitesAsync(organizationId);
if (verbose)
{
return Ok(sites);
}
return Ok(_mapper.Map<IEnumerable<CommunitySiteListViewModel>>(sites));
}
// GET: api/Sites
/// <summary>
/// Gets all Sites.
/// </summary>
[HttpGet(Name = nameof(GetAllSites))]
[Authorize(Roles = Roles.ViewSite)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiResultResponse<PaginatedResponse<CommunitySiteAdminListViewModel>>), StatusCodes.Status200OK)]
public async Task<ActionResult> GetAllSites([FromQuery] OrganizationSearchOptions search)
{
var paginatedList = await _communitySiteService.GetSitesAsync(search);
var notifiedIds = await _siteService.GetNotifiedSiteIdsForAdminAsync(User);
foreach (var site in paginatedList)
{
site.HasNotification = notifiedIds.Contains(site.Id);
}
return Ok(paginatedList.Response);
}
// GET: api/Sites/5
/// <summary>
/// Gets a specific Site.
/// </summary>
/// <param name="siteId"></param>
[HttpGet("{siteId}", Name = nameof(GetSiteById))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<CommunitySite>), StatusCodes.Status200OK)]
public async Task<ActionResult> GetSiteById(int siteId)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var site = await _communitySiteService.GetSiteAsync(siteId);
return Ok(site);
}
// POST: api/Sites
/// <summary>
/// Creates a new Site.
/// <param name="organizationId"></param>
/// </summary>
[HttpPost("/api/organizations/{organizationId:int}/sites", Name = nameof(CreateSite))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<CommunitySite>), StatusCodes.Status201Created)]
public async Task<ActionResult> CreateSite(int organizationId)
{
var organization = await _organizationService.GetOrganizationAsync(organizationId);
if (organization == null)
{
return NotFound($"Organization not found with id {organizationId}");
}
var createdSiteId = await _communitySiteService.CreateSiteAsync(organizationId);
var createdSite = await _communitySiteService.GetSiteAsync(createdSiteId);
return CreatedAtAction(
nameof(GetSiteById),
new { siteId = createdSiteId },
createdSite
);
}
// PUT: api/Sites/5
/// <summary>
/// Updates a specific Site.
/// </summary>
/// <param name="siteId"></param>
/// <param name="updatedSite"></param>
[HttpPut("{siteId}", Name = nameof(UpdateSite))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public async Task<ActionResult> UpdateSite(int siteId, CommunitySiteUpdateModel updatedSite)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
if (!await _siteService.PecAssignableAsync(siteId, updatedSite.PEC))
{
return BadRequest("PEC already exists");
}
await _communitySiteService.UpdateSiteAsync(siteId, updatedSite);
return NoContent();
}
// PUT: api/Sites/5/completed
/// <summary>
/// Set a sites completed state.
/// </summary>
/// <param name="siteId"></param>
[HttpPut("{siteId}/completed", Name = nameof(SetSiteCompleted))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public async Task<ActionResult> SetSiteCompleted(int siteId)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
await _siteService.UpdateCompletedAsync(siteId, true);
return NoContent();
}
// DELETE: api/Sites/5/completed
/// <summary>
/// Remove a sites completed state.
/// </summary>
/// <param name="siteId"></param>
[HttpDelete("{siteId}/completed", Name = nameof(RemoveSiteCompleted))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public async Task<ActionResult> RemoveSiteCompleted(int siteId)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
await _siteService.UpdateCompletedAsync(siteId, false);
return NoContent();
}
// PUT: api/Sites/5/adjudicator
/// <summary>
/// Add a site's assigned adjudicator.
/// </summary>
/// <param name="siteId"></param>
/// <param name="adjudicatorId"></param>
[HttpPut("{siteId}/adjudicator", Name = nameof(SetSiteAdjudicator))]
[Authorize(Roles = Roles.EditSite)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult> SetSiteAdjudicator(int siteId, [FromQuery] int? adjudicatorId)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
Admin admin = adjudicatorId.HasValue
? await _adminService.GetAdminAsync(adjudicatorId.Value)
: await _adminService.GetAdminAsync(User.GetPrimeUsername());
if (admin == null)
{
return NotFound($"Admin not found with id {adjudicatorId.Value}.");
}
await _siteService.UpdateSiteAdjudicator(siteId, admin.Id);
await _businessEventService.CreateSiteEventAsync(siteId, "Admin claimed site");
return Ok();
}
// DELETE: api/Site/5/adjudicator
/// <summary>
/// Remove an site's assigned adjudicator.
/// </summary>
/// <param name="siteId"></param>
[HttpDelete("{siteId}/adjudicator", Name = nameof(RemoveSiteAdjudicator))]
[Authorize(Roles = Roles.EditSite)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult> RemoveSiteAdjudicator(int siteId)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
await _siteService.UpdateSiteAdjudicator(siteId);
await _businessEventService.CreateSiteEventAsync(siteId, "Admin disclaimed site");
return Ok();
}
// DELETE: api/Sites/5
/// <summary>
/// Deletes a specific Site.
/// </summary>
/// <param name="siteId"></param>
[HttpDelete("{siteId}", Name = nameof(DeleteSite))]
[Authorize(Roles = Roles.PrimeSuperAdmin)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public async Task<ActionResult> DeleteSite(int siteId)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
await _siteService.DeleteSiteAsync(siteId);
return NoContent();
}
// POST: api/sites/5/submissions
/// <summary>
/// Submits the given site for adjudication.
/// </summary>
/// <param name="siteId"></param>
/// <param name="updatedSite"></param>
[HttpPost("{siteId}/submissions", Name = nameof(SubmitSiteRegistration))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult> SubmitSiteRegistration(int siteId, SiteSubmissionViewModel updatedSite)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var site = await _communitySiteService.GetSiteAsync(siteId);
if (!SiteStatusStateEngine.AllowableStatusChange(SiteRegistrationAction.Submit, site.Status))
{
return BadRequest("Action could not be performed.");
}
if (!await _siteService.PecAssignableAsync(siteId, updatedSite.PEC))
{
return BadRequest("PEC already exists");
}
if (!await HandleBusinessLicenseUpdateAsync(site, updatedSite.BusinessLicence))
{
return BadRequest("Business Licence could not be created; network error or upload is already submitted");
}
await _communitySiteService.UpdateSiteAsync(siteId, _mapper.Map<CommunitySiteUpdateModel>(updatedSite));
await _siteService.SubmitRegistrationAsync(siteId);
await _siteSubmissionService.CreateCommunitySiteSubmissionAsync(siteId);
await _emailService.SendSiteRegistrationSubmissionAsync(siteId, site.BusinessLicence.Id, (CareSettingType)site.CareSettingCode, site.IsNew);
await _businessEventService.CreateSiteEmailEventAsync(siteId, "Sent site registration submission notification");
return Ok();
}
private async Task<bool> HandleBusinessLicenseUpdateAsync(CommunitySite site, SiteBusinessLicenceViewModel newLicence)
{
if (site.SubmittedDate == null)
{
// First submission ever, or site is approved but not in renewal. No Licence updates.
return true;
}
var existingLicence = site.BusinessLicence;
var isNewDocument = existingLicence.BusinessLicenceDocument?.DocumentGuid != newLicence.DocumentGuid && newLicence.DocumentGuid != null;
if (site.ApprovedDate == null)
{
// Editing was re-enabled before approval: Update existing licence. If new Document replace, but
// always allow for ExpiryDate and/or DeferredReason to be updated.
await _communitySiteService.UpdateBusinessLicenceAsync(existingLicence.Id, _mapper.Map<BusinessLicence>(newLicence));
if (!isNewDocument)
{
return true;
}
var licence = await _communitySiteService.AddOrReplaceBusinessLicenceDocumentAsync(existingLicence.Id, newLicence.DocumentGuid.Value);
return licence != null;
}
else
{
// Renewal: Only Document GUID and Expiry Date are editable. If new Document, make new Licence.
// Could be submitted without updating Business Licence.
if (!isNewDocument)
{
return true;
}
// Duplicating existing business licence for creation of a new business licence
var licenceDto = _mapper.Map<BusinessLicence>(existingLicence);
licenceDto.Id = 0;
licenceDto.ExpiryDate = newLicence.ExpiryDate;
licenceDto.DeferredLicenceReason = newLicence.DeferredLicenceReason;
var licence = await _communitySiteService.AddBusinessLicenceAsync(site.Id, licenceDto, newLicence.DocumentGuid.Value);
return licence != null;
}
}
// POST: api/sites/5/business-licences
/// <summary>
/// Creates a new Business Licence.
/// </summary>
/// <param name="documentGuid"></param>
/// <param name="businessLicence"></param>
/// <param name="siteId"></param>
[HttpPost("{siteId}/business-licences", Name = nameof(CreateBusinessLicence))]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status409Conflict)]
[ProducesResponseType(typeof(ApiResultResponse<BusinessLicence>), StatusCodes.Status200OK)]
public async Task<ActionResult> CreateBusinessLicence(int siteId, BusinessLicence businessLicence, [FromQuery] Guid documentGuid)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var licence = await _communitySiteService.AddBusinessLicenceAsync(siteId, businessLicence, documentGuid);
if (licence == null)
{
return BadRequest("Business Licence could not be created; network error or upload is already submitted");
}
return Ok(licence);
}
// PUT: api/sites/5/business-licences/5
/// <summary>
/// Updates an existing Business Licence.
/// </summary>
/// <param name="businessLicence"></param>
/// <param name="siteId"></param>
/// <param name="businessLicenceId"></param>
[HttpPut("{siteId}/business-licences/{businessLicenceId}", Name = nameof(UpdateBusinessLicence))]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status409Conflict)]
[ProducesResponseType(typeof(ApiResultResponse<BusinessLicence>), StatusCodes.Status200OK)]
public async Task<ActionResult<BusinessLicence>> UpdateBusinessLicence(int siteId, int businessLicenceId, BusinessLicence businessLicence)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var licence = await _communitySiteService.UpdateBusinessLicenceAsync(businessLicenceId, businessLicence);
return Ok(licence);
}
// POST: api/sites/5/business-licences/5/document
/// <summary>
/// Creates a new Business Licence Document.
/// </summary>
/// <param name="documentGuid"></param>
/// <param name="siteId"></param>
/// <param name="businessLicenceId"></param>
[HttpPost("{siteId}/business-licences/{businessLicenceId}/document", Name = nameof(CreateBusinessLicenceDocument))]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status409Conflict)]
[ProducesResponseType(typeof(ApiResultResponse<BusinessLicenceDocument>), StatusCodes.Status200OK)]
public async Task<ActionResult<BusinessLicenceDocument>> CreateBusinessLicenceDocument(int siteId, int businessLicenceId, [FromQuery] Guid documentGuid)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var site = await _communitySiteService.GetSiteAsync(siteId);
if (site.BusinessLicences == null)
{
return NotFound($"Business Licence not found on site with id {siteId}");
}
if (site.BusinessLicence.BusinessLicenceDocument != null && site.SubmittedDate != null)
{
return Conflict($"Business Licence Document exists for submitted site with id {siteId}");
}
var document = await _communitySiteService.AddOrReplaceBusinessLicenceDocumentAsync(businessLicenceId, documentGuid);
if (document == null)
{
return BadRequest("Business Licence Document could not be created; network error or upload is already submitted");
}
if (site.SubmittedDate != null)
{
await _emailService.SendSiteRegistrationSubmissionAsync(siteId, businessLicenceId, (CareSettingType)site.CareSettingCode);
await _businessEventService.CreateSiteEmailEventAsync(siteId, "Sent site registration submission notification");
}
// Send an notifying email to the adjudicator
// if the site is claimed by a adjudicator, is a community pharmacy,
// and previously deferred the business licence document.
if (site.Adjudicator != null
&& site.CareSetting.Code == (int)CareSettingType.CommunityPharmacy
&& !string.IsNullOrEmpty(site.BusinessLicence.DeferredLicenceReason))
{
await _emailService.SendBusinessLicenceUploadedAsync(site);
await _businessEventService.CreateSiteEmailEventAsync(siteId, "Sent business licence upload notification");
}
return Ok(document);
}
// DELETE: api/sites/5/business-licences/5/document
/// <summary>
/// Deletes a sites business Licence Document.
/// </summary>
/// <param name="siteId"></param>
/// <param name="businessLicenceId"></param>
[HttpDelete("{siteId}/business-licences/{businessLicenceId}/document", Name = nameof(RemoveBusinessLicenceDocument))]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status200OK)]
public async Task<ActionResult> RemoveBusinessLicenceDocument(int siteId, int businessLicenceId)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var site = await _communitySiteService.GetSiteAsync(siteId);
if (site.BusinessLicence == null)
{
return NotFound($"Business Licence not found on site with id {siteId}");
}
if (site.SubmittedDate != null)
{
return Conflict($"Unable to remove document once site has been submitted");
}
await _communitySiteService.DeleteBusinessLicenceDocumentAsync(businessLicenceId);
return Ok();
}
// Get: api/sites/5/business-licences
/// <summary>
/// Gets all business Licences for a site or the latest business licence.
/// </summary>
/// <param name="siteId"></param>
/// <param name="latest"></param>
[HttpGet("{siteId}/business-licences", Name = nameof(CreateBusinessLicence))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<IEnumerable<BusinessLicence>>), StatusCodes.Status200OK)]
public async Task<ActionResult> GetBusinessLicence(int siteId, [FromQuery] bool latest = false)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
return latest == true
? Ok(await _communitySiteService.GetLatestBusinessLicenceAsync(siteId))
: Ok(await _communitySiteService.GetBusinessLicencesAsync(siteId));
}
// POST: api/sites/5/adjudication-documents
/// <summary>
/// Creates a new site adjudication document for a site.
/// </summary>
/// <param name="documentGuid"></param>
/// <param name="siteId"></param>
[HttpPost("{siteId}/adjudication-documents", Name = nameof(CreateSiteAdjudicationDocument))]
[Authorize(Roles = Roles.EditSite)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<SiteAdjudicationDocument>), StatusCodes.Status200OK)]
public async Task<ActionResult> CreateSiteAdjudicationDocument(int siteId, [FromQuery] Guid documentGuid)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
var admin = await _adminService.GetAdminAsync(User.GetPrimeUsername());
var document = await _siteService.AddSiteAdjudicationDocumentAsync(siteId, documentGuid, admin.Id);
if (document == null)
{
return BadRequest("Site Adjudication Document could not be created; network error or upload is already submitted");
}
return Ok(document);
}
// GET: api/sites/5/adjudication-documents
/// <summary>
/// Gets all site adjudication documents for a site.
/// </summary>
/// <param name="siteId"></param>
[HttpGet("{siteId}/adjudication-documents", Name = nameof(GetSiteAdjudicationDocuments))]
[Authorize(Roles = Roles.ViewSite)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<SiteAdjudicationDocument>), StatusCodes.Status200OK)]
public async Task<ActionResult> GetSiteAdjudicationDocuments(int siteId)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
var documents = await _siteService.GetSiteAdjudicationDocumentsAsync(siteId);
return Ok(documents);
}
// GET: api/Sites/{siteId}/adjudication-documents/{documentId}
/// <summary>
/// Get the site adjudication documents download token.
/// </summary>
/// <param name="siteId"></param>
/// <param name="documentId"></param>
[HttpGet("{siteId}/adjudication-documents/{documentId}", Name = nameof(GetSiteAdjudicationDocument))]
[Authorize(Roles = Roles.ViewSite)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<string>), StatusCodes.Status200OK)]
public async Task<ActionResult> GetSiteAdjudicationDocument(int siteId, int documentId)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
var token = await _documentService.GetDownloadTokenForSiteAdjudicationDocument(documentId);
return Ok(token);
}
// GET: api/sites/1/pec/abc/assignable
/// <summary>
/// Check if a given PEC is assignable.
/// </summary>
/// <param name="siteId"></param>
/// <param name="pec"></param>
/// <returns></returns>
[HttpPost("{siteId}/pec/{pec}/assignable", Name = nameof(PecAssignable))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<bool>), StatusCodes.Status200OK)]
public async Task<ActionResult> PecAssignable(int siteId, string pec)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
if (string.IsNullOrWhiteSpace(pec))
{
return BadRequest("PEC cannot be empty.");
}
var currentPec = await _siteService.GetSitePecAsync(siteId);
if (currentPec == pec)
{
return Ok(true);
}
return Ok(await _siteService.PecAssignableAsync(siteId, pec));
}
// GET: api/sites/1/pec/abc/exists-within-ha
/// <summary>
/// Check if a given PEC exists in other site within the same health authority.
/// </summary>
/// <param name="siteId"></param>
/// <param name="pec"></param>
/// <returns></returns>
[HttpGet("{siteId}/pec/{pec}/exists-within-ha", Name = nameof(PecExistsWithinHA))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<bool>), StatusCodes.Status200OK)]
public async Task<ActionResult> PecExistsWithinHA(int siteId, string pec)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
if (string.IsNullOrWhiteSpace(pec))
{
return BadRequest("PEC cannot be empty.");
}
return Ok(await _siteService.PecExistsWithinHAAsync(siteId, pec));
}
// PUT: api/Sites/5/pec
/// <summary>
/// Update the PEC code.
/// </summary>
/// <param name="siteId"></param>
/// <param name="pecCode"></param>
[HttpPut("{siteId}/pec", Name = nameof(UpdatePecCode))]
[Authorize(Roles = Roles.EditSite)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult> UpdatePecCode(int siteId, FromBodyText pecCode)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
if (string.IsNullOrWhiteSpace(pecCode))
{
return BadRequest("PEC Code was not provided");
}
if (!await _siteService.PecAssignableAsync(siteId, pecCode))
{
return BadRequest("PEC already exists");
}
await _siteService.UpdatePecCode(siteId, pecCode);
return NoContent();
}
// PUT: api/Sites/5/vendor
/// <summary>
/// Update the Vendor code.
/// </summary>
/// <param name="siteId"></param>
/// <param name="siteVendor"></param>
[HttpPut("{siteId}/vendor", Name = nameof(UpdateVendor))]
[Authorize(Roles = Roles.EditSite)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult> UpdateVendor(int siteId, SiteVendorUpdateViewModel siteVendor)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
await _siteService.UpdateVendor(siteId, siteVendor.VendorCode, siteVendor.Rationale);
return NoContent();
}
// Get: api/site/5/business-licences/5/document/token
/// <summary>
/// Gets a download token for the latest business licence on a site.
/// </summary>
/// <param name="siteId"></param>
/// <param name="businessLicenceId"></param>
[HttpGet("{siteId}/business-licences/{businessLicenceId}/document/token", Name = nameof(GetBusinessLicenceDocumentToken))]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<string>), StatusCodes.Status200OK)]
public async Task<ActionResult<string>> GetBusinessLicenceDocumentToken(int siteId, int businessLicenceId)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var site = await _communitySiteService.GetSiteAsync(siteId);
if (site.BusinessLicence?.BusinessLicenceDocument == null)
{
return NotFound($"No business licence document found for site with id {siteId}");
}
var token = await _documentService.GetDownloadTokenForBusinessLicenceDocument(siteId, businessLicenceId);
return Ok(token);
}
// POST: api/Sites/5/remote-users-email-admin
/// <summary>
/// Send HIBC an email when remote users are updated for a submitted site
/// </summary>
/// <param name="siteId"></param>
[HttpPost("{siteId}/remote-users-email-admin", Name = nameof(SendRemoteUsersEmailAdmin))]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public async Task<ActionResult> SendRemoteUsersEmailAdmin(int siteId)
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
var site = await _communitySiteService.GetSiteAsync(siteId);
await _emailService.SendRemoteUsersUpdatedAsync(site);
await _businessEventService.CreateSiteEmailEventAsync(siteId, "Sent remote user update notification");
return NoContent();
}
// GET: api/Sites/5/remote-users/export
/// <summary>
/// Export remote users of a site to CSV or Excel format
/// </summary>
/// <param name="siteId"></param>
/// <param name="format">Export format: 'csv' or 'excel'</param>
[Authorize(Roles = Roles.PrimeSuperAdmin)]
[HttpGet("{siteId}/remote-users/export", Name = nameof(ExportRemoteUsers))]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(ApiResultResponse<string>), StatusCodes.Status200OK)]
public async Task<ActionResult> ExportRemoteUsers(int siteId, [FromQuery] string format = "csv")
{
var record = await _communitySiteService.GetPermissionsRecordAsync(siteId);
if (record == null)
{
return NotFound($"Site not found with id {siteId}");
}
if (!record.AccessableBy(User))
{
return Forbid();
}
if (format != "csv" && format != "excel")
{
return BadRequest("Format must be 'csv' or 'excel'");
}
var site = await _communitySiteService.GetSiteAsync(siteId);
if (site?.RemoteUsers == null || site.RemoteUsers.Count == 0)
{
return NotFound("No remote users found for this site");
}
byte[] fileContent;
fileContent = await (string.Equals(format, "excel", StringComparison.OrdinalIgnoreCase)
? _exportService.ExportRemoteUsersToExcelAsync(siteId)
: _exportService.ExportRemoteUsersToCSVAsync(siteId));
return Ok(Convert.ToBase64String(fileContent));
}
// POST: api/Sites/5/site-reviewed-email
/// <summary>
/// Send site reviewed notification email to provider enrolment team
/// </summary>
/// <param name="siteId"></param>
/// <param name="note"></param>
/// <returns></returns>
[HttpPost("{siteId}/site-reviewed-email", Name = nameof(SendSiteReviewedNotificationEmail))]
[Authorize(Roles = Roles.ViewSite)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public async Task<ActionResult> SendSiteReviewedNotificationEmail(int siteId, FromBodyText note)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
await _emailService.SendSiteReviewedNotificationAsync(siteId, note);
await _businessEventService.CreateSiteEmailEventAsync(siteId, "Sent site reviewed notification");
return NoContent();
}
// PUT: api/Sites/5/approve
/// <summary>
/// Approve a site.
/// </summary>
/// <param name="siteId"></param>
[HttpPut("{siteId}/approve", Name = nameof(ApproveSite))]
[Authorize(Roles = Roles.EditSite)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(typeof(ApiMessageResponse), StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult> ApproveSite(int siteId)
{
if (!await _siteService.SiteExistsAsync(siteId))
{
return NotFound($"Site not found with id {siteId}");
}
var status = await _siteService.GetSiteCurrentStatusAsync(siteId);
if (!SiteStatusStateEngine.AllowableStatusChange(SiteRegistrationAction.Approve, status))
{
return BadRequest("Action could not be performed.");
}
// TODO: This is the only difference in path between Community Site and Health Authority Site
// As well maybe we should try/catch email errors so failure on sending an email doesn't fail
// the call
if (await _communitySiteService.SiteExistsAsync(siteId))
{
var pec = await _siteService.GetSitePecAsync(siteId);
if (pec == null)
{
return BadRequest("Site approval requires a site ID/PEC code.");
}
await _siteService.ApproveSite(siteId);
var communitySite = await _communitySiteService.GetSiteAsync(siteId);
if (communitySite.ActiveBeforeRegistration)
{
/* do not send "Site Active Before registration email" to SA and do not create related event