From 85099307227d0703cef34d70d8567973546cf300 Mon Sep 17 00:00:00 2001 From: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com> Date: Wed, 12 Apr 2023 09:11:50 -0500 Subject: [PATCH] Match access policy creation responses (#2827) --- .../Controllers/AccessPoliciesController.cs | 43 +++++++++---------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/src/Api/SecretsManager/Controllers/AccessPoliciesController.cs b/src/Api/SecretsManager/Controllers/AccessPoliciesController.cs index e8a007541f..789cfb7e0e 100644 --- a/src/Api/SecretsManager/Controllers/AccessPoliciesController.cs +++ b/src/Api/SecretsManager/Controllers/AccessPoliciesController.cs @@ -72,8 +72,7 @@ public class AccessPoliciesController : Controller var (accessClient, userId) = await GetAccessClientTypeAsync(project.OrganizationId); var policies = request.ToBaseAccessPoliciesForProject(id); - await _createAccessPoliciesCommand.CreateManyAsync(policies, userId, accessClient); - var results = await _accessPolicyRepository.GetManyByGrantedProjectIdAsync(id, userId); + var results = await _createAccessPoliciesCommand.CreateManyAsync(policies, userId, accessClient); return new ProjectAccessPoliciesResponseModel(results); } @@ -104,8 +103,7 @@ public class AccessPoliciesController : Controller var (accessClient, userId) = await GetAccessClientTypeAsync(serviceAccount.OrganizationId); var policies = request.ToBaseAccessPoliciesForServiceAccount(id); - await _createAccessPoliciesCommand.CreateManyAsync(policies, userId, accessClient); - var results = await _accessPolicyRepository.GetManyByGrantedServiceAccountIdAsync(id, userId); + var results = await _createAccessPoliciesCommand.CreateManyAsync(policies, userId, accessClient); return new ServiceAccountAccessPoliciesResponseModel(results); } @@ -119,23 +117,6 @@ public class AccessPoliciesController : Controller return new ServiceAccountAccessPoliciesResponseModel(results); } - [HttpGet("/service-accounts/{id}/granted-policies")] - public async Task> - GetServiceAccountGrantedPoliciesAsync([FromRoute] Guid id) - { - var serviceAccount = await _serviceAccountRepository.GetByIdAsync(id); - if (serviceAccount == null) - { - throw new NotFoundException(); - } - - var (accessClient, userId) = await GetAccessClientTypeAsync(serviceAccount.OrganizationId); - var results = await _accessPolicyRepository.GetManyByServiceAccountIdAsync(id, userId, accessClient); - var responses = results.Select(ap => - new ServiceAccountProjectAccessPolicyResponseModel((ServiceAccountProjectAccessPolicy)ap)); - return new ListResponseModel(responses); - } - [HttpPost("/service-accounts/{id}/granted-policies")] public async Task> CreateServiceAccountGrantedPoliciesAsync([FromRoute] Guid id, @@ -155,7 +136,25 @@ public class AccessPoliciesController : Controller var (accessClient, userId) = await GetAccessClientTypeAsync(serviceAccount.OrganizationId); var policies = requests.Select(request => request.ToServiceAccountProjectAccessPolicy(id)); var results = - await _createAccessPoliciesCommand.CreateManyAsync(new List(policies), userId, accessClient); + await _createAccessPoliciesCommand.CreateManyAsync(new List(policies), userId, + accessClient); + var responses = results.Select(ap => + new ServiceAccountProjectAccessPolicyResponseModel((ServiceAccountProjectAccessPolicy)ap)); + return new ListResponseModel(responses); + } + + [HttpGet("/service-accounts/{id}/granted-policies")] + public async Task> + GetServiceAccountGrantedPoliciesAsync([FromRoute] Guid id) + { + var serviceAccount = await _serviceAccountRepository.GetByIdAsync(id); + if (serviceAccount == null) + { + throw new NotFoundException(); + } + + var (accessClient, userId) = await GetAccessClientTypeAsync(serviceAccount.OrganizationId); + var results = await _accessPolicyRepository.GetManyByServiceAccountIdAsync(id, userId, accessClient); var responses = results.Select(ap => new ServiceAccountProjectAccessPolicyResponseModel((ServiceAccountProjectAccessPolicy)ap)); return new ListResponseModel(responses);