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.
50 lines
1.6 KiB
50 lines
1.6 KiB
using CoviDok.Api.Objects;
|
|
using CoviDok.BLL.Sessions;
|
|
using CoviDok.BLL.User.Managers;
|
|
using CoviDok.Data.Model;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.Data.MySQL
|
|
{
|
|
public class ParentManager
|
|
{
|
|
private readonly IParentHandler handler = new MySqlParentHandler();
|
|
public async Task<PublicParent> GetParent(int id)
|
|
{
|
|
Parent parent = await handler.GetParent(id);
|
|
if (parent == null) throw new KeyNotFoundException();
|
|
return parent.ToPublic();
|
|
}
|
|
|
|
public async Task UpdateParent(Session s, int id, PublicParent value)
|
|
{
|
|
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();
|
|
|
|
parent.UpdateSelf(value);
|
|
await handler.UpdateParent(id, parent);
|
|
}
|
|
|
|
public async Task<List<PublicChild>> GetChildren(int id)
|
|
{
|
|
if (!handler.ParentExists(id)) throw new KeyNotFoundException();
|
|
List<PublicChild> ret = new List<PublicChild>();
|
|
await Task.Run(() => {
|
|
var asts = handler.GetChildren(id);
|
|
foreach (Child child in asts)
|
|
{
|
|
ret.Add(child.ToPublic());
|
|
}
|
|
});
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
|