com.benfante.minimark.controllers.AssessmentFillingController.java Source code

Java tutorial

Introduction

Here is the source code for com.benfante.minimark.controllers.AssessmentFillingController.java

Source

/**
 * Copyright (C) 2009 Lucio Benfante <lucio.benfante@gmail.com>
 *
 * This file is part of minimark Web Application.
 *
 * 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 com.benfante.minimark.controllers;

import com.benfante.minimark.blo.AssessmentFillingBo;
import com.benfante.minimark.blo.AssessmentPdfBuilder;
import com.benfante.minimark.blo.ResultCalculationBo;
import com.benfante.minimark.dao.AssessmentDao;
import com.benfante.minimark.dao.AssessmentFillingDao;
import com.benfante.minimark.po.Assessment;
import com.benfante.minimark.po.AssessmentFilling;
import com.benfante.minimark.util.Utilities;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Date;
import java.util.Locale;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.log4j.Logger;
import org.parancoe.web.util.FlashHelper;
import org.parancoe.web.validation.Validation;
import org.springframework.context.MessageSource;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.SessionAttributes;
import org.springframework.web.bind.support.SessionStatus;

/**
 * The controller managing the fillin of assessments.
 *
 * @author lucio
 */
@Controller
@RequestMapping("/assessmentFilling/*.html")
@SessionAttributes(AssessmentFillingController.ASSESSMENT_ATTR_NAME)
public class AssessmentFillingController {

    private static final Logger logger = Logger.getLogger(AssessmentFillingController.class);
    public static final String ASSESSMENT_ATTR_NAME = "assessmentFilling";
    public static final String STUDENT_ID_ATTR_NAME = "studentId";
    public static final String EXPOSED_RESULT_ATTR_NAME = "exposedResult";
    public static final String FORM_VIEW = "assessmentFilling/logon";
    public static final String FILL_VIEW = "assessmentFilling/fill";
    public static final String RESULT_VIEW = "assessmentFilling/result";
    public static final String EXIT_WITH_ERROR_PAGE = "redirect:/";
    @Resource
    private AssessmentDao assessmentDao;
    @Resource
    private AssessmentFillingDao assessmentFillingDao;
    @Resource
    private AssessmentFillingBo assessmentFillingBo;
    @Resource
    private ResultCalculationBo resultCalculationBo;
    @Resource
    private AssessmentPdfBuilder assessmentPdfBuilder;
    @Resource
    private MessageSource messageSource;

    @RequestMapping
    public String logon(@RequestParam("id") Long id, HttpServletRequest req, HttpSession session, Model model) {
        AssessmentFilling assessmentFilling = (AssessmentFilling) session.getAttribute(ASSESSMENT_ATTR_NAME);
        if (assessmentFilling != null) {
            if (assessmentFilling.getLoggedIn() != null && assessmentFilling.getLoggedIn()) {
                FlashHelper.setRedirectError(req, "AssessmentAlreadyStarted");
                return "redirect:fill.html";
            }
        }
        Assessment assessment = assessmentDao.get(id);
        if (assessment == null) {
            throw new RuntimeException("Assessment not found");
        }
        assessmentFilling = assessmentFillingBo.generateAssessmentFilling(assessment);
        model.addAttribute(ASSESSMENT_ATTR_NAME, assessmentFilling);
        return FORM_VIEW;
    }

    @RequestMapping
    @Validation(view = FORM_VIEW)
    public String start(@ModelAttribute(ASSESSMENT_ATTR_NAME) AssessmentFilling assessmentFilling,
            BindingResult result, SessionStatus status, HttpServletRequest req, HttpSession session, Model model) {
        session.setAttribute(STUDENT_ID_ATTR_NAME, assessmentFilling.getIdentifier());
        AssessmentFilling prevFilling = assessmentFillingDao.findByAssessmentIdAndIdentifier(
                assessmentFilling.getAssessment().getId(), assessmentFilling.getIdentifier());
        if (prevFilling != null) { // this student already started this assessment
            model.addAttribute(ASSESSMENT_ATTR_NAME, prevFilling);
            FlashHelper.setRedirectError(req, "AssessmentAlreadyStarted");
            if (prevFilling.getSubmittedDate() != null) { // already submitted, return to the resul
                status.setComplete();
                logger.info(prevFilling.getLastName() + " " + prevFilling.getFirstName()
                        + " looked at the result of the assessment " + prevFilling.getId() + " (original:"
                        + prevFilling.getAssessment().getId() + ")");
                return "redirect:showResult.html?id=" + prevFilling.getId();
            } else { // return to the filling page
                logger.info(prevFilling.getLastName() + " " + prevFilling.getFirstName()
                        + " went again to fill the assessment " + prevFilling.getId() + " (original:"
                        + prevFilling.getAssessment().getId() + ")");
                return "redirect:fill.html";
            }
        } else {
            assessmentFilling.setLoggedIn(Boolean.TRUE);
            assessmentFilling.setStartDate(new Date());
            assessmentFillingDao.store(assessmentFilling);
            logger.info(assessmentFilling.getLastName() + " " + assessmentFilling.getFirstName()
                    + " logged in assessment " + assessmentFilling.getId() + " (original:"
                    + assessmentFilling.getAssessment().getId() + ")");
            return "redirect:fill.html";
        }
    }

