Change comments.
[rhynodge.git] / src / main / java / net / pterodactylus / rhynodge / triggers / NewTorrentTrigger.java
index 2803bb5..9e3e91e 100644 (file)
@@ -20,6 +20,7 @@ package net.pterodactylus.rhynodge.triggers;
 import static com.google.common.base.Preconditions.checkState;
 
 import java.util.List;
+import java.util.Set;
 
 import net.pterodactylus.rhynodge.Reaction;
 import net.pterodactylus.rhynodge.State;
@@ -32,6 +33,7 @@ import net.pterodactylus.rhynodge.states.TorrentState.TorrentFile;
 import org.apache.commons.lang3.StringEscapeUtils;
 
 import com.google.common.collect.Lists;
+import com.google.common.collect.Sets;
 
 /**
  * {@link Trigger} implementation that is triggered by {@link TorrentFile}s that
@@ -41,30 +43,44 @@ import com.google.common.collect.Lists;
  */
 public class NewTorrentTrigger implements Trigger {
 
+       /** All known torrents. */
+       private final Set<TorrentFile> allTorrentFiles = Sets.newHashSet();
+
        /** The newly detected torrent files. */
-       private List<TorrentFile> torrentFiles = Lists.newArrayList();
+       private final List<TorrentFile> newTorrentFiles = Lists.newArrayList();
 
        //
        // TRIGGER METHODS
        //
 
        /**
-        * {@inheritDoc}
+        * {@inheritDocs}
         */
        @Override
-       public boolean triggers(State currentState, State previousState) {
+       public State mergeStates(State previousState, State currentState) {
                checkState(currentState instanceof TorrentState, "currentState is not a TorrentState but a %s", currentState.getClass().getName());
                checkState(previousState instanceof TorrentState, "previousState is not a TorrentState but a %s", currentState.getClass().getName());
                TorrentState currentTorrentState = (TorrentState) currentState;
                TorrentState previousTorrentState = (TorrentState) previousState;
-               torrentFiles.clear();
+
+               allTorrentFiles.clear();
+               newTorrentFiles.clear();
+               allTorrentFiles.addAll(previousTorrentState.torrentFiles());
                for (TorrentFile torrentFile : currentTorrentState) {
-                       torrentFiles.add(torrentFile);
-               }
-               for (TorrentFile torrentFile : previousTorrentState) {
-                       torrentFiles.remove(torrentFile);
+                       if (allTorrentFiles.add(torrentFile)) {
+                               newTorrentFiles.add(torrentFile);
+                       }
                }
-               return !torrentFiles.isEmpty();
+
+               return new TorrentState(allTorrentFiles);
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       public boolean triggers() {
+               return !newTorrentFiles.isEmpty();
        }
 
        /**
@@ -72,27 +88,27 @@ public class NewTorrentTrigger implements Trigger {
         */
        @Override
        public Output output(Reaction reaction) {
-               DefaultOutput output = new DefaultOutput(String.format("Found %d new Torrent(s) for “%s!”", torrentFiles.size(), reaction.name()));
-               output.addText("text/plain", getPlainTextList(torrentFiles));
-               output.addText("text/html", getHtmlTextList(torrentFiles));
+               DefaultOutput output = new DefaultOutput(String.format("Found %d new Torrent(s) for “%s!”", newTorrentFiles.size(), reaction.name()));
+               output.addText("text/plain", getPlainTextList(reaction));
+               output.addText("text/html", getHtmlTextList(reaction));
                return output;
        }
 
        //
-       // STATIC METHODS
+       // PRIVATE METHODS
        //
 
        /**
         * Generates a plain text list of torrent files.
         *
-        * @param torrentFiles
-        *            The torrent files to list
+        * @param reaction
+        *            The reaction that was triggered
         * @return The generated plain text
         */
-       private static String getPlainTextList(List<TorrentFile> torrentFiles) {
+       private String getPlainTextList(Reaction reaction) {
                StringBuilder plainText = new StringBuilder();
                plainText.append("New Torrents:\n\n");
-               for (TorrentFile torrentFile : torrentFiles) {
+               for (TorrentFile torrentFile : newTorrentFiles) {
                        plainText.append(torrentFile.name()).append('\n');
                        plainText.append('\t').append(torrentFile.size()).append(" in ").append(torrentFile.fileCount()).append(" file(s)\n");
                        plainText.append('\t').append(torrentFile.seedCount()).append(" seed(s), ").append(torrentFile.leechCount()).append(" leecher(s)\n");
@@ -110,29 +126,45 @@ public class NewTorrentTrigger implements Trigger {
        /**
         * Generates an HTML list of the given torrent files.
         *
-        * @param torrentFiles
-        *            The torrent files to list
+        * @param reaction
+        *            The reaction that was triggered
         * @return The generated HTML
         */
-       private static String getHtmlTextList(List<TorrentFile> torrentFiles) {
-               StringBuilder htmlText = new StringBuilder();
-               htmlText.append("<html><body>\n");
-               htmlText.append("<h1>New Torrents</h1>\n");
-               htmlText.append("<ul>\n");
-               for (TorrentFile torrentFile : torrentFiles) {
-                       htmlText.append("<li><strong>").append(StringEscapeUtils.escapeHtml4(torrentFile.name())).append("</strong></li>");
-                       htmlText.append("<div>Size: <strong>").append(StringEscapeUtils.escapeHtml4(torrentFile.size())).append("</strong> in <strong>").append(torrentFile.fileCount()).append("</strong> file(s)</div>");
-                       htmlText.append("<div><strong>").append(torrentFile.seedCount()).append("</strong> seed(s), <strong>").append(torrentFile.leechCount()).append("</strong> leecher(s)</div>");
-                       if ((torrentFile.magnetUri() != null) && (torrentFile.magnetUri().length() > 0)) {
-                               htmlText.append(String.format("<div><a href=\"%s\">Magnet URI</a></div>", StringEscapeUtils.escapeHtml4(torrentFile.magnetUri())));
-                       }
-                       if ((torrentFile.downloadUri() != null) && (torrentFile.downloadUri().length() > 0)) {
-                               htmlText.append(String.format("<div><a href=\"%s\">Download URI</a></div>", StringEscapeUtils.escapeHtml4(torrentFile.downloadUri())));
+       private String getHtmlTextList(Reaction reaction) {
+               StringBuilder htmlBuilder = new StringBuilder();
+               htmlBuilder.append("<html><body>\n");
+               htmlBuilder.append("<table>\n<caption>All Known Torrents</caption>\n");
+               htmlBuilder.append("<thead>\n");
+               htmlBuilder.append("<tr>");
+               htmlBuilder.append("<th>Filename</th>");
+               htmlBuilder.append("<th>Size</th>");
+               htmlBuilder.append("<th>File(s)</th>");
+               htmlBuilder.append("<th>Seeds</th>");
+               htmlBuilder.append("<th>Leechers</th>");
+               htmlBuilder.append("<th>Magnet</th>");
+               htmlBuilder.append("<th>Download</th>");
+               htmlBuilder.append("</tr>\n");
+               htmlBuilder.append("</thead>\n");
+               htmlBuilder.append("<tbody>\n");
+               for (TorrentFile torrentFile : allTorrentFiles) {
+                       if (newTorrentFiles.contains(torrentFile)) {
+                               htmlBuilder.append("<tr style=\"color: #008000; font-weight: bold;\">");
+                       } else {
+                               htmlBuilder.append("<tr>");
                        }
+                       htmlBuilder.append("<td>").append(StringEscapeUtils.escapeHtml4(torrentFile.name())).append("</td>");
+                       htmlBuilder.append("<td>").append(StringEscapeUtils.escapeHtml4(torrentFile.size())).append("</td>");
+                       htmlBuilder.append("<td>").append(torrentFile.fileCount()).append("</td>");
+                       htmlBuilder.append("<td>").append(torrentFile.seedCount()).append("</td>");
+                       htmlBuilder.append("<td>").append(torrentFile.leechCount()).append("</td>");
+                       htmlBuilder.append("<td><a href=\"").append(StringEscapeUtils.escapeHtml4(torrentFile.magnetUri())).append("\">Link</a></td>");
+                       htmlBuilder.append("<td><a href=\"").append(StringEscapeUtils.escapeHtml4(torrentFile.downloadUri())).append("\">Link</a></td>");
+                       htmlBuilder.append("</tr>\n");
                }
-               htmlText.append("</ul>\n");
-               htmlText.append("</body></html>\n");
-               return htmlText.toString();
+               htmlBuilder.append("</tbody>\n");
+               htmlBuilder.append("</table>\n");
+               htmlBuilder.append("</body></html>\n");
+               return htmlBuilder.toString();
        }
 
 }