2 * Sone - GetTimesAjaxPage.java - Copyright © 2010–2012 David Roden
4 * This program is free software: you can redistribute it and/or modify it under
5 * the terms of the GNU General Public License as published by the Free Software
6 * Foundation, either version 3 of the License, or (at your option) any later
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.web.ajax;
20 import java.text.DateFormat;
21 import java.text.SimpleDateFormat;
22 import java.util.Date;
24 import net.pterodactylus.sone.data.Post;
25 import net.pterodactylus.sone.data.PostReply;
26 import net.pterodactylus.sone.web.WebInterface;
27 import net.pterodactylus.sone.web.page.FreenetRequest;
28 import net.pterodactylus.util.json.JsonObject;
29 import net.pterodactylus.util.number.Digits;
32 * Ajax page that returns a formatted, relative timestamp for replies or posts.
34 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
36 public class GetTimesAjaxPage extends JsonPage {
38 /** Formatter for tooltips. */
39 private static final DateFormat dateFormat = new SimpleDateFormat("MMM d, yyyy, HH:mm:ss");
42 * Creates a new get times AJAX page.
45 * The Sone web interface
47 public GetTimesAjaxPage(WebInterface webInterface) {
48 super("getTimes.ajax", webInterface);
55 protected JsonObject createJsonObject(FreenetRequest request) {
56 String allIds = request.getHttpRequest().getParam("posts");
57 JsonObject postTimes = new JsonObject();
58 if (allIds.length() > 0) {
59 String[] ids = allIds.split(",");
60 for (String id : ids) {
61 Post post = webInterface.getCore().getPost(id, false);
65 JsonObject postTime = new JsonObject();
66 Time time = getTime(post.getTime());
67 postTime.put("timeText", time.getText());
68 postTime.put("refreshTime", time.getRefresh() / Time.SECOND);
69 postTime.put("tooltip", dateFormat.format(new Date(post.getTime())));
70 postTimes.put(id, postTime);
73 JsonObject replyTimes = new JsonObject();
74 allIds = request.getHttpRequest().getParam("replies");
75 if (allIds.length() > 0) {
76 String[] ids = allIds.split(",");
77 for (String id : ids) {
78 PostReply reply = webInterface.getCore().getReply(id, false);
82 JsonObject replyTime = new JsonObject();
83 Time time = getTime(reply.getTime());
84 replyTime.put("timeText", time.getText());
85 replyTime.put("refreshTime", time.getRefresh() / Time.SECOND);
86 replyTime.put("tooltip", dateFormat.format(new Date(reply.getTime())));
87 replyTimes.put(id, replyTime);
90 return createSuccessJsonObject().put("postTimes", postTimes).put("replyTimes", replyTimes);
97 protected boolean needsFormPassword() {
105 protected boolean requiresLogin() {
114 * Returns the formatted relative time for a given time.
117 * The time to format the difference from (in milliseconds)
118 * @return The formatted age
120 private Time getTime(long time) {
121 return getTime(webInterface, time);
129 * Returns the formatted relative time for a given time.
131 * @param webInterface
132 * The Sone web interface (for l10n access)
134 * The time to format the difference from (in milliseconds)
135 * @return The formatted age
137 public static Time getTime(WebInterface webInterface, long time) {
139 return new Time(webInterface.getL10n().getString("View.Sone.Text.UnknownDate"), 12 * Time.HOUR);
141 long age = System.currentTimeMillis() - time;
145 text = webInterface.getL10n().getDefaultString("View.Time.InTheFuture");
146 refresh = 5 * Time.MINUTE;
147 } else if (age < 20 * Time.SECOND) {
148 text = webInterface.getL10n().getDefaultString("View.Time.AFewSecondsAgo");
149 refresh = 10 * Time.SECOND;
150 } else if (age < 45 * Time.SECOND) {
151 text = webInterface.getL10n().getString("View.Time.HalfAMinuteAgo");
152 refresh = 20 * Time.SECOND;
153 } else if (age < 90 * Time.SECOND) {
154 text = webInterface.getL10n().getString("View.Time.AMinuteAgo");
155 refresh = Time.MINUTE;
156 } else if (age < 30 * Time.MINUTE) {
157 text = webInterface.getL10n().getString("View.Time.XMinutesAgo", "min", String.valueOf((int) (Digits.round(age, Time.MINUTE) / Time.MINUTE)));
158 refresh = 1 * Time.MINUTE;
159 } else if (age < 45 * Time.MINUTE) {
160 text = webInterface.getL10n().getString("View.Time.HalfAnHourAgo");
161 refresh = 10 * Time.MINUTE;
162 } else if (age < 90 * Time.MINUTE) {
163 text = webInterface.getL10n().getString("View.Time.AnHourAgo");
165 } else if (age < 21 * Time.HOUR) {
166 text = webInterface.getL10n().getString("View.Time.XHoursAgo", "hour", String.valueOf((int) (Digits.round(age, Time.HOUR) / Time.HOUR)));
168 } else if (age < 42 * Time.HOUR) {
169 text = webInterface.getL10n().getString("View.Time.ADayAgo");
171 } else if (age < 6 * Time.DAY) {
172 text = webInterface.getL10n().getString("View.Time.XDaysAgo", "day", String.valueOf((int) (Digits.round(age, Time.DAY) / Time.DAY)));
174 } else if (age < 11 * Time.DAY) {
175 text = webInterface.getL10n().getString("View.Time.AWeekAgo");
177 } else if (age < 4 * Time.WEEK) {
178 text = webInterface.getL10n().getString("View.Time.XWeeksAgo", "week", String.valueOf((int) (Digits.round(age, Time.WEEK) / Time.WEEK)));
180 } else if (age < 6 * Time.WEEK) {
181 text = webInterface.getL10n().getString("View.Time.AMonthAgo");
183 } else if (age < 11 * Time.MONTH) {
184 text = webInterface.getL10n().getString("View.Time.XMonthsAgo", "month", String.valueOf((int) (Digits.round(age, Time.MONTH) / Time.MONTH)));
186 } else if (age < 18 * Time.MONTH) {
187 text = webInterface.getL10n().getString("View.Time.AYearAgo");
190 text = webInterface.getL10n().getString("View.Time.XYearsAgo", "year", String.valueOf((int) (Digits.round(age, Time.YEAR) / Time.YEAR)));
193 return new Time(text, refresh);
197 * Container for a formatted time.
199 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
201 public static class Time {
203 /** Number of milliseconds in a second. */
204 private static final long SECOND = 1000;
206 /** Number of milliseconds in a minute. */
207 private static final long MINUTE = 60 * SECOND;
209 /** Number of milliseconds in an hour. */
210 private static final long HOUR = 60 * MINUTE;
212 /** Number of milliseconds in a day. */
213 private static final long DAY = 24 * HOUR;
215 /** Number of milliseconds in a week. */
216 private static final long WEEK = 7 * DAY;
218 /** Number of milliseconds in a 30-day month. */
219 private static final long MONTH = 30 * DAY;
221 /** Number of milliseconds in a year. */
222 private static final long YEAR = 365 * DAY;
224 /** The formatted time. */
225 private final String text;
227 /** The time after which to refresh the time. */
228 private final long refresh;
231 * Creates a new formatted time container.
236 * The time after which to refresh the time (in milliseconds)
238 public Time(String text, long refresh) {
240 this.refresh = refresh;
244 * Returns the formatted time.
246 * @return The formatted time
248 public String getText() {
253 * Returns the time after which to refresh the time.
255 * @return The time after which to refresh the time (in milliseconds)
257 public long getRefresh() {
265 public String toString() {