com.aoindustries.website.signup.Backup5CompletedAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aoweb-struts-core Show documentation
Show all versions of aoweb-struts-core Show documentation
Core API for legacy Struts-based site framework with AOServ Platform control panels.
/*
* aoweb-struts-core - Core API for legacy Struts-based site framework with AOServ Platform control panels.
* Copyright (C) 2009, 2016 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.signup;
import com.aoindustries.aoserv.client.AOServConnector;
import com.aoindustries.aoserv.client.PackageDefinition;
import com.aoindustries.website.SiteSettings;
import com.aoindustries.website.Skin;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionServlet;
/**
* @author AO Industries, Inc.
*/
public class Backup5CompletedAction extends Backup5Action {
@Override
public ActionForward executeBackupStep(
ActionMapping mapping,
HttpServletRequest request,
HttpServletResponse response,
SiteSettings siteSettings,
Locale locale,
Skin skin,
BackupSignupSelectPackageForm signupSelectPackageForm,
boolean signupSelectPackageFormComplete,
SignupBusinessForm signupBusinessForm,
boolean signupBusinessFormComplete,
SignupTechnicalForm signupTechnicalForm,
boolean signupTechnicalFormComplete,
SignupBillingInformationForm signupBillingInformationForm,
boolean signupBillingInformationFormComplete
) throws Exception {
// Forward to previous steps if they have not been completed
if(!signupSelectPackageFormComplete) return mapping.findForward("backup-completed");
if(!signupBusinessFormComplete) return mapping.findForward("backup-2-completed");
if(!signupTechnicalFormComplete) return mapping.findForward("backup-3-completed");
if(!signupBillingInformationFormComplete) return mapping.findForward("backup-4-completed");
// Let the parent class do the initialization of the request attributes for both the emails and the final JSP
initRequestAttributes(
request,
response,
signupSelectPackageForm,
signupBusinessForm,
signupTechnicalForm,
signupBillingInformationForm
);
// Used later
HttpSession session = request.getSession();
ActionServlet myServlet = getServlet();
AOServConnector rootConn = siteSettings.getRootAOServConnector();
PackageDefinition packageDefinition = rootConn.getPackageDefinitions().get(signupSelectPackageForm.getPackageDefinition());
// Build the options map
Map options = new HashMap();
// Store to the database
ServerConfirmationCompletedActionHelper.storeToDatabase(myServlet, request, rootConn, packageDefinition, signupBusinessForm, signupTechnicalForm, signupBillingInformationForm, options);
String pkey = (String)request.getAttribute("pkey");
String statusKey = (String)request.getAttribute("statusKey");
// Send confirmation email to support
MinimalConfirmationCompletedActionHelper.sendSupportSummaryEmail(
myServlet,
request,
pkey,
statusKey,
siteSettings,
packageDefinition,
signupBusinessForm,
signupTechnicalForm,
signupBillingInformationForm
);
// Send confirmation email to customer
MinimalConfirmationCompletedActionHelper.sendCustomerSummaryEmails(
myServlet,
request,
pkey,
statusKey,
siteSettings,
packageDefinition,
signupBusinessForm,
signupTechnicalForm,
signupBillingInformationForm
);
// Clear backup signup-specific forms from the session
session.removeAttribute("backupSignupSelectPackageForm");
return mapping.findForward("success");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy