Browse Source

Updated "Update" class, added method to query the updates of a case

master
Daniel Gyulai 4 years ago
parent
commit
5b5aef5c21
  1. 2
      CoviDok/BLL/User/Handlers/ICaseHandler.cs
  2. 16
      CoviDok/BLL/User/Managers/CaseManager.cs
  3. 18
      CoviDok/Controllers/CaseController.cs
  4. 7
      CoviDok/Data/Model/Update.cs
  5. 5
      CoviDok/Data/MySQL/MySqlCaseHandler.cs

2
CoviDok/BLL/User/Handlers/ICaseHandler.cs

@ -19,5 +19,7 @@ namespace CoviDok.BLL.User.Handlers
public Task SetCase(int id, CaseStatus status); public Task SetCase(int id, CaseStatus status);
public bool IsAuthorized(int ID, Case c); public bool IsAuthorized(int ID, Case c);
public List<Update> GetUpdatesForCase(int id);
} }
} }

16
CoviDok/BLL/User/Managers/CaseManager.cs

@ -21,6 +21,18 @@ namespace CoviDok.BLL.User.Managers
return await handler.Filter(filter); return await handler.Filter(filter);
} }
public async Task<List<Update>> GetUpdatesForCase(Session s, int id)
{
Case c = await handler.GetCase(id);
if (c == null) throw new KeyNotFoundException();
if (handler.IsAuthorized(s.ID, c))
{
return handler.GetUpdatesForCase(id);
}
else throw new UnauthorizedAccessException();
}
public async Task SetCertified(Session s, int id) public async Task SetCertified(Session s, int id)
{ {
Case c = await handler.GetCase(id); Case c = await handler.GetCase(id);
@ -96,7 +108,9 @@ namespace CoviDok.BLL.User.Managers
c.LastModificationDate = DateTime.Now; c.LastModificationDate = DateTime.Now;
Update update = new Update { Update update = new Update {
Sender = s.ID, CaseID = c.Id,
SenderID = s.ID,
SenderRole = s.Type,
Content = updateMsg, Content = updateMsg,
CreatedDate = DateTime.Now, CreatedDate = DateTime.Now,
Images = Images Images = Images

18
CoviDok/Controllers/CaseController.cs

@ -82,6 +82,24 @@ namespace CoviDok.Controllers
} }
} }
[HttpPost("{id}/updates")]
public async Task<ActionResult<List<Update>>> GetUpdatesForCase(int id, AuthGet get)
{
Session s = await Handler.GetSession(get.SessionID);
if (s == null) return Unauthorized();
try {
return await mgr.GetUpdatesForCase(s, id);
}
catch (UnauthorizedAccessException)
{
return Unauthorized();
}
catch (KeyNotFoundException)
{
return NotFound();
}
}
// POST /api/Case/{id}/close // POST /api/Case/{id}/close
[HttpPost("{id}/close")] [HttpPost("{id}/close")]
public async Task<IActionResult> PostClose(int id, CaseUpdate data) public async Task<IActionResult> PostClose(int id, CaseUpdate data)

7
CoviDok/Data/Model/Update.cs

@ -1,4 +1,5 @@
using System; using CoviDok.Api;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -8,7 +9,9 @@ namespace CoviDok.Data.Model
public class Update public class Update
{ {
public int Id { get; set; } public int Id { get; set; }
public int Sender { get; set; } public int CaseID { get; set; }
public int SenderID { get; set; }
public Role SenderRole { get; set; }
public string Content { get; set; } public string Content { get; set; }
public DateTime CreatedDate { get; set; } public DateTime CreatedDate { get; set; }

5
CoviDok/Data/MySQL/MySqlCaseHandler.cs

@ -28,6 +28,11 @@ namespace CoviDok.Data.MySQL
await context.SaveChangesAsync(); await context.SaveChangesAsync();
} }
public List<Update> GetUpdatesForCase(int id)
{
return (from u in context.Updates where u.CaseID == id select u).ToList();
}
public async Task<List<Case>> Filter(CaseFilter filter) public async Task<List<Case>> Filter(CaseFilter filter)
{ {
List<Case> ret = new List<Case>(); List<Case> ret = new List<Case>();

Loading…
Cancel
Save