/** * Copyright (c) 2009--2014 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 * along with this software; if not, see * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * * Red Hat trademarks are not licensed under GPLv2. No permission is * granted to use or replicate Red Hat trademarks that are incorporated * in this software or its documentation. */ package com.redhat.rhn.frontend.action.errata; import com.redhat.rhn.common.db.datasource.DataResult; import com.redhat.rhn.domain.channel.Channel; import com.redhat.rhn.domain.errata.Errata; import com.redhat.rhn.domain.rhnpackage.Package; import com.redhat.rhn.domain.rhnset.RhnSet; import com.redhat.rhn.domain.rhnset.RhnSetElement; import com.redhat.rhn.domain.user.User; import com.redhat.rhn.frontend.struts.RequestContext; import com.redhat.rhn.frontend.struts.RhnAction; import com.redhat.rhn.frontend.struts.RhnHelper; import com.redhat.rhn.frontend.struts.StrutsDelegate; import com.redhat.rhn.frontend.taglibs.list.ListTagHelper; import com.redhat.rhn.frontend.taglibs.list.helper.ListRhnSetHelper; import com.redhat.rhn.frontend.taglibs.list.helper.Listable; import com.redhat.rhn.manager.errata.ErrataManager; import com.redhat.rhn.manager.errata.cache.ErrataCacheManager; import com.redhat.rhn.manager.rhnpackage.PackageManager; import com.redhat.rhn.manager.rhnset.RhnSetDecl; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.apache.struts.action.ActionMessage; import org.apache.struts.action.ActionMessages; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** @version $Revision$ */ public class AddPackagesConfirmAction extends RhnAction implements Listable { /** {@inheritDoc} */ public ActionForward execute(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { request.setAttribute(ListTagHelper.PARENT_URL, request.getRequestURI()); RequestContext context = new RequestContext(request); Map<String, Object> params = new HashMap<String, Object>(); params.put("eid", context.getRequiredParam("eid")); RhnSetDecl decl = RhnSetDecl.PACKAGES_TO_ADD.createCustom( context.getRequiredParam("eid")); ListRhnSetHelper helper = new ListRhnSetHelper(this, request, decl); helper.setDataSetName(RequestContext.PAGE_LIST); helper.setWillClearSet(false); helper.execute(); if (helper.isDispatched()) { context.requirePost(); ActionForward forward = addPackagesToErrata(actionMapping, request, decl); return forward; } StrutsDelegate strutsDelegate = getStrutsDelegate(); return strutsDelegate.forwardParams( actionMapping.findForward(RhnHelper.DEFAULT_FORWARD), params); } /** {@inheritDoc} */ public List getResult(RequestContext context) { User user = context.getCurrentUser(); HttpServletRequest request = context.getRequest(); Map<String, Object> params = new HashMap<String, Object>(); params.put("eid", context.getRequiredParam("eid")); String setName = RhnSetDecl.PACKAGES_TO_ADD.createCustom( context.getRequiredParam("eid")).getLabel(); DataResult dr = PackageManager.packageIdsInSet(user, setName); // Put the advisory into the request for the page header Errata errata = new RequestContext(request).lookupErratum(); request.setAttribute("advisory", errata.getAdvisory()); return dr; } /** * Adds the packages identified in the packages_to_add set to the errata. * * @param mapping ActionMapping * @param request the request * @param setDecl the set declaration used for this request * @return Returns either a success or failure message */ private ActionForward addPackagesToErrata(ActionMapping mapping, HttpServletRequest request, RhnSetDecl setDecl) { RequestContext requestContext = new RequestContext(request); StrutsDelegate strutsDelegate = getStrutsDelegate(); // Get the Logged in user and the errata in question User user = requestContext.getCurrentUser(); Errata errata = requestContext.lookupErratum(); // Retrieve the set containing the ids of the packages we want to add RhnSet packageIdsToAdd = setDecl.lookup(user); // We now need to loop through the set and get the package corresponding to // the id stored in ElementOne of the set. If the package exists, add it // to the errata. Iterator itr = packageIdsToAdd.getElements().iterator(); int packagesAdded = 0; while (itr.hasNext()) { Long pid = ((RhnSetElement) itr.next()).getElement(); //package id Package pkg = PackageManager.lookupByIdAndUser(pid, user); //package if (pkg != null) { //add the package to the errata errata.addPackage(pkg); //We need to keep track of the number of packages that were successfully //added to the errata. packagesAdded++; } } // Save the errata ErrataManager.storeErrata(errata); // Clean up setDecl.clear(user); // Update Errata Cache if (errata.isPublished()) { List<Long> list = new ArrayList<Long>(); for (Channel chan : errata.getChannels()) { list.add(chan.getId()); } ErrataCacheManager.insertCacheForChannelErrataAsync(list, errata); } // Set the correct action message and return to the success mapping ActionMessages msgs = getMessages(packagesAdded, errata.getAdvisory()); strutsDelegate.saveMessages(request, msgs); return strutsDelegate.forwardParam(mapping.findForward("success"), "eid", errata.getId().toString()); } /** * Helper method that gets the correct success action message depending on how * many packages were successfully added to the errata. * * @param packagesAdded The number of packages added to the errata * @param advisory The advisory for the errata (displayed in the message) * @return ActionMessages object containing the correct success message. */ private ActionMessages getMessages(int packagesAdded, String advisory) { ActionMessages msgs = new ActionMessages(); if (packagesAdded < 2) { msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("errata.edit.packages.add.success.singular", String.valueOf(packagesAdded), advisory)); } else { msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("errata.edit.packages.add.success.plural", String.valueOf(packagesAdded), advisory)); } return msgs; } }