Coverage Report - net.sourceforge.pebble.confirmation.ImageCaptchaServlet
 
Classes in this File Line Coverage Branch Coverage Complexity
ImageCaptchaServlet
0%
0/24
N/A
3
 
 1  
 /*
 2  
  * Copyright (c) 2003-2011, Simon Brown
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions are met:
 7  
  *
 8  
  *   - Redistributions of source code must retain the above copyright
 9  
  *     notice, this list of conditions and the following disclaimer.
 10  
  *
 11  
  *   - Redistributions in binary form must reproduce the above copyright
 12  
  *     notice, this list of conditions and the following disclaimer in
 13  
  *     the documentation and/or other materials provided with the
 14  
  *     distribution.
 15  
  *
 16  
  *   - Neither the name of Pebble nor the names of its contributors may
 17  
  *     be used to endorse or promote products derived from this software
 18  
  *     without specific prior written permission.
 19  
  *
 20  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 21  
  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 22  
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 23  
  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 24  
  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 25  
  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 26  
  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 27  
  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 28  
  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 29  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 30  
  * POSSIBILITY OF SUCH DAMAGE.
 31  
  */
 32  
 
 33  
 package net.sourceforge.pebble.confirmation;
 34  
 
 35  
 import com.octo.captcha.service.CaptchaServiceException;
 36  
 
 37  
 import javax.servlet.ServletConfig;
 38  
 import javax.servlet.ServletException;
 39  
 import javax.servlet.ServletOutputStream;
 40  
 import javax.servlet.http.HttpServlet;
 41  
 import javax.servlet.http.HttpServletRequest;
 42  
 import javax.servlet.http.HttpServletResponse;
 43  
 import java.awt.image.BufferedImage;
 44  
 import java.io.ByteArrayOutputStream;
 45  
 import java.io.IOException;
 46  
 
 47  
 /**
 48  
  * Servlet that serves up the JCaptcha image captcha.
 49  
  *
 50  
  * @author Simon Brown
 51  
  */
 52  0
 public class ImageCaptchaServlet extends HttpServlet {
 53  
 
 54  
   private static final long serialVersionUID = -6227490839816434342L;
 55  
 
 56  
   private static final String JPG_FORMAT = "JPG";
 57  
   
 58  
   /**
 59  
    * Called to initialise the servlet.
 60  
    *
 61  
    * @param servletConfig
 62  
    * @throws ServletException
 63  
    */
 64  
   public void init(ServletConfig servletConfig) throws ServletException {
 65  0
     super.init(servletConfig);
 66  0
   }
 67  
 
 68  
   /**
 69  
    * Called when a HTTP GET request is made to the servlet.
 70  
    *
 71  
    * @param httpServletRequest
 72  
    * @param httpServletResponse
 73  
    * @throws ServletException
 74  
    * @throws IOException
 75  
    */
 76  
   protected void doGet(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws ServletException, IOException {
 77  
     byte[] captchaChallengeAsJpeg;
 78  
     // the output stream to render the captcha image as jpeg into
 79  0
     ByteArrayOutputStream jpegOutputStream = new ByteArrayOutputStream();
 80  
     try {
 81  
       // get the session id that will identify the generated captcha.
 82  
       // the same id must be used to validate the response, the session id is a good candidate!
 83  0
       String captchaId = httpServletRequest.getSession().getId();
 84  
       // call the CaptchaService getChallenge method
 85  0
       BufferedImage challenge =
 86  
           CaptchaService.getInstance().getImageChallengeForID(captchaId,
 87  
               httpServletRequest.getLocale());
 88  
 
 89  0
       javax.imageio.ImageIO.write(challenge, JPG_FORMAT, jpegOutputStream);
 90  
       
 91  0
     } catch (IllegalArgumentException e) {
 92  0
       httpServletResponse.sendError(HttpServletResponse.SC_NOT_FOUND);
 93  0
       return;
 94  0
     } catch (CaptchaServiceException e) {
 95  0
       httpServletResponse.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
 96  0
       return;
 97  0
     }
 98  
 
 99  0
     captchaChallengeAsJpeg = jpegOutputStream.toByteArray();
 100  
 
 101  
     // flush it in the response
 102  0
     httpServletResponse.setHeader("Cache-Control", "no-store");
 103  0
     httpServletResponse.setHeader("Pragma", "no-cache");
 104  0
     httpServletResponse.setDateHeader("Expires", 0);
 105  0
     httpServletResponse.setContentType("image/jpeg");
 106  0
     ServletOutputStream responseOutputStream =
 107  
         httpServletResponse.getOutputStream();
 108  0
     responseOutputStream.write(captchaChallengeAsJpeg);
 109  0
     responseOutputStream.flush();
 110  0
     responseOutputStream.close();
 111  0
   }
 112  
 
 113  
 }