2022-08-22 05:57:06 +03:00
|
|
|
using System;
|
2022-08-13 06:35:36 +03:00
|
|
|
using System.Linq;
|
2022-08-22 05:57:06 +03:00
|
|
|
using System.Linq.Expressions;
|
2022-08-13 06:35:36 +03:00
|
|
|
using BlueWest.Data;
|
2022-08-22 00:14:50 +03:00
|
|
|
using BlueWest.WebApi.EF;
|
2022-08-13 06:35:36 +03:00
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
2022-08-17 23:21:00 +03:00
|
|
|
namespace BlueWest.WebApi.Controllers
|
2022-08-13 06:35:36 +03:00
|
|
|
{
|
2022-08-18 18:46:20 +03:00
|
|
|
/// <summary>
|
|
|
|
/// The controller responsible to fetch currency data
|
|
|
|
/// </summary>
|
2022-08-17 23:21:00 +03:00
|
|
|
[ApiController]
|
|
|
|
[Route("[controller]")]
|
2022-08-22 18:02:48 +03:00
|
|
|
public partial class CurrencyController : ControllerBase
|
2022-08-13 06:35:36 +03:00
|
|
|
{
|
2022-08-19 06:22:55 +03:00
|
|
|
private readonly CountryDbContext _dbContext;
|
2022-08-22 18:02:48 +03:00
|
|
|
|
2022-08-22 02:51:45 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Api Controller for Currency data
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="dbContext"></param>
|
2022-08-19 06:22:55 +03:00
|
|
|
public CurrencyController(CountryDbContext dbContext)
|
2022-08-17 23:21:00 +03:00
|
|
|
{
|
|
|
|
_dbContext = dbContext;
|
|
|
|
}
|
2022-08-13 06:35:36 +03:00
|
|
|
|
2022-08-18 22:59:13 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the currency data from currency table
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
|
|
[HttpGet]
|
|
|
|
public ActionResult GetCurrencies()
|
|
|
|
{
|
2022-08-22 05:13:53 +03:00
|
|
|
var currencies = _dbContext.Currencies
|
|
|
|
.Select(currency => new CurrencyUnique(currency))
|
|
|
|
.ToArray();
|
2022-08-22 18:02:48 +03:00
|
|
|
|
2022-08-22 00:14:50 +03:00
|
|
|
return Ok(currencies);
|
2022-08-18 22:59:13 +03:00
|
|
|
}
|
2022-08-22 18:02:48 +03:00
|
|
|
|
|
|
|
|
2022-08-22 05:57:06 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Gets a currency by the currency number (id)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="currencyId">The id of the currency to get</param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
|
|
[HttpGet("{currencyId}", Name = nameof(GetCurrencyById))]
|
|
|
|
public ActionResult GetCurrencyById(int currencyId)
|
|
|
|
{
|
2022-08-22 18:02:48 +03:00
|
|
|
var queryResult =
|
|
|
|
from aCurrency in _dbContext.Currencies
|
|
|
|
where aCurrency.Id == currencyId
|
|
|
|
select new CurrencyUnique(aCurrency);
|
|
|
|
|
|
|
|
var currency = queryResult.SingleOrDefault();
|
2022-08-22 05:57:06 +03:00
|
|
|
|
|
|
|
if (currency != null)
|
|
|
|
{
|
|
|
|
return Ok(currency);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new NotFoundResult();
|
|
|
|
}
|
2022-08-13 06:35:36 +03:00
|
|
|
|
2022-08-18 18:46:20 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Add Currency to the table of currencies
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="currencyToCreate">Currency data to create</param>
|
|
|
|
/// <returns></returns>
|
2022-08-17 23:21:00 +03:00
|
|
|
[ProducesResponseType(StatusCodes.Status201Created)]
|
|
|
|
[HttpPost]
|
2022-08-18 18:46:20 +03:00
|
|
|
public ActionResult AddCurrency(CurrencyCreate currencyToCreate)
|
2022-08-13 06:35:36 +03:00
|
|
|
{
|
2022-09-01 08:54:42 +03:00
|
|
|
var (success, newCurrency) = _dbContext.AddCurrency(currencyToCreate);
|
2022-08-22 00:14:50 +03:00
|
|
|
|
|
|
|
if (!success)
|
|
|
|
{
|
|
|
|
return new NotFoundResult();
|
|
|
|
}
|
2022-08-22 18:02:48 +03:00
|
|
|
|
2022-09-01 08:54:42 +03:00
|
|
|
return CreatedAtRoute(nameof(GetCurrencyById), new {CurrencyId = newCurrency.Code}, newCurrency);
|
2022-08-24 19:56:51 +03:00
|
|
|
|
2022-08-13 06:35:36 +03:00
|
|
|
}
|
|
|
|
|
2022-08-18 18:46:20 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Update a currency data from the Currency table in the database
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="currencyNumber">The currency number we want to update</param>
|
|
|
|
/// <param name="currencyToUpdate">Currency Data to update</param>
|
|
|
|
/// <returns></returns>
|
2022-08-17 23:21:00 +03:00
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
|
|
[HttpPut("{currencyNumber}")]
|
|
|
|
public ActionResult UpdateCurrency(int currencyNumber, CurrencyUpdate currencyToUpdate)
|
2022-08-13 06:35:36 +03:00
|
|
|
{
|
2022-08-29 03:40:57 +03:00
|
|
|
var (success, currency) = _dbContext.UpdateCurrency(currencyToUpdate, currencyNumber);
|
2022-08-17 23:21:00 +03:00
|
|
|
|
2022-08-22 00:14:50 +03:00
|
|
|
if (success)
|
2022-08-17 23:21:00 +03:00
|
|
|
{
|
2022-08-29 03:40:57 +03:00
|
|
|
return Ok(currency);
|
2022-08-17 23:21:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return new NotFoundResult();
|
|
|
|
}
|
2022-08-23 19:48:16 +03:00
|
|
|
|
2022-08-22 18:02:48 +03:00
|
|
|
/// <summary>
|
2022-08-23 19:48:16 +03:00
|
|
|
/// Gets a specific country id in a country
|
2022-08-22 18:02:48 +03:00
|
|
|
/// </summary>
|
2022-08-23 19:48:16 +03:00
|
|
|
/// <param name="currencyId">The id of the currency</param>
|
|
|
|
/// <param name="countryId">The id of the country</param>
|
2022-08-22 18:02:48 +03:00
|
|
|
/// <returns></returns>
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
|
|
[HttpGet("{currencyId}/countries/{countryId}", Name = nameof(GetCurrencyById))]
|
|
|
|
public ActionResult GetCountry(int currencyId, int countryId)
|
|
|
|
{
|
|
|
|
var countryQuery =
|
|
|
|
from aCurrency in _dbContext.Currencies
|
|
|
|
where aCurrency.Id == currencyId
|
|
|
|
let countries = aCurrency.Countries
|
|
|
|
from country in countries
|
|
|
|
where country.Id == countryId
|
|
|
|
select new CountryUnique(country);
|
|
|
|
|
|
|
|
var queryResult = countryQuery.SingleOrDefault();
|
|
|
|
|
|
|
|
if (queryResult == null)
|
|
|
|
{
|
|
|
|
return new NotFoundResult();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(queryResult);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-08-18 18:46:20 +03:00
|
|
|
/// <summary>
|
2022-08-22 05:57:06 +03:00
|
|
|
/// Add Currency to the table of currencies
|
2022-08-18 18:46:20 +03:00
|
|
|
/// </summary>
|
2022-08-22 18:02:48 +03:00
|
|
|
/// <param name="currencyId"></param>
|
|
|
|
/// <param name="countryToCreate"></param>
|
2022-08-18 18:46:20 +03:00
|
|
|
/// <returns></returns>
|
2022-08-22 05:57:06 +03:00
|
|
|
[ProducesResponseType(StatusCodes.Status201Created)]
|
2022-08-22 18:02:48 +03:00
|
|
|
[HttpPost("{currencyId}/countries")]
|
2022-08-22 05:57:06 +03:00
|
|
|
public ActionResult AddCountry(int currencyId, CountryCreate countryToCreate)
|
2022-08-17 23:21:00 +03:00
|
|
|
{
|
2022-08-24 19:56:51 +03:00
|
|
|
/*var (success, message, country) = _dbContext.AddCountry(currencyId, countryToCreate,
|
2022-08-22 05:57:06 +03:00
|
|
|
new Expression<Func<Country, bool>>[]
|
|
|
|
{
|
|
|
|
x => x.Code == countryToCreate.Code,
|
|
|
|
y => y.StateName == countryToCreate.StateName,
|
|
|
|
z => z.Alpha2Code == countryToCreate.Alpha2Code
|
|
|
|
});
|
2022-08-17 23:21:00 +03:00
|
|
|
|
2022-08-22 18:02:48 +03:00
|
|
|
if (!success)
|
2022-08-17 23:21:00 +03:00
|
|
|
{
|
2022-08-22 05:57:06 +03:00
|
|
|
return new ConflictObjectResult(message);
|
2022-08-17 23:21:00 +03:00
|
|
|
}
|
2022-08-22 18:02:48 +03:00
|
|
|
|
2022-08-24 19:56:51 +03:00
|
|
|
return Ok(country);*/
|
|
|
|
return null;
|
2022-08-13 06:35:36 +03:00
|
|
|
}
|
2022-08-22 18:02:48 +03:00
|
|
|
|
2022-08-13 06:35:36 +03:00
|
|
|
}
|
|
|
|
}
|