/* * #%L * BroadleafCommerce Framework Web * %% * Copyright (C) 2009 - 2013 Broadleaf Commerce * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ package org.broadleafcommerce.core.web.controller.catalog; import org.broadleafcommerce.core.catalog.domain.Product; import org.broadleafcommerce.core.catalog.service.CatalogService; import org.broadleafcommerce.core.rating.domain.ReviewDetail; import org.broadleafcommerce.core.rating.service.RatingService; import org.broadleafcommerce.core.rating.service.type.RatingType; import org.broadleafcommerce.profile.web.core.CustomerState; import org.springframework.ui.Model; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; public class BroadleafRatingsController { @Resource(name = "blRatingService") protected RatingService ratingService; @Resource(name = "blCatalogService") protected CatalogService catalogService; protected String formView = "catalog/partials/review"; protected String successView = "catalog/partials/reviewSuccessful"; public String viewReviewForm(HttpServletRequest request, Model model, ReviewForm form, String itemId) { Product product = catalogService.findProductById(Long.valueOf(itemId)); form.setProduct(product); ReviewDetail reviewDetail = ratingService.readReviewByCustomerAndItem(CustomerState.getCustomer(), itemId); if (reviewDetail != null) { form.setReviewText(reviewDetail.getReviewText()); form.setRating(reviewDetail.getRatingDetail().getRating()); } model.addAttribute("reviewForm", form); return getFormView(); } public String reviewItem(HttpServletRequest request, Model model, ReviewForm form, String itemId) { ratingService.reviewItem(itemId, RatingType.PRODUCT, CustomerState.getCustomer(), form.getRating(), form.getReviewText()); model.addAttribute("reviewForm", form); return getSuccessView(); } public String getFormView() { return formView; } public String getSuccessView() { return successView; } }