using Api.DBAccess; using Api.Models; using Api.Models.Devices; using Api.Models.Users; using Microsoft.AspNetCore.Mvc; namespace Api.BusinessLogic { public class DeviceLogic { private readonly DbAccess _dbAccess; private readonly IConfiguration _configuration; public DeviceLogic(IConfiguration configuration, DbAccess dbAccess) { _dbAccess = dbAccess; _configuration = configuration; } /// /// Gets the user from dbaccess using the userId and checks if the user exists /// Gets all devices that match the userId and checks if there are any devices connected to the user /// /// UserId that matches a user that owns the devices /// returns the devices in a OkObjectResult and if there is some error it returns a ConflictObjectResult and a message that explain the reason public async Task GetDevices(int userId) { var profile = await _dbAccess.ReadUser(userId); if (profile == null) { return new ConflictObjectResult(new { message = "Could not find user" }); } var devices = await _dbAccess.ReadDevices(userId); if (devices.Count == 0) { return new ConflictObjectResult(new { message = "Could not find any devices connected to the user" }); } return new OkObjectResult(devices); } /// /// Checks if the user that the device is trying to be added to exists /// Then it is send to dbaccess /// /// The new device /// The user that owns the device /// returns true in a OkObjectResult and if there is some error it returns a ConflictObjectResult and a message that explain the reason public async Task AddDevice(string referenceId, int userId) { var profile = await _dbAccess.ReadUser(userId); if (profile == null) { return new ConflictObjectResult(new { message = "Could not find user" }); } Device device = new Device { Name = "Undefined", TempHigh = 0, TempLow = 0, ReferenceId = referenceId, Logs = new List(), }; return await _dbAccess.CreateDevice(device, userId); } /// /// Checks if the device exist that is trying to be read from /// Gets the logs and checks if there are any in the list /// Checks if the datetimeRange have 2 values that are the same bc that means they want all logs /// Then it makes a new list with all data that are in the range of the 2 datetimes /// /// The deviceId that you want from the logs /// returns the logs in a OkObjectResult and if there is some error it returns a ConflictObjectResult and a message that explain the reason public async Task GetLogs(DateTimeRange dateTimeRange, int deviceId) { var device = await _dbAccess.ReadDevice(deviceId); if (device == null) { return new ConflictObjectResult(new { message = "Could not find device" }); } var logs = await _dbAccess.ReadLogs(deviceId); if (logs.Count == 0) { return new ConflictObjectResult(new { message = "Could not find any logs connected to the device" }); } if (dateTimeRange.DateTimeStart == dateTimeRange.DateTimeEnd) { return new OkObjectResult(logs); } List rangedLogs = new List(); foreach (var log in logs) { if (log.Date <= dateTimeRange.DateTimeStart && log.Date >= dateTimeRange.DateTimeEnd) { rangedLogs.Add(log); } } return new OkObjectResult(rangedLogs); } /// /// Checks if the deviceId matches a device /// /// The updated info /// The device to be edited /// returns the updated device in a OkObjectResult and if there is some error it returns a ConflictObjectResult and a message that explain the reason public async Task EditDevice(Device device, int deviceId) { var device1 = _dbAccess.ReadDevice(deviceId); if (device1 == null) { return new ConflictObjectResult(new { message = "Could not find device" }); } return await _dbAccess.UpdateDevice(device, deviceId); } /// /// deletes a device /// /// the id used to delete /// Used for deleting device from devices list in user /// returns OK public async Task DeleteDevice(string referenceId, int userId) { return await _dbAccess.DeleteDevice(referenceId, userId); } } }