    @RequestMapping
    public String fill(HttpSession session, Model model) {
        AssessmentFilling assessmentFilling = (AssessmentFilling) session.getAttribute(ASSESSMENT_ATTR_NAME);
        assessmentFilling = assessmentFillingDao.get(assessmentFilling.getId()); // refresh from DB
        model.addAttribute(ASSESSMENT_ATTR_NAME, assessmentFilling);
        return FILL_VIEW;
    }

    @RequestMapping
    public String store(HttpSession session, Model model, SessionStatus status) {
        AssessmentFilling assessmentFilling = (AssessmentFilling) session.getAttribute(ASSESSMENT_ATTR_NAME);
        assessmentFilling = assessmentFillingDao.get(assessmentFilling.getId()); // refresh from DB
        assessmentFilling.setSubmittedDate(new Date());
        resultCalculationBo.calculate(assessmentFilling);
        status.setComplete();
        logger.info(assessmentFilling.getLastName() + " " + assessmentFilling.getFirstName()
                + " stored the assessment " + assessmentFilling.getId() + " (original:"
                + assessmentFilling.getAssessment().getId() + ")");
        return "redirect:showResult.html?id=" + assessmentFilling.getId();
    }

    @RequestMapping
    public String showResult(@RequestParam("id") Long id, HttpServletRequest req, HttpSession session,
            Locale locale) {
        AssessmentFilling assessmentFilling = assessmentFillingDao.get(id);
        if (!checkStudent(session, assessmentFilling) || !resultIsExposable(assessmentFilling)) {
            FlashHelper.setRedirectError(req, "Flash.NotAllowedToSeeAssessment");
            return EXIT_WITH_ERROR_PAGE;
        }
        final String exposedResult = assessmentFilling.getAssessment().getExposedResult();
        if (exposedResult != null && !"none".equals(exposedResult)) {
            if ("value".equals(exposedResult)) {
                req.setAttribute(EXPOSED_RESULT_ATTR_NAME, assessmentFilling.getEvaluationResult());
            }
            if ("passed".equals(exposedResult) && assessmentFilling.getAssessment().getMinPassedValue() != null) {
                if (assessmentFilling.getEvaluationResult()
                        .compareTo(assessmentFilling.getAssessment().getMinPassedValue()) >= 0) {
                    req.setAttribute(EXPOSED_RESULT_ATTR_NAME,
                            messageSource.getMessage("Passed", null, "?Passed?", locale));
                } else {
                    req.setAttribute(EXPOSED_RESULT_ATTR_NAME,
                            messageSource.getMessage("NotPassed", null, "?NotPassed?", locale));
                }
            }
        }
        req.setAttribute(ASSESSMENT_ATTR_NAME, assessmentFilling);
        return RESULT_VIEW;
    }

    @RequestMapping
    public String pdf(@RequestParam("id") Long id, HttpServletRequest req, HttpServletResponse res,
            HttpSession session, Locale locale) {
        AssessmentFilling assessmentInfo = assessmentFillingDao.get(id);
        if (!checkStudent(session, assessmentInfo) || !resultIsExposable(assessmentInfo)
                || !resultIsPrintable(assessmentInfo)) {
            FlashHelper.setRedirectError(req, "Flash.NotAllowedToSeeAssessment");
            return EXIT_WITH_ERROR_PAGE;
        }
        OutputStream out = null;
        try {
            byte[] pdfBytes = assessmentPdfBuilder.buildPdf(assessmentInfo, Utilities.getBaseUrl(req), locale);
            out = res.getOutputStream();
            res.setContentType("application/pdf");
            res.setContentLength(pdfBytes.length);
            res.setHeader("Content-Disposition", " attachment; filename=\"" + assessmentInfo.getLastName() + "_"
                    + assessmentInfo.getFirstName() + ".pdf\"");
            res.setHeader("Expires", "0");
            res.setHeader("Cache-Control", "must-revalidate, post-check=0, pre-check=0");
            res.setHeader("Pragma", "public");
            out.write(pdfBytes);
            out.flush();
        } catch (Exception ex) {
            logger.error("Can't build PDF file for " + assessmentInfo.getIdentifier() + " "
                    + assessmentInfo.getFirstName() + " " + assessmentInfo.getLastName(), ex);
        } finally {
            if (out != null) {
                try {
                    out.close();
                } catch (IOException ioe) {
                }
            }
        }
        return null;
    }

    private boolean checkStudent(HttpSession session, AssessmentFilling assessmentFilling) {
        boolean result = false;
        String studentId = (String) session.getAttribute(STUDENT_ID_ATTR_NAME);
        if (studentId != null && studentId.equals(assessmentFilling.getIdentifier())) {
            result = true;
        }
        return result;
    }

    private boolean resultIsExposable(AssessmentFilling assessmentFilling) {
        boolean result = false;
        if (assessmentFilling.getSubmittedDate() != null) {
            result = true;
        }
        return result;
    }

    private boolean resultIsPrintable(AssessmentFilling assessmentFilling) {
        boolean result = false;
        final Boolean allowStudentPrint = assessmentFilling.getAssessment().getAllowStudentPrint();
        if (allowStudentPrint != null && allowStudentPrint.booleanValue() == true) {
            result = true;
        }
        return result;
    }
}