Browse Source

Exposed priority change as separate API endpoint

master
Daniel Gyulai 4 years ago
parent
commit
cd787605f3
  1. 14
      CoviDok/Api/Request/CasePriority.cs
  2. 1
      CoviDok/Api/Request/CaseUpdate.cs
  3. 4
      CoviDok/BLL/User/Handlers/ICaseHandler.cs
  4. 21
      CoviDok/BLL/User/Managers/CaseManager.cs
  5. 21
      CoviDok/Controllers/CaseController.cs
  6. 10
      CoviDok/Data/MySQL/MySqlCaseHandler.cs

14
CoviDok/Api/Request/CasePriority.cs

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.Api.Request
{
public class CasePriority
{
public int CaseId { get; set; }
public string SessionId { get; set; }
public Priority Priority { get; set; }
}
}

1
CoviDok/Api/Request/CaseUpdate.cs

@ -11,6 +11,5 @@ namespace CoviDok.Api.Request
public string UpdateMsg { get; set; }
public List<string> Images {get;set;}
public string SessionId { get; set; }
public Priority Priority { get; set; }
}
}

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

@ -1,4 +1,5 @@
using CoviDok.Api.Request;
using CoviDok.Api;
using CoviDok.Api.Request;
using CoviDok.BLL.User.Managers;
using CoviDok.Data.Model;
using System;
@ -22,6 +23,7 @@ namespace CoviDok.BLL.User.Handlers
public List<Update> GetUpdatesForCase(int id);
public Update GetUpadte(int id);
public Task SetPriority(int id, Priority priority);
public bool IsAssistantOfDoctor(int id, int doctorId);
}
}

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

@ -1,4 +1,5 @@
using CoviDok.Api.Request;
using CoviDok.Api;
using CoviDok.Api.Request;
using CoviDok.BLL.Sessions;
using CoviDok.BLL.Storage;
using CoviDok.BLL.User.Handlers;
@ -113,6 +114,20 @@ namespace CoviDok.BLL.User.Managers
}
}
public async Task SetPriority(Session s, int id, Priority priority)
{
Case c = await handler.GetCase(id);
if (c == null) throw new KeyNotFoundException();
if (handler.IsAuthorized(s.Id, c))
{
await handler.SetPriority(id, priority);
}
else
{
throw new UnauthorizedAccessException();
}
}
public async Task<Case> CreateCase(Session s, int DoctorId, int ChildId, string Title, DateTime startDate, Api.Priority priority)
{
// TODO szülő csak saját gyereket jelenthet
@ -131,7 +146,7 @@ namespace CoviDok.BLL.User.Managers
return await handler.AddCase(c);
}
public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images, Api.Priority priority)
public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images)
{
Case c = await handler.GetCase(id);
if (c == null) throw new KeyNotFoundException("Case Id not found: " + id);
@ -146,7 +161,7 @@ namespace CoviDok.BLL.User.Managers
if (s.Id == c.ParentId) c.Assignee = c.DoctorId; // Ha szülő updatel, az assignee az orvos lesz
// TODO Ha a doki VAGY asszisztense frissít
if (s.Id == c.DoctorId) c.Assignee = c.ParentId; // Ha doki frissít, a szülőhöz kerül
c.Priority = priority;
c.LastModificationDate = DateTime.Now;
Update update = new Update {
CaseId = c.Id,

21
CoviDok/Controllers/CaseController.cs

@ -41,6 +41,25 @@ namespace CoviDok.Controllers
}
}
[HttpPost("{id}/priority")]
public async Task<IActionResult> PostPriorityChange(int id, CasePriority priority)
{
try
{
Session s = await Handler.GetSession(priority.SessionId);
await mgr.SetPriority(s, id, priority.Priority);
return Ok();
}
catch (KeyNotFoundException)
{
return NotFound();
}
catch (UnauthorizedAccessException)
{
return Unauthorized();
}
}
// POST /api/Case/{id}/update
[HttpPut("{id}/update")]
@ -49,7 +68,7 @@ namespace CoviDok.Controllers
try
{
Session s = await Handler.GetSession(data.SessionId);
await mgr.UpdateCase(s, id, data.UpdateMsg, data.Images, data.Priority);
await mgr.UpdateCase(s, id, data.UpdateMsg, data.Images);
return Ok();
}
catch (UnauthorizedAccessException)

10
CoviDok/Data/MySQL/MySqlCaseHandler.cs

@ -1,4 +1,5 @@
using CoviDok.Api.Request;
using CoviDok.Api;
using CoviDok.Api.Request;
using CoviDok.BLL;
using CoviDok.BLL.User.Handlers;
using CoviDok.BLL.User.Managers;
@ -32,6 +33,13 @@ namespace CoviDok.Data.MySQL
await context.SaveChangesAsync();
}
public async Task SetPriority(int id, Priority priority)
{
Case c = await context.Cases.FindAsync(id);
c.Priority = priority;
await context.SaveChangesAsync();
}
public List<Update> GetUpdatesForCase(int id)
{
List<Update> updates = (from u in context.Updates where u.CaseId == id select u).ToList();

Loading…
Cancel
Save