DD.WellWorkover.Cloud/AsbCloudWebApi/Controllers/CrudController.cs

145 lines
5.4 KiB
C#
Raw Normal View History

using AsbCloudApp.Data;
2021-08-02 14:45:13 +05:00
using AsbCloudApp.Services;
2021-09-10 11:28:57 +05:00
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
2022-04-11 18:00:34 +05:00
using System;
using System.Collections.Generic;
using System.Linq;
2021-08-10 14:36:35 +05:00
using System.Threading;
2021-09-10 11:28:57 +05:00
using System.Threading.Tasks;
2021-08-02 14:45:13 +05:00
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace AsbCloudWebApi.Controllers
{
2023-05-19 16:51:41 +05:00
2021-09-10 11:28:57 +05:00
/// <summary>
/// CRUD контроллер для админки.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="TService"></typeparam>
2021-08-02 14:45:13 +05:00
[ApiController]
[Route("api/[controller]")]
2021-09-10 11:28:57 +05:00
[Authorize]
2021-08-10 14:36:35 +05:00
public abstract class CrudController<T, TService> : ControllerBase
where T : IId
where TService : ICrudRepository<T>
2021-08-02 14:45:13 +05:00
{
2021-08-10 14:36:35 +05:00
protected readonly TService service;
2021-08-02 14:45:13 +05:00
2022-12-07 15:23:10 +05:00
public Func<T, CancellationToken, Task<bool>> InsertForbidAsync { get; protected set; } = null!;
public Func<T, CancellationToken, Task<bool>> UpdateForbidAsync { get; protected set; } = null!;
public Func<int, CancellationToken, Task<bool>> DeleteForbidAsync { get; protected set; } = null!;
2021-09-10 11:28:57 +05:00
2021-08-10 14:36:35 +05:00
public CrudController(TService service)
2021-08-02 14:45:13 +05:00
{
this.service = service;
}
2021-12-03 09:44:10 +05:00
/// <summary>
/// Получить все записи
/// </summary>
/// <param name="token">CancellationToken</param>
/// <returns>все записи</returns>
[HttpGet]
[Permission]
public virtual async Task<ActionResult<IEnumerable<T>>> GetAllAsync(CancellationToken token)
2021-12-03 09:44:10 +05:00
{
var result = await service.GetAllAsync(token).ConfigureAwait(false);
return Ok(result);
}
2021-09-10 11:28:57 +05:00
/// <summary>
/// Получить одну запись по Id
/// </summary>
/// <param name="id">id записи</param>
/// <param name="token"></param>
/// <returns>запись</returns>
[HttpGet("{id}")]
[Permission]
2022-12-07 15:04:36 +05:00
public virtual async Task<ActionResult<T?>> GetOrDefaultAsync(int id, CancellationToken token)
2021-08-02 14:45:13 +05:00
{
var result = await service.GetOrDefaultAsync(id, token).ConfigureAwait(false);
2021-08-02 14:45:13 +05:00
return Ok(result);
}
2021-09-10 11:28:57 +05:00
/// <summary>
/// Добавить запись
/// </summary>
/// <param name="value">запись</param>
/// <param name="token"></param>
2021-12-03 09:44:10 +05:00
/// <returns>id</returns>
2021-08-02 14:45:13 +05:00
[HttpPost]
[Permission]
public virtual async Task<ActionResult<int>> InsertAsync([FromBody] T value, CancellationToken token)
2021-08-02 14:45:13 +05:00
{
if (InsertForbidAsync is not null && await InsertForbidAsync(value, token))
return Forbid();
2021-09-10 11:28:57 +05:00
var result = await service.InsertAsync(value, token).ConfigureAwait(false);
2021-08-02 14:45:13 +05:00
return Ok(result);
}
/// <summary>
/// Добавить несколько записей<br/>
/// При невозможности добавить любую из записей, все не будут добавлены.
/// </summary>
/// <param name="values">записи</param>
/// <param name="token"></param>
/// <returns>id</returns>
[HttpPost("range")]
[Permission]
public virtual async Task<ActionResult<int>> InsertRangeAsync([FromBody] IEnumerable<T> values, CancellationToken token)
{
if (!values.Any())
return BadRequest("there is no values to add");
2022-06-15 14:57:37 +05:00
if (InsertForbidAsync is not null)
foreach (var value in values)
if (await InsertForbidAsync(value, token))
return Forbid();
var result = await service.InsertRangeAsync(values, token).ConfigureAwait(false);
return Ok(result);
}
2021-09-10 11:28:57 +05:00
/// <summary>
/// Редактировать запись по id
/// </summary>
/// <param name="value">запись</param>
/// <param name="token"></param>
/// <returns>1 - успешно отредактировано, 0 - нет</returns>
[HttpPut]
[Permission]
public virtual async Task<ActionResult<int>> UpdateAsync([FromBody] T value, CancellationToken token)
2021-08-02 14:45:13 +05:00
{
if (UpdateForbidAsync is not null && await UpdateForbidAsync(value, token))
return Forbid();
2021-09-10 11:28:57 +05:00
var result = await service.UpdateAsync(value, token).ConfigureAwait(false);
if (result == ICrudRepository<T>.ErrorIdNotFound)
return BadRequest($"id:{value.Id} does not exist in the db");
2021-08-02 14:45:13 +05:00
return Ok(result);
}
2021-09-10 11:28:57 +05:00
/// <summary>
/// Удалить запись по id
/// </summary>
/// <param name="id">id записи</param>
/// <param name="token"></param>
/// <returns>1 - успешно удалено, 0 - нет</returns>
2021-08-02 14:45:13 +05:00
[HttpDelete("{id}")]
[Permission]
public virtual async Task<ActionResult<int>> DeleteAsync(int id, CancellationToken token)
2021-08-02 14:45:13 +05:00
{
if (DeleteForbidAsync is not null && await DeleteForbidAsync(id, token))
return Forbid();
2021-09-10 11:28:57 +05:00
var result = await service.DeleteAsync(id, token).ConfigureAwait(false);
if (result == ICrudRepository<T>.ErrorIdNotFound)
return NoContent();
2021-08-02 14:45:13 +05:00
return Ok(result);
}
}
2023-05-19 16:51:41 +05:00
2021-08-02 14:45:13 +05:00
}