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,
EmailNotValid,
SSNExists,
BadImageID
BadImageId
}
}

6
CoviDok/Api/Objects/PublicAssistant.cs

@ -8,13 +8,13 @@ namespace CoviDok.Api.Objects
{
public class PublicAssistant
{
public string SessionID { get; set; }
public string SessionId { get; set; }
public int? DoctorId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public int ID { get; set; }
public string PictureID { get; set; }
public int Id { get; set; }
public string ImageId { 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 string SessionID { get; set; }
public int ID { get; set; }
public string SessionId { get; set; }
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int DoctorId { get; set; }
public int ParentId { get; set; }
public string SSN { get; set; }
public DateTime BirthDate { get; set; }
public string PictureId { get; set; }
public string ImageId { get; set; }
public Gender Gender { 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 string SessionID { get; set; }
public int ID { get; set; }
public string SessionId { get; set; }
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string PictureID { get; set; }
public string ImageId { get; set; }
public string Email { 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 string SessionID { get; set; }
public int ID { get; set; }
public string SessionId { get; set; }
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public ICollection<PublicChild> Children { get; set; } = new List<PublicChild>();
public string PictureID { get; set; }
public string ImageId { 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 string SessionID { get; set; }
public int DoctorID { get; set; }
public int ChildID { get; set; }
public string SessionId { get; set; }
public int DoctorId { get; set; }
public int ChildId { get; set; }
public DateTime StartDate { 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 string SessionID { get; set; }
public int DoctorID { get; set; }
public int ParentID { get; set; }
public int ChildID { get; set; }
public string SessionId { get; set; }
public int DoctorId { get; set; }
public int ParentId { get; set; }
public int ChildId { get; set; }
public int Assignee { get; set; }
public string Title { get; set; }
public CaseFilter()
{
DoctorID = int.MinValue;
ParentID = int.MinValue;
ChildID = int.MinValue;
DoctorId = int.MinValue;
ParentId = int.MinValue;
ChildId = int.MinValue;
Assignee = int.MinValue;
Title = null;
}

4
CoviDok/Api/Request/CaseUpdate.cs

@ -7,9 +7,9 @@ namespace CoviDok.Api.Request
{
public class CaseUpdate
{
public int CaseID { get; set; }
public int CaseId { get; set; }
public string UpdateMsg { 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 string SessionID { get; set; }
public string ImageID { get; set; }
public string SessionId { 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 string SessionID { get; set; }
public string SessionId { 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 int UserId { get; set; }
public string SessionID { get; set; }
public string SessionId { get; set; }
public string FirstName { get; set; }
public string LastName { 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 int ID { get; set; }
public int Id { get; set; }
public Role Type { get; set; }
public DateTime LastAccess { get; set; }
}

22
CoviDok/BLL/Sessions/SessionHandler.cs

@ -17,38 +17,38 @@ namespace CoviDok.BLL.Sessions
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;
Session session = null;
await Task.Run(() => {
session = JsonSerializer.Deserialize<Session>(Candidate);
session.LastAccess = DateTime.Now;
SessionStore.Set(SessionID, JsonSerializer.Serialize(session));
SessionStore.Set(SessionId, JsonSerializer.Serialize(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(() => {
Session session = new Session
{
ID = UserID,
Id = UserId,
Type = UserType,
LastAccess = DateTime.Now
};
ID = Cuid.Generate();
SessionStore.Set(ID, JsonSerializer.Serialize(session));
Id = Cuid.Generate();
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 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 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 UpdateChild(int id, Child newData);
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
{
interface IDoctorHandler
interface IdoctorHandler
{
public List<Doctor> GetDoctors(string firstName = null, string lastName = null);
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)
{
if (id != value.ID) throw new FormatException();
if (s.ID != id) throw new UnauthorizedAccessException();
if (id != value.Id) throw new FormatException();
if (s.Id != id) throw new UnauthorizedAccessException();
Assistant ast = await handler.GetAssistant(id);
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);
if (c == null) throw new KeyNotFoundException();
if (handler.IsAuthorized(s.ID, c))
if (handler.IsAuthorized(s.Id, c))
{
return handler.GetUpdatesForCase(id);
}
@ -37,11 +37,11 @@ namespace CoviDok.BLL.User.Managers
{
Case c = await handler.GetCase(id);
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 {
CaseID = c.Id,
SenderID = s.ID,
CaseId = c.Id,
SenderId = s.Id,
SenderRole = s.Type,
CreatedDate = DateTime.Now,
Content = "Case set to 'Certified'"
@ -58,12 +58,12 @@ namespace CoviDok.BLL.User.Managers
{
Case c = await handler.GetCase(id);
if (c == null) throw new KeyNotFoundException();
if (s.ID == c.DoctorID)
if (s.Id == c.DoctorId)
{
Update update = new Update
{
CaseID = c.Id,
SenderID = s.ID,
CaseId = c.Id,
SenderId = s.Id,
SenderRole = s.Type,
CreatedDate = DateTime.Now,
Content = "Case set to 'Cured'"
@ -80,9 +80,9 @@ namespace CoviDok.BLL.User.Managers
{
// Parent, Doctor, and doctors assistants can access a case
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 (handler.IsAuthorized(s.ID, c))
if (handler.IsAuthorized(s.Id, c))
{
return u;
}
@ -99,7 +99,7 @@ namespace CoviDok.BLL.User.Managers
// Parent, Doctor, and doctors assistants can access a case
Case c = await handler.GetCase(id);
if (c == null) throw new KeyNotFoundException();
if (handler.IsAuthorized(s.ID, c))
if (handler.IsAuthorized(s.Id, 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
Case c = new Case {
StartDate = startDate,
ChildID = ChildID,
ParentID = s.ID,
DoctorID = DoctorID,
ChildId = ChildId,
ParentId = s.Id,
DoctorId = DoctorId,
Title = Title,
CreatedDate = DateTime.Now,
LastModificationDate = DateTime.Now,
CaseStatus = CaseStatus.InProgress,
Assignee = s.ID
Assignee = s.Id
};
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)
{
Case c = await handler.GetCase(id);
if (c == null) throw new KeyNotFoundException("Case ID not found: " + id);
if (handler.IsAuthorized(s.ID, c))
if (c == null) throw new KeyNotFoundException("Case Id not found: " + id);
if (handler.IsAuthorized(s.Id, c))
{
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
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;
Update update = new Update {
CaseID = c.Id,
SenderID = s.ID,
CaseId = c.Id,
SenderId = s.Id,
SenderRole = s.Type,
Content = updateMsg,
CreatedDate = DateTime.Now,

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

@ -18,7 +18,7 @@ namespace CoviDok.Data.MySQL
{
Child child = await handler.GetChild(id);
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();
}
@ -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>();
foreach (Child child in handler.GetChildren(parentID))
foreach (Child child in handler.GetChildren(parentId))
{
ret.Add(child.ToPublic());
}
@ -39,11 +39,11 @@ namespace CoviDok.Data.MySQL
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);
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);
await handler.UpdateChild(id, child);
@ -56,7 +56,7 @@ namespace CoviDok.Data.MySQL
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.UpdateSelf(newChild);
child.RegistrationDate = DateTime.Now;

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

@ -14,7 +14,7 @@ namespace CoviDok.Data.MySQL
{
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)
{
@ -38,8 +38,8 @@ namespace CoviDok.Data.MySQL
public async Task UpdateDoctor(Session s, int id, PublicDoctor value)
{
if (id != value.ID) throw new FormatException();
if (s.ID != id) throw new UnauthorizedAccessException();
if (id != value.Id) throw new FormatException();
if (s.Id != id) throw new UnauthorizedAccessException();
Doctor doc = await handler.GetDoctor(id);
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)
{
if (id != value.ID) throw new FormatException();
if (s.ID != id) throw new UnauthorizedAccessException();
if (id != value.Id) throw new FormatException();
if (s.Id != id) throw new UnauthorizedAccessException();
Parent parent = await handler.GetParent(id);
if (parent == null) throw new KeyNotFoundException();

2
CoviDok/Controllers/AssistantController.cs

@ -37,7 +37,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")]
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();
try
{

2
CoviDok/Controllers/AuthController.cs

@ -29,7 +29,7 @@ namespace CoviDok.Controllers
{
AuthIdentity authIdentity = await Auth.AuthenticateUser(authLogin.Email, authLogin.Password);
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;
}
catch (KeyNotFoundException)

28
CoviDok/Controllers/CaseController.cs

@ -25,9 +25,9 @@ namespace CoviDok.Controllers
// POST /api/Case/{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();
try {
@ -48,7 +48,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}/update")]
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();
try
{
@ -68,12 +68,12 @@ namespace CoviDok.Controllers
[HttpPost]
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();
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);
}
catch (UnauthorizedAccessException)
@ -83,9 +83,9 @@ namespace CoviDok.Controllers
}
[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();
try {
return await mgr.GetUpdatesForCase(s, id);
@ -101,9 +101,9 @@ namespace CoviDok.Controllers
}
[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();
try
{
@ -121,9 +121,9 @@ namespace CoviDok.Controllers
// POST /api/Case/{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();
try
{
@ -141,9 +141,9 @@ namespace CoviDok.Controllers
}
// POST /api/Case/{id}/close
[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();
try
{
@ -164,7 +164,7 @@ namespace CoviDok.Controllers
[HttpPost("filter")]
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();
try

14
CoviDok/Controllers/ChildController.cs

@ -23,9 +23,9 @@ namespace CoviDok.Controllers
// POST: api/Child/5
[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();
try
@ -48,7 +48,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")]
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();
try {
await ChildManager.UpdateChild(s, id, publicChild);
@ -67,11 +67,11 @@ namespace CoviDok.Controllers
}
[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();
return ChildManager.ChildrenOfParent(s.ID);
return ChildManager.ChildrenOfParent(s.Id);
}
// POST: api/Child
@ -80,7 +80,7 @@ namespace CoviDok.Controllers
[HttpPost]
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();
try {

6
CoviDok/Controllers/DoctorController.cs

@ -60,7 +60,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")]
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();
try
{
@ -97,9 +97,9 @@ namespace CoviDok.Controllers
// GET /api/Doc/{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();
try
{

6
CoviDok/Controllers/ImagesController.cs

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

10
CoviDok/Controllers/ParentController.cs

@ -22,9 +22,9 @@ namespace CoviDok.Controllers
private readonly ParentManager parentManager = new ParentManager();
[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();
try {
return await parentManager.GetParent(id);
@ -38,7 +38,7 @@ namespace CoviDok.Controllers
[HttpPut("{id}")]
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();
try {
await parentManager.UpdateParent(s, id, parent);
@ -58,9 +58,9 @@ namespace CoviDok.Controllers
}
}
[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();
try
{

6
CoviDok/Data/Model/Assistant.cs

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

6
CoviDok/Data/Model/Case.cs

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

6
CoviDok/Data/Model/Child.cs

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

6
CoviDok/Data/Model/Doctor.cs

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

4
CoviDok/Data/Model/Image.cs

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

6
CoviDok/Data/Model/Parent.cs

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

4
CoviDok/Data/Model/Update.cs

@ -9,8 +9,8 @@ namespace CoviDok.Data.Model
public class Update
{
public int Id { get; set; }
public int CaseID { get; set; }
public int SenderID { get; set; }
public int CaseId { get; set; }
public int SenderId { get; set; }
public Role SenderRole { get; set; }
public string Content { 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 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)
{
Case c = await context.Cases.FindAsync(id);
message.CaseID = c.Id;
message.CaseId = c.Id;
context.Updates.Add(message);
c.CaseStatus = status;
c.Updates.Add(message);
@ -33,7 +33,7 @@ namespace CoviDok.Data.MySQL
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)
@ -41,14 +41,14 @@ namespace CoviDok.Data.MySQL
Update update = (from u in context.Updates where u.Id == id select u).First();
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;
}
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)
@ -57,17 +57,17 @@ namespace CoviDok.Data.MySQL
await Task.Run(() => {
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)
{
@ -94,12 +94,12 @@ namespace CoviDok.Data.MySQL
string[] forbidden = { "Updates" };
PropertyCopier<Case>.Copy(Case, c, forbidden);
context.Updates.Add(update);
foreach (string ImageID in update.Images)
foreach (string ImageId in update.Images)
{
Image image = new Image
{
UpdateID = update.Id,
ImageID = ImageID
UpdateId = update.Id,
ImageId = ImageId
};
context.Images.Add(image);
}
@ -108,13 +108,13 @@ namespace CoviDok.Data.MySQL
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;
// - a dokija egyezik az ügy dokijával
// - 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);
}
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)

2
CoviDok/Data/MySQL/MySqlDoctorHandler.cs

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

Loading…
Cancel
Save