org.kuali.coeus.propdev.impl.sponsor.ProposalDevelopmentSponsorProgramInformationController.java Source code

Java tutorial

Introduction

Here is the source code for org.kuali.coeus.propdev.impl.sponsor.ProposalDevelopmentSponsorProgramInformationController.java

Source

/*
 * Kuali Coeus, a comprehensive research administration system for higher education.
 * 
 * Copyright 2005-2015 Kuali, Inc.
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program 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 Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.kuali.coeus.propdev.impl.sponsor;

import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.kuali.coeus.propdev.impl.core.DevelopmentProposal;
import org.kuali.coeus.propdev.impl.core.ProposalDevelopmentControllerBase;
import org.kuali.coeus.propdev.impl.core.ProposalDevelopmentDocumentForm;
import org.kuali.kra.institutionalproposal.home.InstitutionalProposal;
import org.kuali.kra.institutionalproposal.proposaladmindetails.ProposalAdminDetails;
import org.springframework.stereotype.Controller;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Collections;
import java.util.List;

@Controller
public class ProposalDevelopmentSponsorProgramInformationController extends ProposalDevelopmentControllerBase {

    @Transactional
    @RequestMapping(value = "/proposalDevelopment", params = { "methodToCall=navigate",
            "actionParameters[navigateToPageId]=PropDev-SponsorProgramInfoPage" })
    public ModelAndView navigate(@ModelAttribute("KualiForm") ProposalDevelopmentDocumentForm form,
            BindingResult result, HttpServletRequest request, HttpServletResponse response) throws Exception {
        if (StringUtils.isNotEmpty(form.getDevelopmentProposal().getContinuedFrom())
                && StringUtils.isEmpty(form.getDevelopmentProposal().getPrevGrantsGovTrackingID())) {
            String instProposalId = getInstitutionalProposalId(form.getDevelopmentProposal().getContinuedFrom());
            DevelopmentProposal continuedFrom = getContinuedFromDevelopmentProposal(instProposalId);
            if (continuedFrom != null && CollectionUtils.isNotEmpty(continuedFrom.getS2sAppSubmission())) {
                String ggTrackingId = continuedFrom.getS2sAppSubmission()
                        .get(continuedFrom.getS2sAppSubmission().size() - 1).getGgTrackingId();
                form.getDevelopmentProposal().setPrevGrantsGovTrackingID(ggTrackingId);
            }
        }
        return super.navigate(form, result, request, response);
    }

    protected String getInstitutionalProposalId(String instProposalNumber) {
        List<InstitutionalProposal> institutionalProposals = (List<InstitutionalProposal>) getLegacyDataAdapter()
                .findMatching(InstitutionalProposal.class,
                        Collections.singletonMap("proposalNumber", instProposalNumber));
        if (CollectionUtils.isNotEmpty(institutionalProposals)) {
            return String.valueOf(institutionalProposals.get(0).getProposalId());
        }
        return StringUtils.EMPTY;
    }

    protected DevelopmentProposal getContinuedFromDevelopmentProposal(String instProposalId) {
        List<ProposalAdminDetails> details = (List<ProposalAdminDetails>) getLegacyDataAdapter().findMatching(
                ProposalAdminDetails.class, Collections.singletonMap("instProposalId", instProposalId));
        if (CollectionUtils.isNotEmpty(details)) {
            return getDataObjectService().find(DevelopmentProposal.class, details.get(0).getDevProposalNumber());
        }
        return null;
    }

}