using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using BlueWest.Data; using BlueWest.WebApi.EF; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace BlueWest.WebApi.Controllers { /// /// Controller responsible to get countryId data /// [ApiController] [Route("[controller]")] public class CountryController : ControllerBase { private readonly CountryDbContext _dbContext; /// /// Controller responsible for handling countryId data in the Country table /// /// public CountryController(CountryDbContext dbContext) { _dbContext = dbContext; } /// /// Get countries /// /// [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpGet] public ActionResult GetCountries() { var array = _dbContext .Countries .Select(x => new CountryUnique(x)) .ToArray(); return Ok(array); } /// /// Get Country by Id /// /// ISO 3166-1 countryId numeric code /// [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpGet("{countryId}", Name = nameof(GetCountryById))] public ActionResult GetCountryById(int countryId) { var country = _dbContext.Countries .Where(x => x.Id == countryId) .Select(x => new CountryUnique(x)) .FirstOrDefault(); if (country != null) { return Ok(country); } return new NotFoundResult(); } /// /// Get currencies of a countryId /// /// /// [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpGet("{countryId}/currencies")] public ActionResult GetCountryCurrencies(int countryId) { var countryObj = _dbContext.Countries.FirstOrDefault(d => d.Id == countryId); if (countryObj == null) return new NotFoundResult(); var array = _dbContext .Countries .Where(data => data.Id == countryId) .SelectMany(o => o.Currencies) .Select(x => new CurrencyUnique(x)) .ToArray(); return Ok(array); } /// /// Add Country /// /// The countryId data to create /// The newly created countryId /// /// /// Creates a Country. /// /// /// Sample request: /// /// POST /Countries /// { /// "code": 1, /// "stateName": "United States of America", /// "tld": "us" /// } /// /// /// Returns the newly created countryId [ProducesResponseType(StatusCodes.Status201Created)] [ProducesResponseType(StatusCodes.Status406NotAcceptable)] [HttpPost] public ActionResult AddCountry(CountryCreate countryToCreate) { Country newCountry = new Country(countryToCreate); _dbContext.Countries.Add(newCountry); bool success = _dbContext.SaveChanges() >= 0; if (!success) return new BadRequestResult(); return CreatedAtRoute(nameof(GetCountryById), new {countryId = newCountry.Id}, new CountryUnique(newCountry)); } /// /// Updates a Country /// /// The countryId ISO 3166 code /// Country payload data /// [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status400BadRequest)] [HttpPut("{countryCode}")] public ActionResult UpdateCountry(int countryCode, CountryUpdate countryToUpdate) { var (success, country) = _dbContext.UpdateCountry(countryToUpdate, countryCode); if (success) { var countryReply = new CountryUnique(country); return Ok(countryReply); } return new NotFoundResult(); } /// /// Adds a currency to Country /// /// /// /// [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status409Conflict)] [HttpPost("{countryId}/currencies")] public ActionResult AddCurrency(int countryId, CurrencyCreate currencyCreate) { var (result, message, country) = _dbContext.AddCurrency(countryId, currencyCreate, new Expression>[] { x => x.Code == currencyCreate.Code, y => y.Num == currencyCreate.Num }); if (!result) { return new ConflictObjectResult(message); } return Ok(new CountryUnique(country)); } } }