using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using CoviDok.Api; using CoviDok.Api.Request; using CoviDok.Api.Response; using CoviDok.BLL; using CoviDok.BLL.Sessions; using CoviDok.BLL.User.Managers; using CoviDok.Data.Model; using CoviDok.Data.SessionProviders; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace CoviDok.Controllers { [Route("api/[controller]")] [ApiController] public class CaseController : ControllerBase { private readonly SessionHandler Handler = new SessionHandler(new RedisProvider("redis")); private readonly CaseManager mgr = new CaseManager(); // POST /api/Case/{id} [HttpPost("{id}")] public async Task> PostGetCase(int id, AuthGet auth) { Session s = await Handler.GetSession(auth.SessionID); if (s == null) return Unauthorized(); try { return await mgr.GetCase(s, id); } catch (KeyNotFoundException) { return NotFound(); } catch (UnauthorizedAccessException) { return Unauthorized(); } } // POST /api/Case/{id}/update [HttpPut("{id}/update")] public async Task PostUpdate(int id, CaseUpdate data) { Session s = await Handler.GetSession(data.SessionID); if (s == null) return Unauthorized(); try { await mgr.UpdateCase(s, id, data.UpdateMsg, data.Images); return Ok(); } catch (UnauthorizedAccessException) { return Unauthorized(); } catch (KeyNotFoundException) { return NotFound(); } } [HttpPost] public async Task> NewCase(CaseCreate data) { 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); return CreatedAtAction("PostGetCase", new { id = c.Id }, c); } catch (UnauthorizedAccessException) { return Unauthorized(); } } [HttpPost("{id}/updates")] public async Task>> GetUpdatesForCase(int id, AuthGet get) { Session s = await Handler.GetSession(get.SessionID); if (s == null) return Unauthorized(); try { return await mgr.GetUpdatesForCase(s, id); } catch (UnauthorizedAccessException) { return Unauthorized(); } catch (KeyNotFoundException) { return NotFound(); } } [HttpPost("updates/{id}")] public async Task> GetUpdate(int id, AuthGet get) { Session s = await Handler.GetSession(get.SessionID); if (s == null) return Unauthorized(); try { return await mgr.GetUpdate(s, id); } catch (UnauthorizedAccessException) { return Unauthorized(); } catch (KeyNotFoundException) { return NotFound(); } } // POST /api/Case/{id}/close [HttpPost("{id}/close")] public async Task PostClose(int id, CaseUpdate data) { Session s = await Handler.GetSession(data.SessionID); if (s == null) return Unauthorized(); try { await mgr.SetCertified(s, id); return Ok(); } catch (UnauthorizedAccessException) { return Unauthorized(); } catch (KeyNotFoundException) { return NotFound(); } } // POST /api/Case/{id}/close [HttpPost("{id}/cure")] public async Task PostCured(int id, CaseUpdate data) { Session s = await Handler.GetSession(data.SessionID); if (s == null) return Unauthorized(); try { await mgr.SetCured(s, id); return Ok(); } catch (UnauthorizedAccessException) { return Unauthorized(); } catch (KeyNotFoundException) { return NotFound(); } } // POST /api/Case/filter [HttpPost("filter")] public async Task>> Filter(CaseFilter filters) { Session s = await Handler.GetSession(filters.SessionID); if (s == null) return Unauthorized(); try { return await mgr.FilterCases(s, filters); } catch (UnauthorizedAccessException) { return Unauthorized(); } } } }