use of com.tvd12.ezydata.example.redis.entity.Category in project java-examples by tvd12.
the class BookController method addBook.
@PostMapping("/book/add")
public BookResponse addBook(@RequestBody AddBookRequest request) {
BookNameAndAuthorId bookNameAndAuthorId = new BookNameAndAuthorId(request.getBookName(), request.getAuthorId());
Long existedBookId = bookIdByNameAndAuthorIdRepository.findById(bookNameAndAuthorId).orElse(null);
if (existedBookId != null) {
throw new HttpBadRequestException("author: " + request.getAuthorId() + " has already registered book: " + request.getBookName());
}
Author author = authorRepository.findById(request.getAuthorId()).orElseThrow(() -> new HttpBadRequestException("author: " + request.getAuthorId() + " not found"));
Category category = categoryRepository.findById(request.getCategoryId()).orElseThrow(() -> new HttpBadRequestException("category: " + request.getCategoryId() + " not found"));
Long bookId = idGentor.incrementAndGet("book");
Book book = requestToEntityConverter.toBookEntity(request, bookId);
bookRepository.save(book);
bookIdByNameAndAuthorIdRepository.put(bookNameAndAuthorId, bookId);
return entityToResponseConverter.toBookResponse(book, author, category);
}
use of com.tvd12.ezydata.example.redis.entity.Category in project java-examples by tvd12.
the class CategoryController method addCategory.
@PostMapping("/add")
public Category addCategory(@RequestBody AddCategoryRequest request) {
Long existedCategoryId = categoryIdByNameRepository.findById(request.getCategoryName()).orElse(null);
if (existedCategoryId != null) {
throw new HttpBadRequestException("category named: " + request.getCategoryName() + " existed");
}
Category category = new Category(idGentor.incrementAndGet("category"), request.getCategoryName());
categoryRepository.save(category);
categoryIdByNameRepository.put(category.getName(), category.getId());
return category;
}
use of com.tvd12.ezydata.example.redis.entity.Category in project ezyfox-examples by tvd12.
the class BookService method getBook.
public BookData getBook(Long bookId) {
Book book = bookRepository.findById(bookId);
if (book == null) {
throw new BookNotFoundException("not found book with id: " + bookId);
}
final Author author = authorRepository.findById(book.getAuthorId());
final Category category = categoryRepository.findById(book.getCategoryId());
return entityToDataConverter.toData(book, author, category);
}
use of com.tvd12.ezydata.example.redis.entity.Category in project ezyfox-examples by tvd12.
the class CategoryService method saveCategory.
public CategoryData saveCategory(AddCategoryData data) {
final Category existedCategory = categoryRepository.findByName(data.getCategoryName());
if (existedCategory != null) {
throw new DuplicatedCategoryException("category named: " + data.getCategoryName() + " existed");
}
final Category entity = dataToEntityConverter.toEntity(data);
categoryRepository.save(entity);
return entityToDataConverter.toData(entity);
}
use of com.tvd12.ezydata.example.redis.entity.Category in project ezyfox-examples by tvd12.
the class BookController method getBook.
@DoGet("/books/{bookId}")
public BookResponse getBook(@PathVariable Long bookId) {
Book book = bookRepository.findById(bookId);
if (book == null) {
throw new HttpNotFoundException("not found book with id: " + bookId);
}
Author author = authorRepository.findById(book.getAuthorId());
Category category = categoryRepository.findById(book.getCategoryId());
return entityToResponseConverter.toBookResponse(book, author, category);
}
Aggregations