using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using CoviDok.Api.Objects; using CoviDok.BLL.Sessions; using CoviDok.BLL.User.Managers; using CoviDok.Data.MySQL; using CoviDok.Data.SessionProviders; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace CoviDok.Controllers { [Route("api/[controller]")] [ApiController] public class AssistantController : ControllerBase { private readonly SessionHandler Handler = new SessionHandler(new RedisProvider("redis")); private readonly AssistantManager mgr = new AssistantManager(); [HttpGet("{id}")] public async Task> GetAssistant(int id) { try { return await mgr.GetAssistant(id); } catch (KeyNotFoundException) { return NotFound(); } } [HttpPut("{id}")] public async Task PutAssistant(int id, PublicAssistant ast) { Session s = await Handler.GetSession(ast.SessionId); if (s == null) return Unauthorized(); try { await mgr.UpdateAssistant(s, id, ast); return NoContent(); } catch (UnauthorizedAccessException) { return Unauthorized(); } catch (KeyNotFoundException) { return NotFound(); } catch (FormatException) { return BadRequest(); } } } }