| 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 | |
|
| 52 | |
|
| 53 | 4 | public class ViewBlogEntriesByPageAction extends Action { |
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | |
|
| 60 | |
|
| 61 | |
|
| 62 | |
public View process(HttpServletRequest request, |
| 63 | |
HttpServletResponse response) |
| 64 | |
throws ServletException { |
| 65 | |
|
| 66 | 4 | AbstractBlog abstractBlog = (AbstractBlog)getModel().get(Constants.BLOG_KEY); |
| 67 | |
|
| 68 | 4 | 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 | 4 | Blog blog = (Blog)abstractBlog; |
| 80 | 4 | int page = 1; |
| 81 | |
try { |
| 82 | 4 | page = Integer.parseInt(request.getParameter("page")); |
| 83 | 4 | } catch (NumberFormatException nfe) { |
| 84 | 4 | page = 1; |
| 85 | 0 | } |
| 86 | 4 | boolean publishedOnly = true; |
| 87 | 4 | if (SecurityUtils.isUserAuthorisedForBlog(blog)) { |
| 88 | 0 | publishedOnly = false; |
| 89 | |
} |
| 90 | |
|
| 91 | 4 | getModel().put(Constants.MONTHLY_BLOG, blog.getBlogForThisMonth()); |
| 92 | 4 | getModel().put("displayMode", "page"); |
| 93 | 4 | getModel().put("page", page); |
| 94 | |
|
| 95 | |
Pageable<String> pageable; |
| 96 | 4 | if (publishedOnly) { |
| 97 | 4 | pageable = new Pageable<String>(blog.getBlogEntryIndex().getPublishedBlogEntries()); |
| 98 | |
} else { |
| 99 | 0 | pageable = new Pageable<String>(blog.getBlogEntryIndex().getBlogEntries()); |
| 100 | |
} |
| 101 | |
|
| 102 | 4 | pageable.setPageSize(blog.getRecentBlogEntriesOnHomePage()); |
| 103 | 4 | pageable.setPage(page); |
| 104 | 4 | List<String> blogEntryIds = pageable.getListForPage(); |
| 105 | 4 | List<BlogEntry> blogEntries = blog.getBlogEntries(blogEntryIds); |
| 106 | |
|
| 107 | 4 | getModel().put(Constants.BLOG_ENTRIES, blogEntries); |
| 108 | 4 | getModel().put("pageable", pageable); |
| 109 | |
|
| 110 | 4 | return new BlogEntriesView(); |
| 111 | |
} |
| 112 | |
} |
| 113 | |
|
| 114 | |
} |