Browse Source

Global rename, use "Id", replace picture with image

master
Daniel Gyulai 4 years ago
parent
commit
3ead6c9d0e
  1. 2
      CoviDok/Api/Errors.cs
  2. 6
      CoviDok/Api/Objects/PublicAssistant.cs
  3. 6
      CoviDok/Api/Objects/PublicChild.cs
  4. 6
      CoviDok/Api/Objects/PublicDoctor.cs
  5. 6
      CoviDok/Api/Objects/PublicParent.cs
  6. 6
      CoviDok/Api/Request/CaseCreate.cs
  7. 14
      CoviDok/Api/Request/CaseFilter.cs
  8. 4
      CoviDok/Api/Request/CaseUpdate.cs
  9. 4
      CoviDok/Api/Request/ImageGet.cs
  10. 2
      CoviDok/Api/Request/ImagePost.cs
  11. 2
      CoviDok/Api/Response/AuthIdentity.cs
  12. 2
      CoviDok/BLL/Sessions/Session.cs
  13. 22
      CoviDok/BLL/Sessions/SessionHandler.cs
  14. 4
      CoviDok/BLL/Storage/StorageHandler.cs
  15. 4
      CoviDok/BLL/User/Handlers/ICaseHandler.cs
  16. 2
      CoviDok/BLL/User/Handlers/IChildHandler.cs
  17. 2
      CoviDok/BLL/User/Handlers/IDoctorHandler.cs
  18. 4
      CoviDok/BLL/User/Managers/AssistantManager.cs
  19. 42
      CoviDok/BLL/User/Managers/CaseManager.cs
  20. 12
      CoviDok/BLL/User/Managers/ChildManager.cs
  21. 6
      CoviDok/BLL/User/Managers/DoctorManager.cs
  22. 4
      CoviDok/BLL/User/Managers/ParentManager.cs
  23. 2
      CoviDok/Controllers/AssistantController.cs
  24. 2
      CoviDok/Controllers/AuthController.cs
  25. 28
      CoviDok/Controllers/CaseController.cs
  26. 14
      CoviDok/Controllers/ChildController.cs
  27. 6
      CoviDok/Controllers/DoctorController.cs
  28. 6
      CoviDok/Controllers/ImagesController.cs
  29. 10
      CoviDok/Controllers/ParentController.cs
  30. 6
      CoviDok/Data/Model/Assistant.cs
  31. 6
      CoviDok/Data/Model/Case.cs
  32. 6
      CoviDok/Data/Model/Child.cs
  33. 6
      CoviDok/Data/Model/Doctor.cs
  34. 4
      CoviDok/Data/Model/Image.cs
  35. 6
      CoviDok/Data/Model/Parent.cs
  36. 4
      CoviDok/Data/Model/Update.cs
  37. 2
      CoviDok/Data/Model/User.cs
  38. 34
      CoviDok/Data/MySQL/MySqlCaseHandler.cs
  39. 4
      CoviDok/Data/MySQL/MySqlChildHandler.cs
  40. 2
      CoviDok/Data/MySQL/MySqlDoctorHandler.cs

2
CoviDok/Api/Errors.cs

@ -12,6 +12,6 @@ namespace CoviDok.Api
EmailTaken, EmailTaken,
EmailNotValid, EmailNotValid,
SSNExists, SSNExists,
BadImageID BadImageId
} }
} }

6
CoviDok/Api/Objects/PublicAssistant.cs

@ -8,13 +8,13 @@ namespace CoviDok.Api.Objects
{ {
public class PublicAssistant public class PublicAssistant
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public int? DoctorId { get; set; } public int? DoctorId { get; set; }
public string FirstName { get; set; } public string FirstName { get; set; }
public string LastName { get; set; } public string LastName { get; set; }
public string Email { get; set; } public string Email { get; set; }
public int ID { get; set; } public int Id { get; set; }
public string PictureID { get; set; } public string ImageId { get; set; }
public Role Role { get; set; } public Role Role { get; set; }
} }
} }

6
CoviDok/Api/Objects/PublicChild.cs

@ -9,15 +9,15 @@ namespace CoviDok.Api.Objects
{ {
public class PublicChild public class PublicChild
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public int ID { get; set; } public int Id { get; set; }
public string FirstName { get; set; } public string FirstName { get; set; }
public string LastName { get; set; } public string LastName { get; set; }
public int DoctorId { get; set; } public int DoctorId { get; set; }
public int ParentId { get; set; } public int ParentId { get; set; }
public string SSN { get; set; } public string SSN { get; set; }
public DateTime BirthDate { get; set; } public DateTime BirthDate { get; set; }
public string PictureId { get; set; } public string ImageId { get; set; }
public Gender Gender { get; set; } public Gender Gender { get; set; }
public Role Role { get; set; } public Role Role { get; set; }
} }

6
CoviDok/Api/Objects/PublicDoctor.cs

