From c9155d582b6e268e9fd907c87ae9613a36ebbb6c Mon Sep 17 00:00:00 2001 From: LilleBRG Date: Mon, 31 Mar 2025 15:49:35 +0200 Subject: [PATCH] no errors after merge. update database please --- backend/Api/BusinessLogic/DeviceLogic.cs | 11 +---------- backend/Api/BusinessLogic/UserLogic.cs | 2 +- backend/Api/Controllers/DeviceController.cs | 8 -------- backend/Api/Controllers/UserController.cs | 10 ++++++---- backend/Api/DBAccess/DBAccess.cs | 7 ------- frontend/devices/index.html | 18 +++++++++--------- frontend/home/index.html | 10 +++++++--- frontend/profile/index.html | 17 ++++++++++------- frontend/scripts/devices.js | 10 +++++----- frontend/scripts/services/devices.service.js | 14 ++------------ frontend/scripts/services/users.service.js | 13 ++----------- frontend/styles/common.css | 6 ++++++ frontend/styles/profile.css | 9 +++++++++ 13 files changed, 58 insertions(+), 77 deletions(-) diff --git a/backend/Api/BusinessLogic/DeviceLogic.cs b/backend/Api/BusinessLogic/DeviceLogic.cs index 8bfa79a..ae4be2c 100644 --- a/backend/Api/BusinessLogic/DeviceLogic.cs +++ b/backend/Api/BusinessLogic/DeviceLogic.cs @@ -41,21 +41,12 @@ namespace Api.BusinessLogic /// 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) + public async Task AddDevice(Device device, 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); } diff --git a/backend/Api/BusinessLogic/UserLogic.cs b/backend/Api/BusinessLogic/UserLogic.cs index e63a0d9..4743cdd 100644 --- a/backend/Api/BusinessLogic/UserLogic.cs +++ b/backend/Api/BusinessLogic/UserLogic.cs @@ -102,7 +102,7 @@ namespace Api.BusinessLogic /// returns the updated user in a OkObjectResult and if there is some error it returns a ConflictObjectResult and a message that explain the reason public async Task EditProfile(User user, int userId) { - return await _dbAccess.UpdateUser(userRequest, userId); + return await _dbAccess.UpdateUser(user, userId); } public async Task changePassword(ChangePasswordRequest passwordRequest, int userId) diff --git a/backend/Api/Controllers/DeviceController.cs b/backend/Api/Controllers/DeviceController.cs index 6d99e04..67727b3 100644 --- a/backend/Api/Controllers/DeviceController.cs +++ b/backend/Api/Controllers/DeviceController.cs @@ -68,13 +68,5 @@ namespace Api.Controllers { return await _deviceLogic.EditDevice(device, deviceId); } - - - [Authorize] - [HttpDelete("Delete/{referenceId}")] - public async Task EditDevice(string referenceId) - { - return await _deviceLogic.EditDevice(referenceId); - } } } diff --git a/backend/Api/Controllers/UserController.cs b/backend/Api/Controllers/UserController.cs index 55cdf5c..bec64c0 100644 --- a/backend/Api/Controllers/UserController.cs +++ b/backend/Api/Controllers/UserController.cs @@ -19,13 +19,15 @@ namespace Api.Controllers } //[Authorize] - [HttpGet("{userId}")] - public async Task GetUSer(int userId) + [HttpGet("Get")] + public async Task GetUSer() { + var claims = HttpContext.User.Claims; + string userIdString = claims.FirstOrDefault(c => c.Type == ClaimTypes.NameIdentifier).Value; + int userId = Convert.ToInt32(userIdString); return await _userLogic.getUser(userId); } - [HttpPost("login")] - // Sends the login to userLogic + [HttpPost("Login")] public async Task Login([FromBody] Login login) { diff --git a/backend/Api/DBAccess/DBAccess.cs b/backend/Api/DBAccess/DBAccess.cs index a154e7a..90baaf0 100644 --- a/backend/Api/DBAccess/DBAccess.cs +++ b/backend/Api/DBAccess/DBAccess.cs @@ -21,13 +21,6 @@ namespace Api.DBAccess return await _context.Users.FirstOrDefaultAsync(u => u.Id == userId); } - - public async Task getUser(int userId) - { - return await _context.Users.FirstOrDefaultAsync(u => u.Id == userId); - } - - /// /// Creates a user using entityframework core /// diff --git a/frontend/devices/index.html b/frontend/devices/index.html index 9fe9dcc..46e2327 100644 --- a/frontend/devices/index.html +++ b/frontend/devices/index.html @@ -13,16 +13,16 @@
-
- Home +
+ Home +
Devices -
- Profile - - - -
-
+ Profile + + + +
+
diff --git a/frontend/home/index.html b/frontend/home/index.html index ae98704..c3189e5 100644 --- a/frontend/home/index.html +++ b/frontend/home/index.html @@ -8,16 +8,20 @@ +
Home
- Devices - Profile + Devices + Profile + + +
-
+
diff --git a/frontend/profile/index.html b/frontend/profile/index.html index 1fb7dc1..41c94d1 100644 --- a/frontend/profile/index.html +++ b/frontend/profile/index.html @@ -13,20 +13,23 @@
-
-
- - - -
+
+
+
+
+ + +
+
+