auto.bus_api/Server/Controllers/CountryController.cs
cuqmbr 1ba0867390 refactor: optimize crud services
fix: data shaping removes fields from objects
2022-11-30 16:38:30 +02:00

87 lines
2.3 KiB
C#

using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Server.Services;
using SharedModels.DataTransferObjects;
using SharedModels.QueryParameters.Objects;
namespace Server.Controllers;
[Route("api/countries")]
[ApiController]
public class CountryController : ControllerBase
{
private readonly ICountryManagementService _countryManagementService;
public CountryController(ICountryManagementService countryManagementService)
{
_countryManagementService = countryManagementService;
}
[HttpPost]
public async Task<IActionResult> AddCountry(CreateCountryDto country)
{
var result = await _countryManagementService.AddCountry(country);
if (!result.isSucceed)
{
return result.actionResult;
}
return CreatedAtAction(nameof(GetCountry), new {id = result.country.Id}, result.country);
}
[HttpGet]
public async Task<IActionResult> GetCountries([FromQuery] CountryParameters parameters)
{
var result = await _countryManagementService.GetCountries(parameters);
if (!result.isSucceed)
{
return result.actionResult;
}
Response.Headers.Add("X-Pagination", JsonConvert.SerializeObject(result.pagingMetadata));
return Ok(result.countries);
}
[HttpGet("{id}")]
public async Task<IActionResult> GetCountry(int id, [FromQuery] string? fields)
{
var result = await _countryManagementService.GetCountry(id, fields);
if (!result.isSucceed)
{
return result.actionResult;
}
return Ok(result.country);
}
[HttpPut("{id}")]
public async Task<IActionResult> UpdateCountry(int id, UpdateCountryDto country)
{
var result = await _countryManagementService.UpdateCountry(country);
if (!result.isSucceed)
{
return result.actionResult;
}
return Ok(result.country);
}
[HttpDelete("{id}")]
public async Task<IActionResult> DeleteCountry(int id)
{
var result = await _countryManagementService.DeleteCountry(id);
if (!result.isSucceed)
{
return result.actionResult;
}
return NoContent();
}
}