@ -8,11 +8,11 @@ namespace CoviDok.Api.Objects
{ {
public class PublicDoctor public class PublicDoctor
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public int ID { get; set; } public int Id { get; set; }
public string FirstName { get; set; } public string FirstName { get; set; }
public string LastName { get; set; } public string LastName { get; set; }
public string PictureID { get; set; } public string ImageId { get; set; }
public string Email { get; set; } public string Email { get; set; }
public Role Role { get; set; } public Role Role { get; set; }
} }

6
CoviDok/Api/Objects/PublicParent.cs

@ -8,13 +8,13 @@ namespace CoviDok.Api.Objects
{ {
public class PublicParent public class PublicParent
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public int ID { get; set; } public int Id { get; set; }
public string FirstName { get; set; } public string FirstName { get; set; }
public string LastName { get; set; } public string LastName { get; set; }
public string Email { get; set; } public string Email { get; set; }
public ICollection<PublicChild> Children { get; set; } = new List<PublicChild>(); public ICollection<PublicChild> Children { get; set; } = new List<PublicChild>();
public string PictureID { get; set; } public string ImageId { get; set; }
public Role Role { get; set; } public Role Role { get; set; }
} }
} }

6
CoviDok/Api/Request/CaseCreate.cs

@ -7,9 +7,9 @@ namespace CoviDok.Api.Request
{ {
public class CaseCreate public class CaseCreate
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public int DoctorID { get; set; } public int DoctorId { get; set; }
public int ChildID { get; set; } public int ChildId { get; set; }
public DateTime StartDate { get; set; } public DateTime StartDate { get; set; }
public string Title { get; set; } public string Title { get; set; }
} }

14
CoviDok/Api/Request/CaseFilter.cs

@ -8,18 +8,18 @@ namespace CoviDok.Api.Request
{ {
public class CaseFilter public class CaseFilter
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public int DoctorID { get; set; } public int DoctorId { get; set; }
public int ParentID { get; set; } public int ParentId { get; set; }
public int ChildID { get; set; } public int ChildId { get; set; }
public int Assignee { get; set; } public int Assignee { get; set; }
public string Title { get; set; } public string Title { get; set; }
public CaseFilter() public CaseFilter()
{ {
DoctorID = int.MinValue; DoctorId = int.MinValue;
ParentID = int.MinValue; ParentId = int.MinValue;
ChildID = int.MinValue; ChildId = int.MinValue;
Assignee = int.MinValue; Assignee = int.MinValue;
Title = null; Title = null;
} }

4
CoviDok/Api/Request/CaseUpdate.cs

@ -7,9 +7,9 @@ namespace CoviDok.Api.Request
{ {
public class CaseUpdate public class CaseUpdate
{ {
public int CaseID { get; set; } public int CaseId { get; set; }
public string UpdateMsg { get; set; } public string UpdateMsg { get; set; }
public List<string> Images {get;set;} public List<string> Images {get;set;}
public string SessionID { get; set; } public string SessionId { get; set; }
} }
} }

4
CoviDok/Api/Request/ImageGet.cs

@ -7,7 +7,7 @@ namespace CoviDok.Api.Request
{ {
public class ImageGet public class ImageGet
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public string ImageID { get; set; } public string ImageId { get; set; }
} }
} }

2
CoviDok/Api/Request/ImagePost.cs

@ -8,7 +8,7 @@ namespace CoviDok.Api.Request
{ {
public class ImagePost public class ImagePost
{ {
public string SessionID { get; set; } public string SessionId { get; set; }
public string File { get; set; } public string File { get; set; }
} }
} }

2
CoviDok/Api/Response/AuthIdentity.cs

@ -8,7 +8,7 @@ namespace CoviDok.Api.Response
public class AuthIdentity public class AuthIdentity
{ {
public int UserId { get; set; } public int UserId { get; set; }
public string SessionID { get; set; } public string SessionId { get; set; }
public string FirstName { get; set; } public string FirstName { get; set; }
public string LastName { get; set; } public string LastName { get; set; }
public Role Role { get; set; } public Role Role { get; set; }

2
CoviDok/BLL/Sessions/Session.cs

@ -7,7 +7,7 @@ namespace CoviDok.BLL.Sessions
{ {
public class Session public class Session
{ {
public int ID { get; set; } public int Id { get; set; }
public Role Type { get; set; } public Role Type { get; set; }
public DateTime LastAccess { get; set; } public DateTime LastAccess { get; set; }
} }

22
CoviDok/BLL/Sessions/SessionHandler.cs

@ -17,38 +17,38 @@ namespace CoviDok.BLL.Sessions
SessionStore = Provider; SessionStore = Provider;
} }
public async Task<Session> GetSession(string SessionID) public async Task<Session> GetSession(string SessionId)
{ {
string Candidate = SessionStore.Get(SessionID); string Candidate = SessionStore.Get(SessionId);
if (Candidate == null) return null; if (Candidate == null) return null;
Session session = null; Session session = null;
await Task.Run(() => { await Task.Run(() => {
session = JsonSerializer.Deserialize<Session>(Candidate); session = JsonSerializer.Deserialize<Session>(Candidate);
session.LastAccess = DateTime.Now; session.LastAccess = DateTime.Now;
SessionStore.Set(SessionID, JsonSerializer.Serialize(session)); SessionStore.Set(SessionId, JsonSerializer.Serialize(session));
}); });
return session; return session;
} }
public async Task<string> CreateSession(Role UserType, int UserID) public async Task<string> CreateSession(Role UserType, int UserId)
{ {
string ID = null; string Id = null;
await Task.Run(() => { await Task.Run(() => {
Session session = new Session Session session = new Session
{ {
ID = UserID, Id = UserId,
Type = UserType, Type = UserType,
LastAccess = DateTime.Now LastAccess = DateTime.Now
}; };
ID = Cuid.Generate(); Id = Cuid.Generate();
SessionStore.Set(ID, JsonSerializer.Serialize(session)); SessionStore.Set(Id, JsonSerializer.Serialize(session));
}); });
return ID; return Id;
} }
public void DeleteSession(string SessionID) public void DeleteSession(string SessionId)
{ {
SessionStore.Del(SessionID); SessionStore.Del(SessionId);
} }
} }
} }

