| 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.Blog; |
| 36 | |
import net.sourceforge.pebble.domain.Month; |
| 37 | |
import net.sourceforge.pebble.logging.LogSummary; |
| 38 | |
import net.sourceforge.pebble.web.view.View; |
| 39 | |
import net.sourceforge.pebble.web.view.impl.LogSummaryByMonthView; |
| 40 | |
import net.sourceforge.pebble.web.view.impl.LogSummaryByYearView; |
| 41 | |
|
| 42 | |
import javax.servlet.ServletException; |
| 43 | |
import javax.servlet.http.HttpServletRequest; |
| 44 | |
import javax.servlet.http.HttpServletResponse; |
| 45 | |
import java.text.SimpleDateFormat; |
| 46 | |
import java.util.Calendar; |
| 47 | |
import java.util.Locale; |
| 48 | |
|
| 49 | |
|
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | 0 | public class ViewLogSummaryAction extends SecureAction { |
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | |
|
| 60 | |
|
| 61 | |
|
| 62 | |
|
| 63 | |
public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException { |
| 64 | 0 | Blog blog = (Blog)getModel().get(Constants.BLOG_KEY); |
| 65 | |
|
| 66 | 0 | String yearAsStriing = request.getParameter("year"); |
| 67 | 0 | String monthAsString = request.getParameter("month"); |
| 68 | |
|
| 69 | 0 | Calendar cal = blog.getCalendar(); |
| 70 | |
LogSummary logSummary; |
| 71 | |
View view; |
| 72 | |
|
| 73 | 0 | if (yearAsStriing != null && yearAsStriing.length() > 0 && |
| 74 | |
monthAsString != null && monthAsString.length() > 0) { |
| 75 | 0 | int year = Integer.parseInt(yearAsStriing); |
| 76 | 0 | int month = Integer.parseInt(monthAsString)-1; |
| 77 | 0 | cal.set(Calendar.YEAR, year); |
| 78 | 0 | cal.set(Calendar.MONTH, month); |
| 79 | 0 | logSummary = blog.getLogger().getLogSummary(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH)+1); |
| 80 | 0 | view = new LogSummaryByMonthView(); |
| 81 | 0 | registerObjectsForNavigation(blog, blog.getBlogForMonth(year, month+1)); |
| 82 | 0 | } else if (yearAsStriing != null && yearAsStriing.length() > 0) { |
| 83 | 0 | cal.set(Calendar.YEAR, Integer.parseInt(yearAsStriing)); |
| 84 | 0 | logSummary = blog.getLogger().getLogSummary(cal.get(Calendar.YEAR)); |
| 85 | 0 | view = new LogSummaryByYearView(); |
| 86 | |
} else { |
| 87 | |
|
| 88 | 0 | logSummary = blog.getLogger().getLogSummary(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH)+1); |
| 89 | 0 | view = new LogSummaryByMonthView(); |
| 90 | 0 | registerObjectsForNavigation(blog, blog.getBlogForThisMonth()); |
| 91 | |
} |
| 92 | |
|
| 93 | 0 | SimpleDateFormat yearFormatter = new SimpleDateFormat("yyyy", Locale.ENGLISH); |
| 94 | 0 | yearFormatter.setTimeZone(blog.getTimeZone()); |
| 95 | 0 | SimpleDateFormat monthFormatter = new SimpleDateFormat("MM", Locale.ENGLISH); |
| 96 | 0 | monthFormatter.setTimeZone(blog.getTimeZone()); |
| 97 | 0 | SimpleDateFormat dayFormatter = new SimpleDateFormat("dd", Locale.ENGLISH); |
| 98 | 0 | dayFormatter.setTimeZone(blog.getTimeZone()); |
| 99 | 0 | getModel().put("year", yearFormatter.format(logSummary.getDate())); |
| 100 | 0 | getModel().put("month", monthFormatter.format(logSummary.getDate())); |
| 101 | |
|
| 102 | 0 | getModel().put("logAction", "viewLogSummary"); |
| 103 | 0 | getModel().put("logSummary", logSummary); |
| 104 | |
|
| 105 | 0 | return view; |
| 106 | |
} |
| 107 | |
|
| 108 | |
private void registerObjectsForNavigation(Blog blog, Month month) { |
| 109 | 0 | Month firstMonth = blog.getBlogForFirstMonth(); |
| 110 | 0 | Month previousMonth = month.getPreviousMonth(); |
| 111 | 0 | Month nextMonth = month.getNextMonth(); |
| 112 | |
|
| 113 | 0 | if (!previousMonth.before(firstMonth)) { |
| 114 | 0 | getModel().put("previousMonth", previousMonth); |
| 115 | |
} |
| 116 | |
|
| 117 | 0 | if (!nextMonth.getDate().after(blog.getCalendar().getTime()) || nextMonth.before(firstMonth)) { |
| 118 | 0 | getModel().put("nextMonth", nextMonth); |
| 119 | |
} |
| 120 | 0 | getModel().put("displayMode", "logSummaryForMonth"); |
| 121 | 0 | } |
| 122 | |
|
| 123 | |
|
| 124 | |
|
| 125 | |
|
| 126 | |
|
| 127 | |
|
| 128 | |
|
| 129 | |
public String[] getRoles(HttpServletRequest request) { |
| 130 | 0 | return new String[]{Constants.BLOG_ADMIN_ROLE, Constants.BLOG_OWNER_ROLE, Constants.BLOG_PUBLISHER_ROLE, Constants.BLOG_CONTRIBUTOR_ROLE}; |
| 131 | |
} |
| 132 | |
|
| 133 | |
} |