From a6ffadf086273b916a6bbb6a8131a50739f7006d Mon Sep 17 00:00:00 2001 From: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com> Date: Thu, 22 Jun 2023 20:27:59 -0400 Subject: [PATCH] PM-2731 - DevicesController.cs - Add new method GetExistenceByTypes (#3039) * PM-2731 - DevicesController.cs - Add new method HasDevicesOfTypes to accept an array of DeviceType values and return a boolean if the authN user has at least a device of one of the given types. * Dotnet format to pass lint rules * PM-2731 - Update naming of HasDevicesOfTypes to be GetExistenceByTypes for increased clarity per PR feedback. * PM-2731-Make GetExistenceByTypes route singular * Update src/Api/Controllers/DevicesController.cs to use var Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> --------- Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> --- src/Api/Controllers/DevicesController.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Api/Controllers/DevicesController.cs b/src/Api/Controllers/DevicesController.cs index 7559bff9bc..88d0e5c7a3 100644 --- a/src/Api/Controllers/DevicesController.cs +++ b/src/Api/Controllers/DevicesController.cs @@ -1,6 +1,7 @@ using Bit.Api.Models.Request; using Bit.Api.Models.Response; using Bit.Core.Entities; +using Bit.Core.Enums; using Bit.Core.Exceptions; using Bit.Core.Repositories; using Bit.Core.Services; @@ -65,6 +66,15 @@ public class DevicesController : Controller return new ListResponseModel(responses); } + [HttpPost("exist-by-types")] + public async Task> GetExistenceByTypes([FromBody] DeviceType[] deviceTypes) + { + var userId = _userService.GetProperUserId(User).Value; + var devices = await _deviceRepository.GetManyByUserIdAsync(userId); + var userHasDeviceOfTypes = devices.Any(d => deviceTypes.Contains(d.Type)); + return Ok(userHasDeviceOfTypes); + } + [HttpPost("")] public async Task Post([FromBody] DeviceRequestModel model) {