4
CoviDok/BLL/Storage/StorageHandler.cs

@ -39,9 +39,9 @@ namespace CoviDok.BLL.Storage
} }
} }
public async Task GetImage(string bucketName, string ImageID, Action<Stream> callback) public async Task GetImage(string bucketName, string ImageId, Action<Stream> callback)
{ {
await storageProvider.Download(bucketName, ImageID, callback); await storageProvider.Download(bucketName, ImageId, callback);
} }
} }
} }

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

@ -18,10 +18,10 @@ namespace CoviDok.BLL.User.Handlers
public Task UpdateCase(int id, Case Case, Update update); public Task UpdateCase(int id, Case Case, Update update);
public Task SetCase(int id, CaseStatus status, Update message); public Task SetCase(int id, CaseStatus status, Update message);
public bool IsAuthorized(int ID, Case c); public bool IsAuthorized(int Id, Case c);
public List<Update> GetUpdatesForCase(int id); public List<Update> GetUpdatesForCase(int id);
public Update GetUpadte(int id); public Update GetUpadte(int id);
public bool IsAssistantOfDoctor(int id, int doctorID); public bool IsAssistantOfDoctor(int id, int doctorId);
} }
} }

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

@ -13,6 +13,6 @@ namespace CoviDok.BLL.User.Managers
public Task<Child> GetChild(int id); public Task<Child> GetChild(int id);
public Task UpdateChild(int id, Child newData); public Task UpdateChild(int id, Child newData);
public Task<int> AddChild(Child newChild); public Task<int> AddChild(Child newChild);
public List<Child> GetChildren(int parentID); public List<Child> GetChildren(int parentId);
} }
} }

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

