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

118 lines
4.3 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;
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
{
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]
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 : ICrudService<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
public Func<T, CancellationToken, Task<bool>> InsertForbidAsync { get; protected set; } = null;
public Func<int, 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("all")]
[Permission]
public virtual async Task<ActionResult<IEnumerable<T>>> GetAllAsync(CancellationToken token = default)
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]
public virtual async Task<ActionResult<T>> GetAsync(int id, CancellationToken token = default)
2021-08-02 14:45:13 +05:00
{
2021-09-10 11:28:57 +05:00
var result = await service.GetAsync(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]
2022-04-14 13:46:51 +05:00
public virtual async Task<ActionResult<int>> InsertAsync([FromBody] T value, CancellationToken token = default)
2021-08-02 14:45:13 +05:00
{
if (InsertForbidAsync is not null && await InsertForbidAsync(value, token))
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);
}
2021-09-10 11:28:57 +05:00
/// <summary>
/// Редактировать запись по id
/// </summary>
/// <param name="id">id записи</param>
/// <param name="value">запись</param>
/// <param name="token"></param>
/// <returns>1 - успешно отредактировано, 0 - нет</returns>
2021-08-02 14:45:13 +05:00
[HttpPut("{id}")]
[Permission]
2022-04-14 13:46:51 +05:00
public virtual async Task<ActionResult<int>> UpdateAsync(int id, [FromBody] T value, CancellationToken token = default)
2021-08-02 14:45:13 +05:00
{
if (UpdateForbidAsync is not null && await UpdateForbidAsync(id, value, token))
Forbid();
2021-09-10 11:28:57 +05:00
var result = await service.UpdateAsync(id, value, token).ConfigureAwait(false);
if (result == 0)
return BadRequest($"id:{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}")]
2022-04-14 13:46:51 +05:00
public virtual async Task<ActionResult<int>> DeleteAsync(int id, CancellationToken token = default)
2021-08-02 14:45:13 +05:00
{
if (DeleteForbidAsync is not null && await DeleteForbidAsync(id, token))
Forbid();
2021-09-10 11:28:57 +05:00
var result = await service.DeleteAsync(id, token).ConfigureAwait(false);
2021-08-02 14:45:13 +05:00
return Ok(result);
}
}
2021-08-02 14:45:13 +05:00
}