|
@ -25,7 +25,7 @@ namespace CoviDok.BLL.User.Managers |
|
|
{ |
|
|
{ |
|
|
Case c = await handler.GetCase(id); |
|
|
Case c = await handler.GetCase(id); |
|
|
if (c == null) throw new KeyNotFoundException(); |
|
|
if (c == null) throw new KeyNotFoundException(); |
|
|
if (handler.IsAuthorized(s.ID, c)) |
|
|
if (handler.IsAuthorized(s.Id, c)) |
|
|
{ |
|
|
{ |
|
|
return handler.GetUpdatesForCase(id); |
|
|
return handler.GetUpdatesForCase(id); |
|
|
} |
|
|
} |
|
@ -37,11 +37,11 @@ namespace CoviDok.BLL.User.Managers |
|
|
{ |
|
|
{ |
|
|
Case c = await handler.GetCase(id); |
|
|
Case c = await handler.GetCase(id); |
|
|
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 { |
|
|
Update update = new Update { |
|
|
CaseID = c.Id, |
|
|
CaseId = c.Id, |
|
|
SenderID = s.ID, |
|
|
SenderId = s.Id, |
|
|
SenderRole = s.Type, |
|
|
SenderRole = s.Type, |
|
|
CreatedDate = DateTime.Now, |
|
|
CreatedDate = DateTime.Now, |
|
|
Content = "Case set to 'Certified'" |
|
|
Content = "Case set to 'Certified'" |
|
@ -58,12 +58,12 @@ namespace CoviDok.BLL.User.Managers |
|
|
{ |
|
|
{ |
|
|
Case c = await handler.GetCase(id); |
|
|
Case c = await handler.GetCase(id); |
|
|
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 |
|
|
Update update = new Update |
|
|
{ |
|
|
{ |
|
|
CaseID = c.Id, |
|
|
CaseId = c.Id, |
|
|
SenderID = s.ID, |
|
|
SenderId = s.Id, |
|
|
SenderRole = s.Type, |
|
|
SenderRole = s.Type, |
|
|
CreatedDate = DateTime.Now, |
|
|
CreatedDate = DateTime.Now, |
|
|
Content = "Case set to 'Cured'" |
|
|
Content = "Case set to 'Cured'" |
|
@ -80,9 +80,9 @@ namespace CoviDok.BLL.User.Managers |
|
|
{ |
|
|
{ |
|
|
// Parent, Doctor, and doctors assistants can access a case
|
|
|
// Parent, Doctor, and doctors assistants can access a case
|
|
|
Update u = handler.GetUpadte(id); |
|
|
Update u = handler.GetUpadte(id); |
|
|
Case c = await handler.GetCase(u.CaseID); |
|
|
Case c = await handler.GetCase(u.CaseId); |
|
|
if (c == null) throw new KeyNotFoundException(); |
|
|
if (c == null) throw new KeyNotFoundException(); |
|
|
if (handler.IsAuthorized(s.ID, c)) |
|
|
if (handler.IsAuthorized(s.Id, c)) |
|
|
{ |
|
|
{ |
|
|
return u; |
|
|
return u; |
|
|
} |
|
|
} |
|
@ -99,7 +99,7 @@ namespace CoviDok.BLL.User.Managers |
|
|
// Parent, Doctor, and doctors assistants can access a case
|
|
|
// Parent, Doctor, and doctors assistants can access a case
|
|
|
Case c = await handler.GetCase(id); |
|
|
Case c = await handler.GetCase(id); |
|
|
if (c == null) throw new KeyNotFoundException(); |
|
|
if (c == null) throw new KeyNotFoundException(); |
|
|
if (handler.IsAuthorized(s.ID, c)) |
|
|
if (handler.IsAuthorized(s.Id, c)) |
|
|
{ |
|
|
{ |
|
|
return c; |
|
|
return c; |
|
|
} |
|
|
} |
|
@ -109,19 +109,19 @@ namespace CoviDok.BLL.User.Managers |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public async Task<Case> CreateCase(Session s, int DoctorID, int ChildID, string Title, DateTime startDate) |
|
|
public async Task<Case> CreateCase(Session s, int DoctorId, int ChildId, string Title, DateTime startDate) |
|
|
{ |
|
|
{ |
|
|
// TODO szülő csak saját gyereket jelenthet
|
|
|
// TODO szülő csak saját gyereket jelenthet
|
|
|
Case c = new Case { |
|
|
Case c = new Case { |
|
|
StartDate = startDate, |
|
|
StartDate = startDate, |
|
|
ChildID = ChildID, |
|
|
ChildId = ChildId, |
|
|
ParentID = s.ID, |
|
|
ParentId = s.Id, |
|
|
DoctorID = DoctorID, |
|
|
DoctorId = DoctorId, |
|
|
Title = Title, |
|
|
Title = Title, |
|
|
CreatedDate = DateTime.Now, |
|
|
CreatedDate = DateTime.Now, |
|
|
LastModificationDate = DateTime.Now, |
|
|
LastModificationDate = DateTime.Now, |
|
|
CaseStatus = CaseStatus.InProgress, |
|
|
CaseStatus = CaseStatus.InProgress, |
|
|
Assignee = s.ID |
|
|
Assignee = s.Id |
|
|
}; |
|
|
}; |
|
|
return await handler.AddCase(c); |
|
|
return await handler.AddCase(c); |
|
|
} |
|
|
} |
|
@ -129,19 +129,19 @@ namespace CoviDok.BLL.User.Managers |
|
|
public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images) |
|
|
public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images) |
|
|
{ |
|
|
{ |
|
|
Case c = await handler.GetCase(id); |
|
|
Case c = await handler.GetCase(id); |
|
|
if (c == null) throw new KeyNotFoundException("Case ID not found: " + id); |
|
|
if (c == null) throw new KeyNotFoundException("Case Id not found: " + id); |
|
|
if (handler.IsAuthorized(s.ID, c)) |
|
|
if (handler.IsAuthorized(s.Id, c)) |
|
|
{ |
|
|
{ |
|
|
if (c.CaseStatus == CaseStatus.Certified) throw new ArgumentException("Can't modify closed Case!"); |
|
|
if (c.CaseStatus == CaseStatus.Certified) throw new ArgumentException("Can't modify closed Case!"); |
|
|
|
|
|
|
|
|
if (s.ID == c.ParentID) c.Assignee = c.DoctorID; // Ha szülő updatel, az assignee az orvos lesz
|
|
|
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
|
|
|
// 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
|
|
|
if (s.Id == c.DoctorId) c.Assignee = c.ParentId; // Ha doki frissít, a szülőhöz kerül
|
|
|
|
|
|
|
|
|
c.LastModificationDate = DateTime.Now; |
|
|
c.LastModificationDate = DateTime.Now; |
|
|
Update update = new Update { |
|
|
Update update = new Update { |
|
|
CaseID = c.Id, |
|
|
CaseId = c.Id, |
|
|
SenderID = s.ID, |
|
|
SenderId = s.Id, |
|
|
SenderRole = s.Type, |
|
|
SenderRole = s.Type, |
|
|
Content = updateMsg, |
|
|
Content = updateMsg, |
|
|
CreatedDate = DateTime.Now, |
|
|
CreatedDate = DateTime.Now, |
|
|