@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace CoviDok.BLL.User.Managers namespace CoviDok.BLL.User.Managers
{ {
interface IDoctorHandler interface IdoctorHandler
{ {
public List<Doctor> GetDoctors(string firstName = null, string lastName = null); public List<Doctor> GetDoctors(string firstName = null, string lastName = null);
public Task<Doctor> GetDoctor(int id); public Task<Doctor> GetDoctor(int id);

4
CoviDok/BLL/User/Managers/AssistantManager.cs

@ -23,8 +23,8 @@ namespace CoviDok.Data.MySQL
public async Task UpdateAssistant(Session s, int id, PublicAssistant value) public async Task UpdateAssistant(Session s, int id, PublicAssistant value)
{ {
if (id != value.ID) throw new FormatException(); if (id != value.Id) throw new FormatException();
if (s.ID != id) throw new UnauthorizedAccessException(); if (s.Id != id) throw new UnauthorizedAccessException();
Assistant ast = await handler.GetAssistant(id); Assistant ast = await handler.GetAssistant(id);
if (ast == null) throw new KeyNotFoundException(); if (ast == null) throw new KeyNotFoundException();

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

@ -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,

12
CoviDok/BLL/User/Managers/ChildManager.cs

@ -18,7 +18,7 @@ namespace CoviDok.Data.MySQL
{ {
Child child = await handler.GetChild(id); Child child = await handler.GetChild(id);
if (child == null) throw new KeyNotFoundException(); if (child == null) throw new KeyNotFoundException();
if (child.DoctorId == s.ID || child.ParentId == s.ID) if (child.DoctorId == s.Id || child.ParentId == s.Id)
{ {
return child.ToPublic(); return child.ToPublic();
} }
@ -27,10 +27,10 @@ namespace CoviDok.Data.MySQL
} }
} }
public List<PublicChild> ChildrenOfParent(int parentID) public List<PublicChild> ChildrenOfParent(int parentId)
{ {
List<PublicChild> ret = new List<PublicChild>(); List<PublicChild> ret = new List<PublicChild>();
foreach (Child child in handler.GetChildren(parentID)) foreach (Child child in handler.GetChildren(parentId))
{ {
ret.Add(child.ToPublic()); ret.Add(child.ToPublic());
} }
@ -39,11 +39,11 @@ namespace CoviDok.Data.MySQL
public async Task UpdateChild(Session s, int id, PublicChild newData) public async Task UpdateChild(Session s, int id, PublicChild newData)
{ {
if (id != newData.ID) throw new FormatException(); if (id != newData.Id) throw new FormatException();
Child child = await handler.GetChild(id); Child child = await handler.GetChild(id);
if (child == null) throw new KeyNotFoundException(); if (child == null) throw new KeyNotFoundException();
if (child.ParentId == s.ID || child.DoctorId == s.ID) if (child.ParentId == s.Id || child.DoctorId == s.Id)
{ {
child.UpdateSelf(newData); child.UpdateSelf(newData);
await handler.UpdateChild(id, child); await handler.UpdateChild(id, child);
@ -56,7 +56,7 @@ namespace CoviDok.Data.MySQL
public async Task<int> AddChild(Session s, PublicChild newChild) public async Task<int> AddChild(Session s, PublicChild newChild)
{ {
if (s.ID != newChild.ParentId) throw new UnauthorizedAccessException(); if (s.Id != newChild.ParentId) throw new UnauthorizedAccessException();
Child child = new Child(); Child child = new Child();
child.UpdateSelf(newChild); child.UpdateSelf(newChild);
child.RegistrationDate = DateTime.Now; child.RegistrationDate = DateTime.Now;

6
CoviDok/BLL/User/Managers/DoctorManager.cs

@ -14,7 +14,7 @@ namespace CoviDok.Data.MySQL
{ {
public class DoctorManager public class DoctorManager
{ {
private readonly IDoctorHandler handler = new MySqlDoctorHandler(); private readonly IdoctorHandler handler = new MySqlDoctorHandler();
public async Task<List<PublicDoctor>> GetDoctors(string firstName = null, string lastName = null) public async Task<List<PublicDoctor>> GetDoctors(string firstName = null, string lastName = null)
{ {
@ -38,8 +38,8 @@ namespace CoviDok.Data.MySQL
public async Task UpdateDoctor(Session s, int id, PublicDoctor value) public async Task UpdateDoctor(Session s, int id, PublicDoctor value)
{ {
if (id != value.ID) throw new FormatException(); if (id != value.Id) throw new FormatException();
if (s.ID != id) throw new UnauthorizedAccessException(); if (s.Id != id) throw new UnauthorizedAccessException();
Doctor doc = await handler.GetDoctor(id); Doctor doc = await handler.GetDoctor(id);
if (doc == null) throw new KeyNotFoundException(); if (doc == null) throw new KeyNotFoundException();

4
CoviDok/BLL/User/Managers/ParentManager.cs

@ -23,8 +23,8 @@ namespace CoviDok.Data.MySQL
public async Task UpdateParent(Session s, int id, PublicParent value) public async Task UpdateParent(Session s, int id, PublicParent value)
{ {
if (id != value.ID) throw new FormatException(); if (id != value.Id) throw new FormatException();
if (s.ID != id) throw new UnauthorizedAccessException(); if (s.Id != id) throw new UnauthorizedAccessException();
Parent parent = await handler.GetParent(id); Parent parent = await handler.GetParent(id);
if (parent == null) throw new KeyNotFoundException(); if (parent == null) throw new KeyNotFoundException();

2
CoviDok/Controllers/AssistantController.cs

@ -37,7 +37,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")] [HttpPut("{id}")]
public async Task<IActionResult> PutAssistant(int id, PublicAssistant ast) public async Task<IActionResult> PutAssistant(int id, PublicAssistant ast)
{ {
Session s = await Handler.GetSession(ast.SessionID); Session s = await Handler.GetSession(ast.SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {

2
CoviDok/Controllers/AuthController.cs

@ -29,7 +29,7 @@ namespace CoviDok.Controllers
{ {
AuthIdentity authIdentity = await Auth.AuthenticateUser(authLogin.Email, authLogin.Password); AuthIdentity authIdentity = await Auth.AuthenticateUser(authLogin.Email, authLogin.Password);
if (authIdentity == null) return Unauthorized(); if (authIdentity == null) return Unauthorized();
authIdentity.SessionID = await Handler.CreateSession(authIdentity.Role, authIdentity.UserId); authIdentity.SessionId = await Handler.CreateSession(authIdentity.Role, authIdentity.UserId);
return authIdentity; return authIdentity;
} }
catch (KeyNotFoundException) catch (KeyNotFoundException)

28
CoviDok/Controllers/CaseController.cs

@ -25,9 +25,9 @@ namespace CoviDok.Controllers
// POST /api/Case/{id} // POST /api/Case/{id}
[HttpPost("{id}")] [HttpPost("{id}")]
public async Task<ActionResult<Case>> PostGetCase(int id, string SessionID) public async Task<ActionResult<Case>> PostGetCase(int id, string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
@ -48,7 +48,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}/update")] [HttpPut("{id}/update")]
public async Task<IActionResult> PostUpdate(int id, CaseUpdate data) public async Task<IActionResult> PostUpdate(int id, CaseUpdate data)
{ {
Session s = await Handler.GetSession(data.SessionID); Session s = await Handler.GetSession(data.SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
@ -68,12 +68,12 @@ namespace CoviDok.Controllers
[HttpPost] [HttpPost]
public async Task<ActionResult<Case>> NewCase(CaseCreate data) public async Task<ActionResult<Case>> NewCase(CaseCreate data)
{ {
Session s = await Handler.GetSession(data.SessionID); Session s = await Handler.GetSession(data.SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
Case c = await mgr.CreateCase(s, data.DoctorID, data.ChildID, data.Title, data.StartDate); Case c = await mgr.CreateCase(s, data.DoctorId, data.ChildId, data.Title, data.StartDate);
return CreatedAtAction("PostGetCase", new { id = c.Id }, c); return CreatedAtAction("PostGetCase", new { id = c.Id }, c);
} }
catch (UnauthorizedAccessException) catch (UnauthorizedAccessException)
@ -83,9 +83,9 @@ namespace CoviDok.Controllers
} }
[HttpPost("{id}/updates")] [HttpPost("{id}/updates")]
public async Task<ActionResult<List<Update>>> GetUpdatesForCase(int id, string SessionID) public async Task<ActionResult<List<Update>>> GetUpdatesForCase(int id, string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
return await mgr.GetUpdatesForCase(s, id); return await mgr.GetUpdatesForCase(s, id);
@ -101,9 +101,9 @@ namespace CoviDok.Controllers
} }
[HttpPost("updates/{id}")] [HttpPost("updates/{id}")]
public async Task<ActionResult<Update>> GetUpdate(int id, string SessionID) public async Task<ActionResult<Update>> GetUpdate(int id, string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
@ -121,9 +121,9 @@ namespace CoviDok.Controllers
// POST /api/Case/{id}/close // POST /api/Case/{id}/close
[HttpPost("{id}/close")] [HttpPost("{id}/close")]
public async Task<IActionResult> PostClose(int id, string SessionID) public async Task<IActionResult> PostClose(int id, string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
@ -141,9 +141,9 @@ namespace CoviDok.Controllers
} }
// POST /api/Case/{id}/close // POST /api/Case/{id}/close
[HttpPost("{id}/cure")] [HttpPost("{id}/cure")]
public async Task<IActionResult> PostCured(int id, string SessionID) public async Task<IActionResult> PostCured(int id, string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
@ -164,7 +164,7 @@ namespace CoviDok.Controllers
[HttpPost("filter")] [HttpPost("filter")]
public async Task<ActionResult<List<Case>>> Filter(CaseFilter filters) public async Task<ActionResult<List<Case>>> Filter(CaseFilter filters)
{ {
Session s = await Handler.GetSession(filters.SessionID); Session s = await Handler.GetSession(filters.SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try

14
CoviDok/Controllers/ChildController.cs

@ -23,9 +23,9 @@ namespace CoviDok.Controllers
// POST: api/Child/5 // POST: api/Child/5
[HttpPost("{id}")] [HttpPost("{id}")]
public async Task<ActionResult<PublicChild>> GetPublicChild(int id, string SessionID) public async Task<ActionResult<PublicChild>> GetPublicChild(int id, string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
@ -48,7 +48,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")] [HttpPut("{id}")]
public async Task<IActionResult> PutPublicChild(int id, PublicChild publicChild) public async Task<IActionResult> PutPublicChild(int id, PublicChild publicChild)
{ {
Session s = await Handler.GetSession(publicChild.SessionID); Session s = await Handler.GetSession(publicChild.SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
await ChildManager.UpdateChild(s, id, publicChild); await ChildManager.UpdateChild(s, id, publicChild);
@ -67,11 +67,11 @@ namespace CoviDok.Controllers
} }
[HttpPost("parent")] [HttpPost("parent")]
public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(string SessionID) public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
return ChildManager.ChildrenOfParent(s.ID); return ChildManager.ChildrenOfParent(s.Id);
} }
// POST: api/Child // POST: api/Child
@ -80,7 +80,7 @@ namespace CoviDok.Controllers
[HttpPost] [HttpPost]
public async Task<ActionResult<PublicChild>> PostPublicChild(PublicChild publicChild) public async Task<ActionResult<PublicChild>> PostPublicChild(PublicChild publicChild)
{ {
Session s = await Handler.GetSession(publicChild.SessionID); Session s = await Handler.GetSession(publicChild.SessionId);
if (s == null ) return Unauthorized(); if (s == null ) return Unauthorized();
try { try {

6
CoviDok/Controllers/DoctorController.cs

@ -60,7 +60,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")] [HttpPut("{id}")]
public async Task<IActionResult> PutDoctor(int id, PublicDoctor doctor) { public async Task<IActionResult> PutDoctor(int id, PublicDoctor doctor) {
Session s = await Handler.GetSession(doctor.SessionID); Session s = await Handler.GetSession(doctor.SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {
@ -97,9 +97,9 @@ namespace CoviDok.Controllers
// GET /api/Doc/{id}/children // GET /api/Doc/{id}/children
[HttpPost("{id}/children")] [HttpPost("{id}/children")]
public async Task<ActionResult<ICollection<PublicChild>>> GetChildrenOfDoctor(int id, string SessionID) public async Task<ActionResult<ICollection<PublicChild>>> GetChildrenOfDoctor(int id, string SessionId)
{ {
Session s = await Handler.GetSession(SessionID); Session s = await Handler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {

6
CoviDok/Controllers/ImagesController.cs

@ -43,7 +43,7 @@ namespace CoviDok.Controllers
public async Task<ActionResult<GenericResponse>> OnPostImage(ImagePost post) public async Task<ActionResult<GenericResponse>> OnPostImage(ImagePost post)
{ {
GenericResponse response = new GenericResponse(); GenericResponse response = new GenericResponse();
Session s = await Handler.GetSession(post.SessionID); Session s = await Handler.GetSession(post.SessionId);
if (s == null) if (s == null)
{ {
response.Status = Status.Error; response.Status = Status.Error;
@ -61,7 +61,7 @@ namespace CoviDok.Controllers
public async Task<GenericResponse> OnGetImage(ImageGet imageGet) public async Task<GenericResponse> OnGetImage(ImageGet imageGet)
{ {
GenericResponse response = new GenericResponse(); GenericResponse response = new GenericResponse();
Session s = await Handler.GetSession(imageGet.SessionID); Session s = await Handler.GetSession(imageGet.SessionId);
if (s == null) if (s == null)
{ {
response.Status = Status.Error; response.Status = Status.Error;
@ -70,7 +70,7 @@ namespace CoviDok.Controllers
} }
string res = null; ; string res = null; ;
await MinioHandler.GetImage(BucketName, imageGet.ImageID, (stream) => { await MinioHandler.GetImage(BucketName, imageGet.ImageId, (stream) => {
StreamReader reader = new StreamReader(stream); StreamReader reader = new StreamReader(stream);
res = reader.ReadToEnd(); res = reader.ReadToEnd();
}); });

10
CoviDok/Controllers/ParentController.cs

@ -22,9 +22,9 @@ namespace CoviDok.Controllers
private readonly ParentManager parentManager = new ParentManager(); private readonly ParentManager parentManager = new ParentManager();
[HttpPost("{id}")] [HttpPost("{id}")]
public async Task<ActionResult<PublicParent>> GetParent(int id, string SessionID) public async Task<ActionResult<PublicParent>> GetParent(int id, string SessionId)
{ {
Session s = await sessionHandler.GetSession(SessionID); Session s = await sessionHandler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
return await parentManager.GetParent(id); return await parentManager.GetParent(id);
@ -38,7 +38,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")] [HttpPut("{id}")]
public async Task<IActionResult> PutParent(int id, PublicParent parent) public async Task<IActionResult> PutParent(int id, PublicParent parent)
{ {
Session s = await sessionHandler.GetSession(parent.SessionID); Session s = await sessionHandler.GetSession(parent.SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try { try {
await parentManager.UpdateParent(s, id, parent); await parentManager.UpdateParent(s, id, parent);
@ -58,9 +58,9 @@ namespace CoviDok.Controllers
} }
} }
[HttpPost("{id}/children")] [HttpPost("{id}/children")]
public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(int id, string SessionID) public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(int id, string SessionId)
{ {
Session s = await sessionHandler.GetSession(SessionID); Session s = await sessionHandler.GetSession(SessionId);
if (s == null) return Unauthorized(); if (s == null) return Unauthorized();
try try
{ {

6
CoviDok/Data/Model/Assistant.cs

@ -15,7 +15,7 @@ namespace CoviDok.Data.Model
FirstName = assistant.FirstName; FirstName = assistant.FirstName;
LastName = assistant.LastName; LastName = assistant.LastName;
Email = assistant.Email; Email = assistant.Email;
PictureId = assistant.PictureID; ImageId = assistant.ImageId;
DoctorId = assistant.DoctorId; DoctorId = assistant.DoctorId;
} }
public PublicAssistant ToPublic() public PublicAssistant ToPublic()
@ -25,8 +25,8 @@ namespace CoviDok.Data.Model
FirstName = FirstName, FirstName = FirstName,
LastName = LastName, LastName = LastName,
Email = Email, Email = Email,
PictureID = PictureId, ImageId = ImageId,
ID = Id, Id = Id,
DoctorId = DoctorId, DoctorId = DoctorId,
Role = Api.Role.Ast Role = Api.Role.Ast
}; };

6
CoviDok/Data/Model/Case.cs

@ -8,9 +8,9 @@ namespace CoviDok.Data.Model
public class Case public class Case
{ {
public int Id { get; set; } public int Id { get; set; }
public int DoctorID { get; set; } public int DoctorId { get; set; }
public int ParentID { get; set; } public int ParentId { get; set; }
public int ChildID { get; set; } public int ChildId { get; set; }
public CaseStatus CaseStatus { get; set; } public CaseStatus CaseStatus { get; set; }

6
CoviDok/Data/Model/Child.cs

@ -24,8 +24,8 @@ namespace CoviDok.Data.Model
ParentId = ParentId, ParentId = ParentId,
SSN = SSN, SSN = SSN,
BirthDate = BirthDate, BirthDate = BirthDate,
PictureId = PictureId, ImageId = ImageId,
ID = Id, Id = Id,
Gender = Gender, Gender = Gender,
Role = Api.Role.Chi Role = Api.Role.Chi
}; };
@ -38,7 +38,7 @@ namespace CoviDok.Data.Model
ParentId = newVal.ParentId; ParentId = newVal.ParentId;
SSN = newVal.SSN; SSN = newVal.SSN;
BirthDate = newVal.BirthDate; BirthDate = newVal.BirthDate;
PictureId = newVal.PictureId; ImageId = newVal.ImageId;
Gender = newVal.Gender; Gender = newVal.Gender;
} }
} }

6
CoviDok/Data/Model/Doctor.cs

@ -16,7 +16,7 @@ namespace CoviDok.Data.Model
FirstName = doctor.FirstName; FirstName = doctor.FirstName;
LastName = doctor.LastName; LastName = doctor.LastName;
Email = doctor.Email; Email = doctor.Email;
PictureId = doctor.PictureID; ImageId = doctor.ImageId;
} }
public PublicDoctor ToPublic() public PublicDoctor ToPublic()
{ {
@ -25,8 +25,8 @@ namespace CoviDok.Data.Model
FirstName = FirstName, FirstName = FirstName,
LastName = LastName, LastName = LastName,
Email = Email, Email = Email,
PictureID = PictureId, ImageId = ImageId,
ID = Id, Id = Id,
Role = Api.Role.Doc Role = Api.Role.Doc
}; };
} }

4
CoviDok/Data/Model/Image.cs

@ -8,7 +8,7 @@ namespace CoviDok.Data.Model
public class Image public class Image
{ {
public int Id { get; set; } public int Id { get; set; }
public int UpdateID { get; set; } public int UpdateId { get; set; }
public string ImageID { get; set; } public string ImageId { get; set; }
} }
} }

6
CoviDok/Data/Model/Parent.cs

@ -15,7 +15,7 @@ namespace CoviDok.Data.Model
FirstName = parent.FirstName; FirstName = parent.FirstName;
LastName = parent.LastName; LastName = parent.LastName;
Email = parent.Email; Email = parent.Email;
PictureId = parent.PictureID; ImageId = parent.ImageId;
} }
public PublicParent ToPublic() public PublicParent ToPublic()
{ {
@ -23,8 +23,8 @@ namespace CoviDok.Data.Model
FirstName = FirstName, FirstName = FirstName,
LastName = LastName, LastName = LastName,
Email = Email, Email = Email,
PictureID = PictureId, ImageId = ImageId,
ID = Id, Id = Id,
Role = Api.Role.Par Role = Api.Role.Par
}; };
foreach (Child child in Children) foreach (Child child in Children)

4
CoviDok/Data/Model/Update.cs

@ -9,8 +9,8 @@ namespace CoviDok.Data.Model
public class Update public class Update
{ {
public int Id { get; set; } public int Id { get; set; }
public int CaseID { get; set; } public int CaseId { get; set; }
public int SenderID { get; set; } public int SenderId { get; set; }
public Role SenderRole { 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; }

2
CoviDok/Data/Model/User.cs

@ -14,6 +14,6 @@ namespace CoviDok.Data.Model
public DateTime BirthDate { get; set; } public DateTime BirthDate { get; set; }
public DateTime RegistrationDate { get; set; } public DateTime RegistrationDate { get; set; }
public string PictureId { get; set; } public string ImageId { get; set; }
} }
} }

34
CoviDok/Data/MySQL/MySqlCaseHandler.cs

@ -24,7 +24,7 @@ namespace CoviDok.Data.MySQL
public async Task SetCase(int id, CaseStatus status, Update message) public async Task SetCase(int id, CaseStatus status, Update message)
{ {
Case c = await context.Cases.FindAsync(id); Case c = await context.Cases.FindAsync(id);
message.CaseID = c.Id; message.CaseId = c.Id;
context.Updates.Add(message); context.Updates.Add(message);
c.CaseStatus = status; c.CaseStatus = status;
c.Updates.Add(message); c.Updates.Add(message);
@ -33,7 +33,7 @@ namespace CoviDok.Data.MySQL
public List<Update> GetUpdatesForCase(int id) public List<Update> GetUpdatesForCase(int id)
{ {
return (from u in context.Updates where u.CaseID == id select u).ToList(); return (from u in context.Updates where u.CaseId == id select u).ToList();
} }
public Update GetUpadte(int id) public Update GetUpadte(int id)
@ -41,14 +41,14 @@ namespace CoviDok.Data.MySQL
Update update = (from u in context.Updates where u.Id == id select u).First(); Update update = (from u in context.Updates where u.Id == id select u).First();
if (update != null) if (update != null)
{ {
update.Images = (from i in context.Images where i.UpdateID == update.Id select i.ImageID).ToList(); update.Images = (from i in context.Images where i.UpdateId == update.Id select i.ImageId).ToList();
} }
return update; return update;
} }
public bool IsAssistantOfDoctor(int id, int doctorID) public bool IsAssistantOfDoctor(int id, int doctorId)
{ {
return context.Assistants.Any( (a) => a.Id == id && a.DoctorId == doctorID); return context.Assistants.Any( (a) => a.Id == id && a.DoctorId == doctorId);
} }
public async Task<List<Case>> Filter(CaseFilter filter) public async Task<List<Case>> Filter(CaseFilter filter)
@ -57,17 +57,17 @@ namespace CoviDok.Data.MySQL
await Task.Run(() => { await Task.Run(() => {
var query = from c in context.Cases select c; var query = from c in context.Cases select c;
if (filter.ChildID != int.MinValue) if (filter.ChildId != int.MinValue)
{ {
query = query.Where(c => c.ChildID == filter.ChildID); query = query.Where(c => c.ChildId == filter.ChildId);
} }
if (filter.DoctorID != int.MinValue) if (filter.DoctorId != int.MinValue)
{ {
query = query.Where(c => c.DoctorID == filter.DoctorID); query = query.Where(c => c.DoctorId == filter.DoctorId);
} }
if (filter.ParentID != int.MinValue) if (filter.ParentId != int.MinValue)
{ {
query = query.Where(c => c.ParentID == filter.ParentID); query = query.Where(c => c.ParentId == filter.ParentId);
} }
if (filter.Assignee != int.MinValue) if (filter.Assignee != int.MinValue)
{ {
@ -94,12 +94,12 @@ namespace CoviDok.Data.MySQL
string[] forbidden = { "Updates" }; string[] forbidden = { "Updates" };
PropertyCopier<Case>.Copy(Case, c, forbidden); PropertyCopier<Case>.Copy(Case, c, forbidden);
context.Updates.Add(update); context.Updates.Add(update);
foreach (string ImageID in update.Images) foreach (string ImageId in update.Images)
{ {
Image image = new Image Image image = new Image
{ {
UpdateID = update.Id, UpdateId = update.Id,
ImageID = ImageID ImageId = ImageId
}; };
context.Images.Add(image); context.Images.Add(image);
} }
@ -108,13 +108,13 @@ namespace CoviDok.Data.MySQL
await context.SaveChangesAsync(); await context.SaveChangesAsync();
} }
public bool IsAuthorized(int ID, Case c) public bool IsAuthorized(int Id, Case c)
{ {
if (ID == c.DoctorID || ID == c.ParentID) return true; if (Id == c.DoctorId || Id == c.ParentId) return true;
// Ha van olyan Asszisztens, akinek; // Ha van olyan Asszisztens, akinek;
// - a dokija egyezik az ügy dokijával // - a dokija egyezik az ügy dokijával
// - azonosítója a bejelentezett user azonosítója // - azonosítója a bejelentezett user azonosítója
return (context.Assistants.Any(a => a.Id == ID && a.DoctorId == c.DoctorID)); return (context.Assistants.Any(a => a.Id == Id && a.DoctorId == c.DoctorId));
} }
} }
} }

4
CoviDok/Data/MySQL/MySqlChildHandler.cs

@ -23,9 +23,9 @@ namespace CoviDok.Data.MySQL
return await context.Children.FindAsync(id); return await context.Children.FindAsync(id);
} }
public List<Child> GetChildren(int parentID) public List<Child> GetChildren(int parentId)
{ {
return (from c in context.Children where c.ParentId == parentID select c).ToList(); return (from c in context.Children where c.ParentId == parentId select c).ToList();
} }
public async Task UpdateChild(int id, Child newData) public async Task UpdateChild(int id, Child newData)

2
CoviDok/Data/MySQL/MySqlDoctorHandler.cs

@ -9,7 +9,7 @@ using System.Threading.Tasks;
namespace CoviDok.Data.MySQL namespace CoviDok.Data.MySQL
{ {
public class MySqlDoctorHandler : IDoctorHandler public class MySqlDoctorHandler : IdoctorHandler
{ {
private readonly MySqlContext context = new MySqlContext(); private readonly MySqlContext context = new MySqlContext();

Loading…
Cancel
Save