2020-05-29 10:12:09 +00:00
|
|
|
using System;
|
2020-05-28 08:55:56 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using AutoMapper;
|
2020-06-02 09:16:45 +00:00
|
|
|
using BuecherwurmAPI.Models;
|
2020-05-28 08:55:56 +00:00
|
|
|
using BuecherwurmAPI.DTOs;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Microsoft.AspNetCore.JsonPatch;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2020-06-02 09:16:45 +00:00
|
|
|
|
2020-05-28 08:55:56 +00:00
|
|
|
|
|
|
|
namespace BuecherwurmAPI.Controllers
|
|
|
|
{
|
|
|
|
[Route("api/leihvorgang")]
|
|
|
|
[ApiController]
|
|
|
|
public class LendController : ControllerBase
|
|
|
|
{
|
2020-05-28 14:14:36 +00:00
|
|
|
private readonly IRepository _repository;
|
2020-05-28 08:55:56 +00:00
|
|
|
private readonly IMapper _mapper;
|
2020-05-29 10:12:09 +00:00
|
|
|
|
2020-05-28 14:14:36 +00:00
|
|
|
public LendController(IRepository repository, IMapper mapper)
|
2020-05-28 08:55:56 +00:00
|
|
|
{
|
|
|
|
_repository = repository;
|
|
|
|
_mapper = mapper;
|
|
|
|
}
|
2020-05-29 10:12:09 +00:00
|
|
|
|
2020-05-28 08:55:56 +00:00
|
|
|
//GET api/leihvorgang
|
|
|
|
[HttpGet]
|
|
|
|
public ActionResult<IEnumerable<Lend>> LendsGet()
|
|
|
|
{
|
|
|
|
return Ok(_repository.GetAllLends());
|
|
|
|
}
|
2020-05-29 10:12:09 +00:00
|
|
|
|
2020-05-28 08:55:56 +00:00
|
|
|
//POST api/leihvorgang
|
|
|
|
[HttpPost]
|
|
|
|
public ActionResult<LendReadDTO> LendsPost(Lend lend)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Internally a lend is stored with an id
|
|
|
|
but the client shouldn't be allowed to set or change it
|
|
|
|
therefore the package 'AutoMapper' is used to prevent errors
|
|
|
|
that could happen when doing this task manually.
|
|
|
|
It takes the information from the client and maps it to the
|
|
|
|
corresponding internal object which then will be returned.
|
|
|
|
Furthermore it could be used to keep some attributes secret.
|
|
|
|
Another nice effect of this is that the implementation could be changed
|
|
|
|
while the interface could be retained by some minor changes in the code.
|
|
|
|
|
|
|
|
DTO stands for Data Transfer Object
|
|
|
|
*/
|
|
|
|
var item = new Lend
|
|
|
|
{
|
|
|
|
Id = 256,
|
|
|
|
Customer = lend.Customer,
|
|
|
|
Returned = lend.Returned,
|
|
|
|
ItemId = lend.ItemId,
|
|
|
|
ReturnDate = lend.ReturnDate
|
|
|
|
};
|
|
|
|
return Ok(item);
|
|
|
|
//return Ok(_mapper.Map<LendReadDTO>(item));
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET api/leihvorgang/{id}
|
|
|
|
[HttpGet("{id}")]
|
2020-05-29 09:18:23 +00:00
|
|
|
public ActionResult<Lend> LendById(long id)
|
2020-05-28 08:55:56 +00:00
|
|
|
{
|
|
|
|
var lend = _repository.GetLendById(id);
|
2020-05-29 09:18:23 +00:00
|
|
|
if (!_repository.IdExits(Tables.Table.Lends, id))
|
|
|
|
{
|
|
|
|
return NotFound();
|
|
|
|
}
|
2020-05-28 08:55:56 +00:00
|
|
|
|
2020-05-29 09:52:57 +00:00
|
|
|
return Ok(lend);
|
|
|
|
}
|
|
|
|
|
|
|
|
//PATCH api/leihvorgang/{id}
|
|
|
|
[HttpPatch("{id}")]
|
|
|
|
public ActionResult LendPatchById(int id, JsonPatchDocument<Lend> patchDocument)
|
|
|
|
{
|
|
|
|
return Ok();
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 10:12:09 +00:00
|
|
|
}
|