BuecherwurmAPI/Controllers/KatalogController.cs

99 lines
2.6 KiB
C#
Raw Normal View History

2020-05-28 11:47:02 +00:00
using System.Collections.Generic;
using BuecherwurmAPI.Models;
using Microsoft.AspNetCore.Mvc;
using System.Linq;
//using Microsoft.EntityFrameworkCore;
namespace BuecherwurmAPI.Controllers
{
[Route("katalog") ]
[ApiController]
public class KatalogController :ControllerBase
{
private readonly IBookRepo _repository;
public KatalogController (IBookRepo repository)
{
_repository=repository;
}
// GET Katalog
[HttpGet]
public ActionResult<IEnumerable<Book>> GetAllBooks()
{
var books =_repository.GetAllBooks();
return Ok(books);
}
// POST Katalog
[HttpPost]
2020-06-02 10:55:17 +00:00
public ActionResult<IEnumerable<Book>> AddBook(Book book)
2020-05-28 11:47:02 +00:00
{
return Ok(new Book
{
Name = book.Name,
Author= book.Author,
Country= book.Country,
Link= book.Link,
Language= book.Language,
Pages= book.Pages,
Year=book.Year,
ProductId =book.ProductId,
Category= book.Category,
ImageLink =book.ImageLink,
LendTime =book.LendTime,
LendType = book.LendType
});
}
// GET katalog/{id}
[HttpGet("{id}", Name ="GetBookByID")]
2020-06-02 10:55:17 +00:00
public ActionResult <IEnumerable<Book>> GetBookByID(long id)
2020-05-28 11:47:02 +00:00
{
var book = _repository.GetBookById(id);
if (book != null)
{
return Ok(book);
}
return NoContent();
}
// PUT Katalog/{id}
[HttpPut("id")]
2020-06-02 10:55:17 +00:00
public ActionResult<IEnumerable<Book>> EditBook(Book book)
2020-05-28 11:47:02 +00:00
{
return Ok(new Book
{
Name = book.Name,
Author= book.Author,
Country= book.Country,
Link= book.Link,
Language= book.Language,
Pages= book.Pages,
Year=book.Year,
ProductId =book.ProductId,
Category= book.Category,
ImageLink =book.ImageLink,
LendTime =book.LendTime,
LendType = book.LendType
});
}
// DELETE katalog/{id}
[HttpDelete("id")]
2020-06-02 10:55:17 +00:00
public ActionResult<IEnumerable<Book>> DeleteBook (long id)
2020-05-28 11:47:02 +00:00
{
var book = _repository.GetBookById(id);
if(book == null)
{
return NotFound();
}
2020-06-02 10:55:17 +00:00
_repository.DeleteBook(book);
2020-05-28 11:47:02 +00:00
return NoContent();
}
}
}