com.aoindustries.website.clientarea.accounting.MakePaymentSelectCardAction Maven / Gradle / Ivy
/*
* aoweb-struts-core - Core API for legacy Struts-based site framework with AOServ Platform control panels.
* Copyright (C) 2007-2009, 2015, 2016, 2018, 2019 AO Industries, Inc.
* [email protected]
* 7262 Bull Pen Cir
* Mobile, AL 36695
*
* This file is part of aoweb-struts-core.
*
* aoweb-struts-core is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* aoweb-struts-core is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with aoweb-struts-core. If not, see .
*/
package com.aoindustries.website.clientarea.accounting;
import com.aoindustries.aoserv.client.AOServConnector;
import com.aoindustries.aoserv.client.account.Account;
import com.aoindustries.aoserv.client.master.Permission;
import com.aoindustries.aoserv.client.payment.CreditCard;
import com.aoindustries.aoserv.client.payment.Payment;
import com.aoindustries.website.PermissionAction;
import com.aoindustries.website.SiteSettings;
import com.aoindustries.website.Skin;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
/**
* Gets the list of businesses or redirects to next step if only one business accessible.
*
* @author AO Industries, Inc.
*/
public class MakePaymentSelectCardAction extends PermissionAction {
/**
* When permission denied, redirect straight to the new card step.
*/
@Override
final public ActionForward executePermissionDenied(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response,
SiteSettings siteSettings,
Locale locale,
Skin skin,
AOServConnector aoConn,
List permissions
) throws Exception {
// Redirect when they don't have permissions to retrieve stored cards
response.sendRedirect(response.encodeRedirectURL(skin.getUrlBase(request)+"clientarea/accounting/make-payment-new-card.do?accounting="+request.getParameter("accounting")));
return null;
}
@Override
final public ActionForward executePermissionGranted(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response,
SiteSettings siteSettings,
Locale locale,
Skin skin,
AOServConnector aoConn
) throws Exception {
// Find the requested business
String accounting = request.getParameter("accounting");
Account account = accounting==null ? null : aoConn.getAccount().getAccount().get(Account.Name.valueOf(accounting));
if(account == null) {
// Redirect back to make-payment if business not found
return mapping.findForward("make-payment");
}
// Get the list of active credit cards stored for this business
List allCreditCards = account.getCreditCards();
List creditCards = new ArrayList<>(allCreditCards.size());
for(CreditCard creditCard : allCreditCards) {
if(creditCard.getDeactivatedOn()==null) creditCards.add(creditCard);
}
if(creditCards.isEmpty()) {
// Redirect to new card if none stored
response.sendRedirect(response.encodeRedirectURL(skin.getUrlBase(request)+"clientarea/accounting/make-payment-new-card.do?accounting="+request.getParameter("accounting")));
return null;
} else {
// Store to request attributes, return success
request.setAttribute("business", account);
request.setAttribute("creditCards", creditCards);
Payment lastCCT = account.getLastCreditCardTransaction();
request.setAttribute("lastPaymentCreditCard", lastCCT==null ? null : lastCCT.getCreditCardProviderUniqueId());
return mapping.findForward("success");
}
}
@Override
public List getPermissions() {
return Collections.singletonList(Permission.Name.get_credit_cards);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy