using Bit.Api.Models.Request; using Bit.Api.Models.Response; using Bit.Core.Entities; using Bit.Core.Exceptions; using Bit.Core.Repositories; using Bit.Core.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace Bit.Api.Controllers { [Route("devices")] [Authorize("Application")] public class DevicesController : Controller { private readonly IDeviceRepository _deviceRepository; private readonly IDeviceService _deviceService; private readonly IUserService _userService; public DevicesController( IDeviceRepository deviceRepository, IDeviceService deviceService, IUserService userService) { _deviceRepository = deviceRepository; _deviceService = deviceService; _userService = userService; } [HttpGet("{id}")] public async Task Get(string id) { var device = await _deviceRepository.GetByIdAsync(new Guid(id), _userService.GetProperUserId(User).Value); if (device == null) { throw new NotFoundException(); } var response = new DeviceResponseModel(device); return response; } [HttpGet("identifier/{identifier}")] public async Task GetByIdentifier(string identifier) { var device = await _deviceRepository.GetByIdentifierAsync(identifier, _userService.GetProperUserId(User).Value); if (device == null) { throw new NotFoundException(); } var response = new DeviceResponseModel(device); return response; } [HttpGet("")] public async Task> Get() { ICollection devices = await _deviceRepository.GetManyByUserIdAsync(_userService.GetProperUserId(User).Value); var responses = devices.Select(d => new DeviceResponseModel(d)); return new ListResponseModel(responses); } [HttpPost("")] public async Task Post([FromBody] DeviceRequestModel model) { var device = model.ToDevice(_userService.GetProperUserId(User)); await _deviceService.SaveAsync(device); var response = new DeviceResponseModel(device); return response; } [HttpPut("{id}")] [HttpPost("{id}")] public async Task Put(string id, [FromBody] DeviceRequestModel model) { var device = await _deviceRepository.GetByIdAsync(new Guid(id), _userService.GetProperUserId(User).Value); if (device == null) { throw new NotFoundException(); } await _deviceService.SaveAsync(model.ToDevice(device)); var response = new DeviceResponseModel(device); return response; } [HttpPut("identifier/{identifier}/token")] [HttpPost("identifier/{identifier}/token")] public async Task PutToken(string identifier, [FromBody] DeviceTokenRequestModel model) { var device = await _deviceRepository.GetByIdentifierAsync(identifier, _userService.GetProperUserId(User).Value); if (device == null) { throw new NotFoundException(); } await _deviceService.SaveAsync(model.ToDevice(device)); } [AllowAnonymous] [HttpPut("identifier/{identifier}/clear-token")] [HttpPost("identifier/{identifier}/clear-token")] public async Task PutClearToken(string identifier) { var device = await _deviceRepository.GetByIdentifierAsync(identifier); if (device == null) { throw new NotFoundException(); } await _deviceService.ClearTokenAsync(device); } [HttpDelete("{id}")] [HttpPost("{id}/delete")] public async Task Delete(string id) { var device = await _deviceRepository.GetByIdAsync(new Guid(id), _userService.GetProperUserId(User).Value); if (device == null) { throw new NotFoundException(); } await _deviceService.DeleteAsync(device); } } }