Browse Source

Restrictions for case status change

master
Daniel Gyulai 4 years ago
parent
commit
9e56d09bfa
  1. 41
      CoviDok/BLL/User/Managers/CaseManager.cs
  2. 8
      CoviDok/Controllers/CaseController.cs

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

@ -44,14 +44,19 @@ namespace CoviDok.BLL.User.Managers
if (c == null) throw new KeyNotFoundException(); if (c == null) throw new KeyNotFoundException();
if (handler.IsAuthorized(s.Id, c) && s.Type == Api.Role.Ast) if (handler.IsAuthorized(s.Id, c) && s.Type == Api.Role.Ast)
{ {
Update update = new Update { if (c.CaseStatus == CaseStatus.Cured)
CaseId = c.Id, {
SenderId = s.Id, Update update = new Update
SenderRole = s.Type, {
CreatedDate = DateTime.Now, CaseId = c.Id,
Content = "Case set to 'Certified'" SenderId = s.Id,
}; SenderRole = s.Type,
await handler.SetCase(id, CaseStatus.Certified, update); CreatedDate = DateTime.Now,
Content = "Case set to 'Certified'"
};
await handler.SetCase(id, CaseStatus.Certified, update);
}
else throw new InvalidOperationException();
} }
else else
{ {
@ -65,15 +70,19 @@ namespace CoviDok.BLL.User.Managers
if (c == null) throw new KeyNotFoundException(); if (c == null) throw new KeyNotFoundException();
if (s.Id == c.DoctorId) if (s.Id == c.DoctorId)
{ {
Update update = new Update if (c.CaseStatus == CaseStatus.InProgress)
{ {
CaseId = c.Id, Update update = new Update
SenderId = s.Id, {
SenderRole = s.Type, CaseId = c.Id,
CreatedDate = DateTime.Now, SenderId = s.Id,
Content = "Case set to 'Cured'" SenderRole = s.Type,
}; CreatedDate = DateTime.Now,
await handler.SetCase(id, CaseStatus.Cured, update); Content = "Case set to 'Cured'"
};
await handler.SetCase(id, CaseStatus.Cured, update);
}
else throw new InvalidOperationException();
} }
else else
{ {

8
CoviDok/Controllers/CaseController.cs

@ -153,6 +153,10 @@ namespace CoviDok.Controllers
{ {
return NotFound(); return NotFound();
} }
catch (InvalidOperationException)
{
return BadRequest();
}
} }
// POST /api/Case/{id}/close // POST /api/Case/{id}/close
[HttpPost("{id}/cure")] [HttpPost("{id}/cure")]
@ -172,6 +176,10 @@ namespace CoviDok.Controllers
{ {
return NotFound(); return NotFound();
} }
catch (InvalidOperationException)
{
return BadRequest();
}
} }
// POST /api/Case/filter // POST /api/Case/filter

Loading…
Cancel
Save