| 1 |  |  | 
            
  
    | 2 |  |  | 
            
  
    | 3 |  |  | 
            
  
    | 4 |  |  | 
            
  
    | 5 |  |  | 
            
  
    | 6 |  |  | 
            
  
    | 7 |  |  | 
            
  
    | 8 |  |  | 
            
  
    | 9 |  |  | 
            
  
    | 10 |  |  | 
            
  
    | 11 |  |  | 
            
  
    | 12 |  |  | 
            
  
    | 13 |  |  | 
            
  
    | 14 |  |  | 
            
  
    | 15 |  |  | 
            
  
    | 16 |  |  | 
            
  
    | 17 |  |  | 
            
  
    | 18 |  |  | 
            
  
    | 19 |  |  | 
            
  
    | 20 |  |  | 
            
  
    | 21 |  |  | 
            
  
    | 22 |  |  | 
            
  
    | 23 |  |  | 
            
  
    | 24 |  |  | 
            
  
    | 25 |  |  | 
            
  
    | 26 |  |  | 
            
  
    | 27 |  |  | 
            
  
    | 28 |  |  | 
            
  
    | 29 |  |  | 
            
  
    | 30 |  |  | 
            
  
    | 31 |  |  | 
            
  
    | 32 |  | package net.sourceforge.pebble.web.action; | 
            
  
    | 33 |  |  | 
            
  
    | 34 |  | import net.sourceforge.pebble.Constants; | 
            
  
    | 35 |  | import net.sourceforge.pebble.domain.*; | 
            
  
    | 36 |  | import net.sourceforge.pebble.web.view.NotModifiedView; | 
            
  
    | 37 |  | import net.sourceforge.pebble.web.view.View; | 
            
  
    | 38 |  | import net.sourceforge.pebble.web.view.impl.*; | 
            
  
    | 39 |  |  | 
            
  
    | 40 |  | import javax.servlet.ServletException; | 
            
  
    | 41 |  | import javax.servlet.http.HttpServletRequest; | 
            
  
    | 42 |  | import javax.servlet.http.HttpServletResponse; | 
            
  
    | 43 |  | import java.text.SimpleDateFormat; | 
            
  
    | 44 |  | import java.util.*; | 
            
  
    | 45 |  |  | 
            
  
    | 46 |  |  | 
            
  
    | 47 |  |  | 
            
  
    | 48 |  |  | 
            
  
    | 49 |  | @author | 
            
  
    | 50 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 79 (79) | Complexity: 21 | Complexity Density: 0,4 |  | 
  
  
    | 51 |  | public class ResponseFeedAction extends Action { | 
            
  
    | 52 |  |  | 
            
  
    | 53 |  |  | 
            
  
    | 54 |  |  | 
            
  
    | 55 |  |  | 
            
  
    | 56 |  | @param | 
            
  
    | 57 |  | @param | 
            
  
    | 58 |  | @return | 
            
  
    | 59 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 54 (54) | Complexity: 15 | Complexity Density: 0,39 |  | 
  
  
    | 60 | 0 |  public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException {... | 
            
  
    | 61 | 0 | Blog blog = (Blog)getModel().get(Constants.BLOG_KEY); | 
            
  
    | 62 | 0 | String flavor = request.getParameter("flavor"); | 
            
  
    | 63 |  |  | 
            
  
    | 64 | 0 | SimpleDateFormat httpFormat = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z"); | 
            
  
    | 65 | 0 | httpFormat.setTimeZone(TimeZone.getTimeZone("GMT")); | 
            
  
    | 66 |  |  | 
            
  
    | 67 | 0 | String ifModifiedSince = request.getHeader("If-Modified-Since"); | 
            
  
    | 68 | 0 | String ifNoneMatch = request.getHeader("If-None-Match"); | 
            
  
    | 69 |  |  | 
            
  
    | 70 | 0 | if (flavor != null && flavor.equalsIgnoreCase("atom")) { | 
            
  
    | 71 | 0 | response.setContentType("application/atom+xml; charset=" + blog.getCharacterEncoding()); | 
            
  
    | 72 |  | } else { | 
            
  
    | 73 | 0 | response.setContentType("application/xml; charset=" + blog.getCharacterEncoding()); | 
            
  
    | 74 |  | } | 
            
  
    | 75 |  |  | 
            
  
    | 76 | 0 | Date lastModified = blog.getLastModified(); | 
            
  
    | 77 | 0 | response.setDateHeader("Last-Modified", lastModified.getTime()); | 
            
  
    | 78 | 0 | response.setHeader("ETag", "\"" + httpFormat.format(lastModified) + "\""); | 
            
  
    | 79 |  |  | 
            
  
    | 80 | 0 | if (ifModifiedSince != null && ifModifiedSince.equals(httpFormat.format(lastModified))) { | 
            
  
    | 81 | 0 | return new NotModifiedView(); | 
            
  
    | 82 | 0 | } else if (ifNoneMatch != null && ifNoneMatch.equals("\"" + httpFormat.format(lastModified) + "\"")) { | 
            
  
    | 83 | 0 | return new NotModifiedView(); | 
            
  
    | 84 |  | } else { | 
            
  
    | 85 | 0 | List responses = new ArrayList(); | 
            
  
    | 86 |  |  | 
            
  
    | 87 | 0 | String entryId = request.getParameter("entry"); | 
            
  
    | 88 | 0 | if (entryId != null) { | 
            
  
    | 89 | 0 | BlogService service = new BlogService(); | 
            
  
    | 90 | 0 | BlogEntry blogEntry = null; | 
            
  
    | 91 | 0 | try { | 
            
  
    | 92 | 0 | blogEntry = service.getBlogEntry(blog, entryId); | 
            
  
    | 93 |  | } catch (BlogServiceException e) { | 
            
  
    | 94 | 0 | throw new ServletException(e); | 
            
  
    | 95 |  | } | 
            
  
    | 96 | 0 | if (blogEntry != null && blogEntry.isPublished()) { | 
            
  
    | 97 | 0 | getModel().put(Constants.BLOG_ENTRY_KEY, blogEntry); | 
            
  
    | 98 | 0 | for (Response r : blogEntry.getResponses()) { | 
            
  
    | 99 | 0 | if (r.isApproved()) { | 
            
  
    | 100 | 0 | responses.add(r); | 
            
  
    | 101 |  | } | 
            
  
    | 102 |  | } | 
            
  
    | 103 |  | } | 
            
  
    | 104 |  | } else { | 
            
  
    | 105 | 0 | responses = new ArrayList(blog.getRecentApprovedResponses()); | 
            
  
    | 106 |  | } | 
            
  
    | 107 |  |  | 
            
  
    | 108 | 0 | int numberOfResponses = blog.getRecentResponsesOnHomePage(); | 
            
  
    | 109 |  |  | 
            
  
    | 110 | 0 | if (responses.size() > numberOfResponses) { | 
            
  
    | 111 | 0 | responses = responses.subList(0, numberOfResponses); | 
            
  
    | 112 |  | } | 
            
  
    | 113 |  |  | 
            
  
    | 114 | 0 | getModel().put(Constants.RESPONSES, responses); | 
            
  
    | 115 |  |  | 
            
  
    | 116 |  |  | 
            
  
    | 117 | 0 | javax.servlet.jsp.jstl.core.Config.set( | 
            
  
    | 118 |  | request, | 
            
  
    | 119 |  | javax.servlet.jsp.jstl.core.Config.FMT_LOCALE, | 
            
  
    | 120 |  | Locale.ENGLISH); | 
            
  
    | 121 |  |  | 
            
  
    | 122 | 0 | if (flavor != null && flavor.equalsIgnoreCase("atom")) { | 
            
  
    | 123 | 0 | return new AtomResponsesView(); | 
            
  
    | 124 |  | } else { | 
            
  
    | 125 | 0 | return new RssResponsesView(); | 
            
  
    | 126 |  | } | 
            
  
    | 127 |  | } | 
            
  
    | 128 |  | } | 
            
  
    | 129 |  |  | 
            
  
    | 130 |  |  | 
            
  
    | 131 |  |  | 
            
  
    | 132 |  |  | 
            
  
    | 133 |  | @param | 
            
  
    | 134 |  | @param | 
            
  
    | 135 |  | @return | 
            
  
    | 136 |  |  | 
            
  
    | 137 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 11 (11) | Complexity: 3 | Complexity Density: 0,43 |  | 
  
  
    | 138 | 0 |  private Tag getTag(AbstractBlog abstractBlog, HttpServletRequest request) {... | 
            
  
    | 139 | 0 | if (abstractBlog instanceof MultiBlog) { | 
            
  
    | 140 |  |  | 
            
  
    | 141 | 0 | return null; | 
            
  
    | 142 |  | } else { | 
            
  
    | 143 | 0 | Blog blog = (Blog)abstractBlog; | 
            
  
    | 144 |  |  | 
            
  
    | 145 | 0 | String tag = request.getParameter("tag"); | 
            
  
    | 146 | 0 | if (tag != null) { | 
            
  
    | 147 | 0 | return new Tag(tag, blog); | 
            
  
    | 148 |  | } else { | 
            
  
    | 149 | 0 | return null; | 
            
  
    | 150 |  | } | 
            
  
    | 151 |  | } | 
            
  
    | 152 |  | } | 
            
  
    | 153 |  |  | 
            
  
    | 154 |  |  | 
            
  
    | 155 |  |  | 
            
  
    | 156 |  |  | 
            
  
    | 157 |  | @param | 
            
  
    | 158 |  | @param | 
            
  
    | 159 |  | @return | 
            
  
    | 160 |  |  | 
            
  
    | 161 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 11 (11) | Complexity: 3 | Complexity Density: 0,43 |  | 
  
  
    | 162 | 0 |  private Category getCategory(AbstractBlog abstractBlog, HttpServletRequest request) {... | 
            
  
    | 163 | 0 | if (abstractBlog instanceof MultiBlog) { | 
            
  
    | 164 |  |  | 
            
  
    | 165 | 0 | return null; | 
            
  
    | 166 |  | } else { | 
            
  
    | 167 | 0 | Blog blog = (Blog)abstractBlog; | 
            
  
    | 168 |  |  | 
            
  
    | 169 | 0 | String categoryId = request.getParameter("category"); | 
            
  
    | 170 | 0 | if (categoryId != null) { | 
            
  
    | 171 | 0 | return blog.getCategory(categoryId); | 
            
  
    | 172 |  | } else { | 
            
  
    | 173 | 0 | return null; | 
            
  
    | 174 |  | } | 
            
  
    | 175 |  | } | 
            
  
    | 176 |  | } | 
            
  
    | 177 |  |  | 
            
  
    | 178 |  | } |