From 1471d6a054773978029ec1572b803c0e71ad7894 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sun, 6 Feb 2022 21:09:44 +0100 Subject: [PATCH] Update rest api notes --- DotNet/ASP.NET/REST API.md | 112 ++++++++----------------------------- 1 file changed, 22 insertions(+), 90 deletions(-) diff --git a/DotNet/ASP.NET/REST API.md b/DotNet/ASP.NET/REST API.md index 491f27c..a10f534 100644 --- a/DotNet/ASP.NET/REST API.md +++ b/DotNet/ASP.NET/REST API.md @@ -1,121 +1,53 @@ -# ASP .NET REST API - -## Data Transfer Objects (DTOs) - -A **DTO** is an object that defines how the data will be sent and received over the network (usually as JSON). -Without a DTO the JSON response (or request) could contain irrelevant, wrong or unformatted data. -Moreover, by decoupling the JSON response from the actual data model, it's possible to change the latter without breaking the API. -DTOs must be mapped to the internal methods. - -Required NuGet Packages: - -- AutoMapper.Extensions.Microsoft.DependencyInjection - -In `StartUp.cs`: - -```cs -using AutoMapper; - -// ... - -public void ConfigureServices(IServiceCollection services) -{ - // other services - - services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies()); // set automapper service -} -``` - -In `EntityDTO.cs`: - -```cs -namespace .DTOs -{ - // define the data to be serialized in JSON (can differ from model) - public class EntityDTO - { - // only properties to be serialized - } -} -``` - -In `EntitiesProfile.cs`: - -```cs -using AutoMapper; -using .DTOs; -using .Model; - -namespace .Profiles -{ - public class EntitiesProfile : Profile - { - public EntitiesProfile() - { - CreateMap(); // map entity to it's DTO - } - } -} -``` - -## Controller (No View) +# ASP.NET REST API ```cs [Route("api/endpoint")] [ApiController] -public class EntitiesController : ControllerBase // MVC controller w/o view +public class EntitiesController : ControllerBase // API controller { - private readonly ICommandRepo _repo; - private readonly IMapper _mapper; // AutoMapper class + private readonly IEntityService _service; - public EntitiesController(IEntityRepo repository, IMapper mapper) + public EntitiesController(IEntityService service, IMapper mapper) { - _repo = repository; + _service = service; _mapper = mapper } [HttpGet] // GET api/endpoint - public ActionResult> SelectAllEntities() + public ActionResult> GetEntities() { - var results = _repo.SelectAll(); - - return Ok(_mapper.Map(results)); + IEnumerable results = /* ... */ + return Ok(results); } [HttpGet("{id}")] // GET api/endpoint/{id} - public ActionResult SelectOneEntityById(int id) + public ActionResult GetEntityById(int id) { - var result = _repo.SelectOneById(id); + var result = /* .. */; if(result != null) { - // transform entity to it's DTO - return Ok(_mapper.Map(result)); + return Ok(result); } return NotFound(); } -} -``` -## Controller (With View) - -```cs -[Route("api/endpoint")] -[ApiController] -public class EntitiesController : Controller -{ - private readonly AppDbContext _db; - - public EntitiesController(AppDbContext db) + [HttpPost] // POST api/endpoint + public ActionResult CreateEntity([FromBody] EntityDTO entity) { - _db = db; + // persist the entity + + var id = /* ID of the created entity */ + return Created(id, entity); } - [HttpGet] - public IActionResult SelectAll() + [HttpPut] // PUT api/endpoint + public ActionResult UpdateEntity([FromBody] EntityDTO entity) { - return Json(new { data = _db.Entities.ToList() }); // json view + // persist the updated entity + + return Created(uri, entity); } } ```