Java tutorial
/* * Copyright 2009 Igor Azarnyi, Denys Pavlov * * 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. */ package org.yes.cart.web.aspect; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.springframework.cache.annotation.CacheEvict; import org.springframework.core.task.TaskExecutor; import org.yes.cart.domain.entity.CustomerOrder; import org.yes.cart.domain.entity.CustomerOrderDet; import org.yes.cart.domain.entity.Shop; import org.yes.cart.domain.message.consumer.StandardMessageListener; import org.yes.cart.payment.dto.PaymentGatewayFeature; import org.yes.cart.service.domain.CustomerService; import org.yes.cart.service.domain.MailService; import org.yes.cart.service.domain.ProductService; import org.yes.cart.service.domain.ShopService; import org.yes.cart.service.domain.aspect.impl.BaseNotificationAspect; import org.yes.cart.service.mail.MailComposer; import org.yes.cart.service.payment.PaymentModulesManager; import org.yes.cart.service.theme.ThemeService; import java.io.Serializable; import java.util.HashMap; /** * Aspect responsible to send notifications about * User: Igor Azarny * Date: 7 Apr 2012 * Time: 4:41 PM */ @Aspect public class PaymentAspect extends BaseNotificationAspect { private final ProductService productService; private final MailService mailService; private final MailComposer mailComposer; private final CustomerService customerService; private final ShopService shopService; private final ThemeService themeService; private final PaymentModulesManager paymentModulesManager; /** * Construct aspect. * */ public PaymentAspect(final TaskExecutor taskExecutor, final ProductService productService, final MailService mailService, final MailComposer mailComposer, final CustomerService customerService, final ShopService shopService, final ThemeService themeService, final PaymentModulesManager paymentModulesManager) { super(taskExecutor); this.productService = productService; this.mailService = mailService; this.mailComposer = mailComposer; this.shopService = shopService; this.customerService = customerService; this.themeService = themeService; this.paymentModulesManager = paymentModulesManager; } public Runnable getTask(final Serializable serializableMessage) { return new StandardMessageListener(mailService, mailComposer, customerService, shopService, serializableMessage); } /** * Perform shopper notification, about payment authorize. * * @param pjp {@link ProceedingJoinPoint} * @return result of original operation. * @throws Throwable re throws exception */ @CacheEvict(value = { "skuWarehouseService-productOnWarehouse", "skuWarehouseService-productSkusOnWarehouse" }, allEntries = true) @Around("execution(* org.yes.cart.service.payment.impl.PaymentProcessorImpl.authorize(..))") public Object doAuthorize(final ProceedingJoinPoint pjp) throws Throwable { final String rez = (String) pjp.proceed(); final HashMap<String, Object> map = new HashMap<String, Object>(); fillParameters(pjp, map); final CustomerOrder customerOrder = (CustomerOrder) pjp.getArgs()[0]; final Shop shop = shopService.getById(customerOrder.getShop().getShopId()); map.put(StandardMessageListener.SHOP_CODE, shop.getCode()); map.put(StandardMessageListener.CUSTOMER_EMAIL, customerOrder.getCustomer().getEmail()); map.put(StandardMessageListener.RESULT, rez); map.put(StandardMessageListener.ROOT, customerOrder); map.put(StandardMessageListener.TEMPLATE_FOLDER, themeService.getMailTemplateChainByShopId(shop.getShopId())); map.put(StandardMessageListener.SHOP, shop); map.put(StandardMessageListener.CUSTOMER, customerOrder.getCustomer()); map.put(StandardMessageListener.LOCALE, customerOrder.getLocale()); final PaymentGatewayFeature feature = paymentModulesManager .getPaymentGateway(customerOrder.getPgLabel(), shop.getCode()).getPaymentGatewayFeatures(); if (feature.isOnlineGateway()) { map.put(StandardMessageListener.TEMPLATE_NAME, "payment"); } else { map.put(StandardMessageListener.TEMPLATE_NAME, "order-new"); } map.put(StandardMessageListener.PAYMENT_GATEWAY_FEATURE, feature); sendNotification(map); reindex(customerOrder); return rez; } /** * Perform shopper notification, about payment authorize. * * @param pjp {@link ProceedingJoinPoint} * @return result of original operation. * @throws Throwable re throws exception */ @CacheEvict(value = { "skuWarehouseService-productOnWarehouse", "skuWarehouseService-productSkusOnWarehouse" }, allEntries = true) @Around("execution(* org.yes.cart.service.payment.impl.PaymentProcessorImpl.shipmentComplete(..))") public Object doShipmentComplete(final ProceedingJoinPoint pjp) throws Throwable { final String rez = (String) pjp.proceed(); final HashMap<String, Object> map = new HashMap<String, Object>(); fillParameters(pjp, map); final CustomerOrder customerOrder = (CustomerOrder) pjp.getArgs()[0]; final Shop shop = shopService.getById(customerOrder.getShop().getShopId()); map.put(StandardMessageListener.SHOP_CODE, shop.getCode()); map.put(StandardMessageListener.CUSTOMER_EMAIL, customerOrder.getCustomer().getEmail()); map.put(StandardMessageListener.RESULT, rez); map.put(StandardMessageListener.ROOT, customerOrder); map.put(StandardMessageListener.TEMPLATE_FOLDER, themeService.getMailTemplateChainByShopId(shop.getShopId())); map.put(StandardMessageListener.SHOP, shop); map.put(StandardMessageListener.CUSTOMER, customerOrder.getCustomer()); map.put(StandardMessageListener.LOCALE, customerOrder.getLocale()); map.put(StandardMessageListener.TEMPLATE_NAME, "shipment-complete"); sendNotification(map); reindex(customerOrder); return rez; } private void reindex(final CustomerOrder customerOrder) { for (CustomerOrderDet det : customerOrder.getOrderDetail()) { productService.reindexProductSku(det.getProductSkuCode()); } } }