use of com.tvd12.example.spring_boot_redis.exception.HttpBadRequestException in project ezyfox-examples by tvd12.
the class CategoryController method addCategory.
@DoPost("/add")
public Category addCategory(@RequestBody AddCategoryRequest request) {
Category existedCategory = categoryRepository.findByName(request.getCategoryName());
if (existedCategory != null) {
throw new HttpBadRequestException("category named: " + request.getCategoryName() + " existed");
}
Category category = new Category(maxIdRepository.incrementAndGet("category"), request.getCategoryName());
categoryRepository.save(category);
return category;
}
use of com.tvd12.example.spring_boot_redis.exception.HttpBadRequestException in project ezyfox-examples by tvd12.
the class BookController method addBook.
@DoPost("/book/add")
public BookResponse addBook(@RequestBody AddBookRequest request) {
BookNameAndAuthorId bookNameAndAuthorId = new BookNameAndAuthorId(request.getBookName(), request.getAuthorId());
Long existedBookId = bookIdByNameAndAuthorIdMap.get(bookNameAndAuthorId);
if (existedBookId != null) {
throw new HttpBadRequestException("author: " + request.getAuthorId() + " has already registered book: " + request.getBookName());
}
Author author = authorMap.get(request.getAuthorId());
if (author == null) {
throw new HttpBadRequestException("author: " + request.getAuthorId() + " not found");
}
Category category = categoryMap.get(request.getCategoryId());
if (category == null) {
throw new HttpBadRequestException("category: " + request.getCategoryId() + " not found");
}
val bookId = idGentor.incrementAndGet();
val book = requestToEntityConverter.toBookEntity(request, bookId);
bookMap.put(book.getId(), book);
bookIdByNameAndAuthorIdMap.put(bookNameAndAuthorId, bookId);
return entityToResponseConverter.toBookResponse(book, author, category);
}
use of com.tvd12.example.spring_boot_redis.exception.HttpBadRequestException in project ezyfox-examples by tvd12.
the class CategoryController method addCategory.
@DoPost("/add")
public Category addCategory(@RequestBody AddCategoryRequest request) {
Long existedCategoryId = categoryIdByNameMap.get(request.getCategoryName());
if (existedCategoryId != null) {
throw new HttpBadRequestException("category named: " + request.getCategoryName() + " existed");
}
Category category = new Category(idGentor.incrementAndGet(), request.getCategoryName());
categoryMap.put(category.getId(), category);
categoryIdByNameMap.put(category.getName(), category.getId());
return category;
}
use of com.tvd12.example.spring_boot_redis.exception.HttpBadRequestException in project ezyhttp by youngmonkeys.
the class AbstractRequestHandler method deserializeBody.
protected <T> T deserializeBody(BodyData bodyData, Class<T> type) throws IOException {
String contentType = bodyData.getContentType();
if (contentType == null) {
throw new HttpBadRequestException("contentType is null");
}
BodyDeserializer deserializer = dataConverters.getBodyDeserializer(contentType);
try {
return deserializer.deserialize(bodyData, type);
} catch (Exception e) {
throw new DeserializeBodyException("can't deserialize body data to: " + type.getName(), e);
}
}
Aggregations