Removed unnessesary usings and added a datetimerange for getting logs

This commit is contained in:
Jeas0001 2025-03-31 10:39:07 +02:00
parent f6e2c8f450
commit 9dc19efd83
9 changed files with 27 additions and 21 deletions

View File

@ -1,9 +1,7 @@
using Api.DBAccess; using Api.DBAccess;
using Api.Models; using Api.Models;
using Microsoft.IdentityModel.Tokens;
using RabbitMQ.Client; using RabbitMQ.Client;
using RabbitMQ.Client.Events; using RabbitMQ.Client.Events;
using System.Security.Cryptography;
using System.Text; using System.Text;
using System.Text.Json; using System.Text.Json;

View File

@ -4,7 +4,6 @@ using RabbitMQ.Client;
using RabbitMQ.Client.Events; using RabbitMQ.Client.Events;
using System.Text; using System.Text;
using System.Text.Json; using System.Text.Json;
using System.Threading.Channels;
namespace Api.AMQPReciever namespace Api.AMQPReciever
{ {

View File

@ -1,7 +1,6 @@
using Api.DBAccess; using Api.DBAccess;
using Api.Models; using Api.Models;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace Api.BusinessLogic namespace Api.BusinessLogic
{ {
@ -54,10 +53,12 @@ namespace Api.BusinessLogic
/// <summary> /// <summary>
/// Checks if the device exist that is trying to be read from /// Checks if the device exist that is trying to be read from
/// Gets the logs and checks if there are any in the list /// 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
/// </summary> /// </summary>
/// <param name="deviceId">The deviceId that you want from the logs</param> /// <param name="deviceId">The deviceId that you want from the logs</param>
/// <returns>returns the logs in a OkObjectResult and if there is some error it returns a ConflictObjectResult and a message that explain the reason</returns> /// <returns>returns the logs in a OkObjectResult and if there is some error it returns a ConflictObjectResult and a message that explain the reason</returns>
public async Task<IActionResult> GetLogs(int deviceId) public async Task<IActionResult> GetLogs(DateTimeRange dateTimeRange, int deviceId)
{ {
var device = await _dbAccess.ReadDevice(deviceId); var device = await _dbAccess.ReadDevice(deviceId);
@ -67,7 +68,15 @@ namespace Api.BusinessLogic
if (logs.Count == 0) { return new ConflictObjectResult(new { message = "Could not find any logs connected to the device" }); } if (logs.Count == 0) { return new ConflictObjectResult(new { message = "Could not find any logs connected to the device" }); }
return new OkObjectResult(logs); if (dateTimeRange.DateTimeStart == dateTimeRange.DateTimeEnd) { return new OkObjectResult(logs); }
List<TemperatureLogs> rangedLogs = new List<TemperatureLogs>();
foreach (var log in logs)
{
if (log.Date <= dateTimeRange.DateTimeStart && log.Date >= dateTimeRange.DateTimeEnd) { rangedLogs.Add(log); }
}
return new OkObjectResult(rangedLogs);
} }
/// <summary> /// <summary>

View File

@ -1,6 +1,5 @@
using Api.DBAccess; using Api.DBAccess;
using Api.Models; using Api.Models;
using Microsoft.AspNetCore.Http.HttpResults;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.IdentityModel.Tokens; using Microsoft.IdentityModel.Tokens;
using System.IdentityModel.Tokens.Jwt; using System.IdentityModel.Tokens.Jwt;

View File

@ -45,9 +45,9 @@ namespace Api.Controllers
// Sends the deviceId to deviceLogic // Sends the deviceId to deviceLogic
[Authorize] [Authorize]
[HttpGet("logs/{deviceId}")] [HttpGet("logs/{deviceId}")]
public async Task<IActionResult> GetLogs(int deviceId) public async Task<IActionResult> GetLogs([FromBody] DateTimeRange dateTimeRange, int deviceId)
{ {
return await _deviceLogic.GetLogs(deviceId); return await _deviceLogic.GetLogs(dateTimeRange, deviceId);
} }
// Sends the deviceId to deviceLogic // Sends the deviceId to deviceLogic

View File

@ -1,10 +1,6 @@
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Api.Models; using Api.Models;
using Api.DBAccess;
using Microsoft.IdentityModel.Tokens;
using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims; using System.Security.Claims;
using System.Text;
using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Authorization;
using Api.BusinessLogic; using Api.BusinessLogic;

View File

@ -1,10 +1,6 @@
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Api.Models; using Api.Models;
using System.Text;
using System.Runtime.Intrinsics.Arm;
using System.Security.Cryptography;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace Api.DBAccess namespace Api.DBAccess
@ -81,6 +77,7 @@ namespace Api.DBAccess
return await _context.Users.FirstOrDefaultAsync(u => u.RefreshToken == refreshToken); return await _context.Users.FirstOrDefaultAsync(u => u.RefreshToken == refreshToken);
} }
// Updates the refreshtoken saved in DB
public async void UpdatesRefreshToken(string refreshToken, int userId) public async void UpdatesRefreshToken(string refreshToken, int userId)
{ {
var user = await _context.Users.FirstOrDefaultAsync(u => u.Id == userId); var user = await _context.Users.FirstOrDefaultAsync(u => u.Id == userId);
@ -191,13 +188,13 @@ namespace Api.DBAccess
return new ConflictObjectResult(new { message = "Could not save to database" }); return new ConflictObjectResult(new { message = "Could not save to database" });
} }
// Returns a device according to userID // Returns a device according to deviceId
public async Task<Device> ReadDevice(int deviceId) public async Task<Device> ReadDevice(int deviceId)
{ {
return await _context.Devices.FirstOrDefaultAsync(d => d.Id == deviceId); return await _context.Devices.FirstOrDefaultAsync(d => d.Id == deviceId);
} }
// Returns a device according to userID // Returns a device according to refenreId
public Device ReadDevice(string refenreId) public Device ReadDevice(string refenreId)
{ {
return _context.Devices.FirstOrDefault(d => d.ReferenceId == refenreId); return _context.Devices.FirstOrDefault(d => d.ReferenceId == refenreId);

View File

@ -0,0 +1,9 @@
namespace Api.Models
{
public class DateTimeRange
{
public DateTime DateTimeStart { get; set; }
public DateTime DateTimeEnd { get; set; }
}
}

View File

@ -5,7 +5,6 @@ using Api.DBAccess;
using Api.MQTTReciever; using Api.MQTTReciever;
using Microsoft.AspNetCore; using Microsoft.AspNetCore;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
class Program class Program
{ {