| 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.util.SecurityUtils; | 
            
  
    | 37 |  | import net.sourceforge.pebble.util.Pageable; | 
            
  
    | 38 |  | import net.sourceforge.pebble.web.view.RedirectView; | 
            
  
    | 39 |  | import net.sourceforge.pebble.web.view.View; | 
            
  
    | 40 |  | import net.sourceforge.pebble.web.view.impl.BlogEntriesView; | 
            
  
    | 41 |  |  | 
            
  
    | 42 |  | import javax.servlet.ServletException; | 
            
  
    | 43 |  | import javax.servlet.http.HttpServletRequest; | 
            
  
    | 44 |  | import javax.servlet.http.HttpServletResponse; | 
            
  
    | 45 |  | import java.util.List; | 
            
  
    | 46 |  |  | 
            
  
    | 47 |  |  | 
            
  
    | 48 |  |  | 
            
  
    | 49 |  |  | 
            
  
    | 50 |  |  | 
            
  
    | 51 |  | @author | 
            
  
    | 52 |  |  | 
               
        |  |  | 
           
           |  | 66,7% | Uncovered Elements: 13 (39) | Complexity: 6 | Complexity Density: 0,2 |  | 
  
  
    | 53 |  | public class ViewBlogEntriesByPageAction extends Action { | 
            
  
    | 54 |  |  | 
            
  
    | 55 |  |  | 
            
  
    | 56 |  |  | 
            
  
    | 57 |  |  | 
            
  
    | 58 |  | @param | 
            
  
    | 59 |  | @param | 
            
  
    | 60 |  | @return | 
            
  
    | 61 |  |  | 
               
        |  |  | 
           
           |  | 65,8% | Uncovered Elements: 13 (38) | Complexity: 6 | Complexity Density: 0,2 |  | 
  
  
    | 62 | 2 |  public View process(HttpServletRequest request,... | 
            
  
    | 63 |  | HttpServletResponse response) | 
            
  
    | 64 |  | throws ServletException { | 
            
  
    | 65 |  |  | 
            
  
    | 66 | 2 | AbstractBlog abstractBlog = (AbstractBlog)getModel().get(Constants.BLOG_KEY); | 
            
  
    | 67 |  |  | 
            
  
    | 68 | 2 | if (abstractBlog instanceof MultiBlog) { | 
            
  
    | 69 | 0 | List publicBlogs = BlogManager.getInstance().getPublicBlogs(); | 
            
  
    | 70 | 0 | if (publicBlogs.size() == 1) { | 
            
  
    | 71 | 0 | Blog blog = (Blog)publicBlogs.get(0); | 
            
  
    | 72 | 0 | return new RedirectView(blog.getUrl()); | 
            
  
    | 73 |  | } else { | 
            
  
    | 74 | 0 | getModel().put(Constants.BLOG_ENTRIES, abstractBlog.getRecentBlogEntries()); | 
            
  
    | 75 |  |  | 
            
  
    | 76 | 0 | return new BlogEntriesView(); | 
            
  
    | 77 |  | } | 
            
  
    | 78 |  | } else { | 
            
  
    | 79 | 2 | Blog blog = (Blog)abstractBlog; | 
            
  
    | 80 | 2 | int page = 1; | 
            
  
    | 81 | 2 | try { | 
            
  
    | 82 | 2 | page = Integer.parseInt(request.getParameter("page")); | 
            
  
    | 83 |  | } catch (NumberFormatException nfe) { | 
            
  
    | 84 | 2 | page = 1; | 
            
  
    | 85 |  | } | 
            
  
    | 86 | 2 | boolean publishedOnly = true; | 
            
  
    | 87 | 2 | if (SecurityUtils.isUserAuthorisedForBlog(blog)) { | 
            
  
    | 88 | 0 | publishedOnly = false; | 
            
  
    | 89 |  | } | 
            
  
    | 90 |  |  | 
            
  
    | 91 | 2 | getModel().put(Constants.MONTHLY_BLOG, blog.getBlogForThisMonth()); | 
            
  
    | 92 | 2 | getModel().put("displayMode", "page"); | 
            
  
    | 93 | 2 | getModel().put("page", page); | 
            
  
    | 94 |  |  | 
            
  
    | 95 | 2 | Pageable<String> pageable; | 
            
  
    | 96 | 2 | if (publishedOnly) { | 
            
  
    | 97 | 2 | pageable = new Pageable<String>(blog.getBlogEntryIndex().getPublishedBlogEntries()); | 
            
  
    | 98 |  | } else { | 
            
  
    | 99 | 0 | pageable = new Pageable<String>(blog.getBlogEntryIndex().getBlogEntries()); | 
            
  
    | 100 |  | } | 
            
  
    | 101 |  |  | 
            
  
    | 102 | 2 | pageable.setPageSize(blog.getRecentBlogEntriesOnHomePage()); | 
            
  
    | 103 | 2 | pageable.setPage(page); | 
            
  
    | 104 | 2 | List<String> blogEntryIds = pageable.getListForPage(); | 
            
  
    | 105 | 2 | List<BlogEntry> blogEntries = blog.getBlogEntries(blogEntryIds); | 
            
  
    | 106 |  |  | 
            
  
    | 107 | 2 | getModel().put(Constants.BLOG_ENTRIES, blogEntries); | 
            
  
    | 108 | 2 | getModel().put("pageable", pageable); | 
            
  
    | 109 |  |  | 
            
  
    | 110 | 2 | return new BlogEntriesView(); | 
            
  
    | 111 |  | } | 
            
  
    | 112 |  | } | 
            
  
    | 113 |  |  | 
            
  
    | 114 |  | } |