You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.2 KiB
96 lines
3.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using CoviDok.Api.Objects;
|
|
using CoviDok.Api.Request;
|
|
using CoviDok.BLL.User.Managers;
|
|
using CoviDok.BLL.Sessions;
|
|
using CoviDok.Data.SessionProviders;
|
|
using CoviDok.Data.MySQL;
|
|
|
|
namespace CoviDok.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class ChildController : ControllerBase
|
|
{
|
|
private readonly SessionHandler Handler = new SessionHandler();
|
|
|
|
private readonly ChildManager ChildManager = new ChildManager();
|
|
|
|
// POST: api/Child/5
|
|
[HttpPost("{id}")]
|
|
public async Task<ActionResult<PublicChild>> GetPublicChild(int id, string SessionId)
|
|
{
|
|
try
|
|
{
|
|
Session s = await Handler.GetSession(SessionId);
|
|
return await ChildManager.GetChild(s, id);
|
|
}
|
|
catch (UnauthorizedAccessException)
|
|
{
|
|
return Unauthorized();
|
|
}
|
|
catch (KeyNotFoundException)
|
|
{
|
|
return NotFound();
|
|
}
|
|
}
|
|
|
|
// PUT: api/Child/5
|
|
// To protect from overposting attacks, enable the specific properties you want to bind to, for
|
|
// more details, see https://go.microsoft.com/fwlink/?linkid=2123754.
|
|
[HttpPut("{id}")]
|
|
public async Task<IActionResult> PutPublicChild(int id, PublicChild publicChild)
|
|
{
|
|
try {
|
|
Session s = await Handler.GetSession(publicChild.SessionId);
|
|
await ChildManager.UpdateChild(s, id, publicChild);
|
|
return NoContent();
|
|
}
|
|
catch (UnauthorizedAccessException) {
|
|
return Unauthorized();
|
|
}
|
|
catch (KeyNotFoundException) {
|
|
return NotFound();
|
|
}
|
|
catch (FormatException)
|
|
{
|
|
return BadRequest();
|
|
}
|
|
}
|
|
|
|
[HttpPost("parent")]
|
|
public async Task<ActionResult<List<PublicChild>>> GetChildrenOfParent(string SessionId)
|
|
{
|
|
try {
|
|
Session s = await Handler.GetSession(SessionId);
|
|
return ChildManager.ChildrenOfParent(s.Id);
|
|
}
|
|
catch (UnauthorizedAccessException)
|
|
{
|
|
return Unauthorized();
|
|
}
|
|
|
|
}
|
|
|
|
// POST: api/Child
|
|
// To protect from overposting attacks, enable the specific properties you want to bind to, for
|
|
// more details, see https://go.microsoft.com/fwlink/?linkid=2123754.
|
|
[HttpPost]
|
|
public async Task<ActionResult<PublicChild>> PostPublicChild(PublicChild publicChild)
|
|
{
|
|
try {
|
|
Session s = await Handler.GetSession(publicChild.SessionId);
|
|
int Id = await ChildManager.AddChild(s, publicChild);
|
|
return CreatedAtAction("GetPublicChild", new { id = Id }, publicChild);
|
|
}
|
|
catch (UnauthorizedAccessException) {
|
|
return Unauthorized();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|