summaryrefslogtreecommitdiffstats
path: root/java/com/google/gerrit/extensions/systemstatus/MessageOfTheDay.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/gerrit/extensions/systemstatus/MessageOfTheDay.java')
-rw-r--r--java/com/google/gerrit/extensions/systemstatus/MessageOfTheDay.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/java/com/google/gerrit/extensions/systemstatus/MessageOfTheDay.java b/java/com/google/gerrit/extensions/systemstatus/MessageOfTheDay.java
new file mode 100644
index 0000000000..180a0e6635
--- /dev/null
+++ b/java/com/google/gerrit/extensions/systemstatus/MessageOfTheDay.java
@@ -0,0 +1,63 @@
+// Copyright (C) 2014 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.google.gerrit.extensions.systemstatus;
+
+import com.google.gerrit.extensions.annotations.ExtensionPoint;
+import java.util.Calendar;
+import java.util.Date;
+import java.util.TimeZone;
+
+/**
+ * Supplies a message of the day when the page is first loaded.
+ *
+ * <pre>
+ * DynamicSet.bind(binder(), MessageOfTheDay.class).to(MyMessage.class);
+ * </pre>
+ */
+@ExtensionPoint
+public abstract class MessageOfTheDay {
+ /**
+ * Retrieve the message of the day as an HTML fragment.
+ *
+ * @return message as an HTML fragment; null if no message is available.
+ */
+ public abstract String getHtmlMessage();
+
+ /**
+ * Unique identifier for this message.
+ *
+ * <p>Messages with the same identifier will be hidden from the user until redisplay has occurred.
+ *
+ * @return unique message identifier. This identifier should be unique within the server.
+ */
+ public abstract String getMessageId();
+
+ /**
+ * When should the message be displayed?
+ *
+ * <p>Default implementation returns {@code tomorrow at 00:00:00 GMT}.
+ *
+ * @return a future date after which the message should be redisplayed.
+ */
+ public Date getRedisplay() {
+ Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
+ cal.set(Calendar.HOUR_OF_DAY, 0);
+ cal.set(Calendar.MINUTE, 0);
+ cal.set(Calendar.SECOND, 0);
+ cal.set(Calendar.MILLISECOND, 0);
+ cal.add(Calendar.DAY_OF_MONTH, 1);
+ return cal.getTime();
+ }
+}