mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 22:29:24 +02:00
Use MinimalAPI for API back-end.
This commit is contained in:
parent
24c99bf691
commit
0dad0d1a04
6 changed files with 623 additions and 0 deletions
61
Application/MinimalAPI/IPPoolController.cs
Normal file
61
Application/MinimalAPI/IPPoolController.cs
Normal file
|
@ -0,0 +1,61 @@
|
|||
using Microsoft.AspNetCore.Http.HttpResults;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using MTWireGuard.Application.Models.Mikrotik;
|
||||
using MTWireGuard.Application.Repositories;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using AutoMapper;
|
||||
using MTWireGuard.Application.Models.Models.Responses;
|
||||
using MTWireGuard.Application.Models.Requests;
|
||||
using MTWireGuard.Application.Models;
|
||||
using MikrotikAPI.Models;
|
||||
|
||||
namespace MTWireGuard.Application.MinimalAPI
|
||||
{
|
||||
internal class IPPoolController
|
||||
{
|
||||
public static async Task<Results<Ok<List<IPPoolViewModel>>, NotFound>> GetAll([FromServices] IMikrotikRepository API)
|
||||
{
|
||||
var ippools = await API.GetIPPools();
|
||||
return ippools.Any() ? TypedResults.Ok(ippools) : TypedResults.NotFound();
|
||||
}
|
||||
|
||||
public static async Task<Ok<ToastMessage>> Create(
|
||||
[FromServices] IMikrotikRepository API,
|
||||
[FromServices] IMapper mapper,
|
||||
[FromBody] CreatePoolRequest request)
|
||||
{
|
||||
var model = mapper.Map<PoolCreateModel>(request);
|
||||
var make = await API.CreateIPPool(model);
|
||||
var message = mapper.Map<ToastMessage>(make);
|
||||
return TypedResults.Ok(message);
|
||||
}
|
||||
|
||||
public static async Task<Ok<ToastMessage>> Update(
|
||||
[FromServices] IMikrotikRepository API,
|
||||
[FromServices] IMapper mapper,
|
||||
int id,
|
||||
[FromBody] UpdateIPPoolRequest request)
|
||||
{
|
||||
request.Id = id;
|
||||
var model = mapper.Map<PoolUpdateModel>(request);
|
||||
var update = await API.UpdateIPPool(model);
|
||||
var message = mapper.Map<ToastMessage>(update);
|
||||
return TypedResults.Ok(message);
|
||||
}
|
||||
|
||||
public static async Task<Ok<ToastMessage>> Delete(
|
||||
[FromServices] IMikrotikRepository API,
|
||||
[FromServices] IMapper mapper,
|
||||
int id)
|
||||
{
|
||||
var delete = await API.DeleteIPPool(id);
|
||||
var message = mapper.Map<ToastMessage>(delete);
|
||||
return TypedResults.Ok(message);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue