98 lines
2.6 KiB
C#
98 lines
2.6 KiB
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Newtonsoft.Json;
|
|
using Server.Services;
|
|
using SharedModels.DataTransferObjects;
|
|
using SharedModels.QueryParameters.Objects;
|
|
|
|
namespace Server.Controllers;
|
|
|
|
[Authorize]
|
|
[Route("api/cities")]
|
|
[ApiController]
|
|
public class CityController : ControllerBase
|
|
{
|
|
private readonly ICityManagementService _cityManagementService;
|
|
|
|
public CityController(ICityManagementService cityManagementService)
|
|
{
|
|
_cityManagementService = cityManagementService;
|
|
}
|
|
|
|
[Authorize(Policy = "AdministratorAccess")]
|
|
[HttpPost]
|
|
public async Task<IActionResult> AddCity(CreateCityDto city)
|
|
{
|
|
var result = await _cityManagementService.AddCity(city);
|
|
|
|
if (!result.isSucceed)
|
|
{
|
|
return result.actionResult;
|
|
}
|
|
|
|
return CreatedAtAction(nameof(GetCity), new {id = result.city.Id}, result.city);
|
|
}
|
|
|
|
[Authorize(Policy = "CompanyAccess")]
|
|
[HttpGet]
|
|
public async Task<IActionResult> GetCities([FromQuery] CityParameters parameters)
|
|
{
|
|
var result = await _cityManagementService.GetCities(parameters);
|
|
|
|
if (!result.isSucceed)
|
|
{
|
|
return result.actionResult;
|
|
}
|
|
|
|
Response.Headers.Add("X-Pagination", JsonConvert.SerializeObject(result.pagingMetadata));
|
|
|
|
return Ok(result.cities);
|
|
}
|
|
|
|
[Authorize(Policy = "CompanyAccess")]
|
|
[HttpGet("{id}")]
|
|
public async Task<IActionResult> GetCity(int id, [FromQuery] string? fields)
|
|
{
|
|
var result = await _cityManagementService.GetCity(id, fields);
|
|
|
|
if (!result.isSucceed)
|
|
{
|
|
return result.actionResult;
|
|
}
|
|
|
|
return Ok(result.city);
|
|
}
|
|
|
|
[Authorize(Policy = "AdministratorAccess")]
|
|
[HttpPut("{id}")]
|
|
public async Task<IActionResult> UpdateCountry(int id, UpdateCityDto city)
|
|
{
|
|
if (id != city.Id)
|
|
{
|
|
return BadRequest();
|
|
}
|
|
|
|
var result = await _cityManagementService.UpdateCity(city);
|
|
|
|
if (!result.isSucceed)
|
|
{
|
|
return result.actionResult;
|
|
}
|
|
|
|
return Ok(result.city);
|
|
}
|
|
|
|
[Authorize(Policy = "AdministratorAccess")]
|
|
[HttpDelete("{id}")]
|
|
public async Task<IActionResult> DeleteCountry(int id)
|
|
{
|
|
var result = await _cityManagementService.DeleteCity(id);
|
|
|
|
if (!result.isSucceed)
|
|
{
|
|
return result.actionResult;
|
|
}
|
|
|
|
return NoContent();
|
|
}
|
|
} |