| 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.util.SecurityUtils; |
| 36 | |
import net.sourceforge.pebble.domain.*; |
| 37 | |
import net.sourceforge.pebble.web.view.View; |
| 38 | |
import net.sourceforge.pebble.web.view.impl.BlogEntriesByDayView; |
| 39 | |
|
| 40 | |
import javax.servlet.ServletException; |
| 41 | |
import javax.servlet.http.HttpServletRequest; |
| 42 | |
import javax.servlet.http.HttpServletResponse; |
| 43 | |
import java.util.List; |
| 44 | |
import java.util.ArrayList; |
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
|
| 49 | |
|
| 50 | |
|
| 51 | 8 | public class ViewDayAction extends Action { |
| 52 | |
|
| 53 | |
|
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | |
|
| 60 | |
public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException { |
| 61 | 0 | Blog blog = (Blog)request.getAttribute(Constants.BLOG_KEY); |
| 62 | 0 | String year = request.getParameter("year"); |
| 63 | 0 | String month = request.getParameter("month"); |
| 64 | 0 | String day = request.getParameter("day"); |
| 65 | |
|
| 66 | |
Day daily; |
| 67 | 0 | if (year != null && year.length() > 0 && |
| 68 | |
month != null && month.length() > 0 && |
| 69 | |
day != null && day.length() > 0) { |
| 70 | 0 | daily = blog.getBlogForDay(Integer.parseInt(year), Integer.parseInt(month), Integer.parseInt(day)); |
| 71 | |
} else { |
| 72 | 0 | daily = blog.getBlogForToday(); |
| 73 | |
} |
| 74 | |
|
| 75 | 0 | BlogService service = new BlogService(); |
| 76 | |
List<BlogEntry> blogEntries; |
| 77 | |
try { |
| 78 | 0 | blogEntries = service.getBlogEntries(blog, Integer.parseInt(year), Integer.parseInt(month), Integer.parseInt(day)); |
| 79 | 0 | } catch (BlogServiceException e) { |
| 80 | 0 | throw new ServletException(e); |
| 81 | 0 | } |
| 82 | |
|
| 83 | 0 | getModel().put(Constants.MONTHLY_BLOG, daily.getMonth()); |
| 84 | 0 | getModel().put(Constants.DAILY_BLOG, daily); |
| 85 | 0 | getModel().put(Constants.BLOG_ENTRIES, filter(blog, blogEntries)); |
| 86 | 0 | getModel().put("displayMode", "day"); |
| 87 | |
|
| 88 | |
|
| 89 | 0 | Day firstDay = blog.getBlogForFirstMonth().getBlogForFirstDay(); |
| 90 | 0 | Day previousDay = daily.getPreviousDay(); |
| 91 | 0 | Day nextDay = daily.getNextDay(); |
| 92 | |
|
| 93 | 0 | if (!previousDay.before(firstDay)) { |
| 94 | 0 | getModel().put("previousDay", previousDay); |
| 95 | |
} |
| 96 | |
|
| 97 | 0 | if (!nextDay.getDate().after(blog.getCalendar().getTime()) || nextDay.before(firstDay)) { |
| 98 | 0 | getModel().put("nextDay", nextDay); |
| 99 | |
} |
| 100 | |
|
| 101 | 0 | return new BlogEntriesByDayView(); |
| 102 | |
} |
| 103 | |
|
| 104 | |
private List<BlogEntry> filter(Blog blog, List<BlogEntry> blogEntries) { |
| 105 | 0 | List<BlogEntry> filtered = new ArrayList<BlogEntry>(); |
| 106 | |
|
| 107 | 0 | for (BlogEntry blogEntry : blogEntries) { |
| 108 | 0 | if ( |
| 109 | |
blogEntry.isPublished() || |
| 110 | |
( |
| 111 | |
(SecurityUtils.isUserAuthorisedForBlog(blog) && blogEntry.isUnpublished()) |
| 112 | |
) |
| 113 | |
) { |
| 114 | 0 | filtered.add(blogEntry); |
| 115 | |
} |
| 116 | |
} |
| 117 | |
|
| 118 | 0 | return filtered; |
| 119 | |
} |
| 120 | |
|
| 121 | |
} |