2 * Rhynodge - NewEpisodeTrigger.java - Copyright © 2013 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.rhynodge.triggers;
20 import static com.google.common.base.Preconditions.checkState;
22 import java.util.Collection;
24 import java.util.Map.Entry;
26 import net.pterodactylus.rhynodge.Reaction;
27 import net.pterodactylus.rhynodge.State;
28 import net.pterodactylus.rhynodge.Trigger;
29 import net.pterodactylus.rhynodge.output.DefaultOutput;
30 import net.pterodactylus.rhynodge.output.Output;
31 import net.pterodactylus.rhynodge.states.EpisodeState;
32 import net.pterodactylus.rhynodge.states.EpisodeState.Episode;
33 import net.pterodactylus.rhynodge.states.TorrentState.TorrentFile;
35 import org.apache.commons.lang3.StringEscapeUtils;
37 import com.google.common.base.Function;
38 import com.google.common.collect.FluentIterable;
39 import com.google.common.collect.ImmutableMap;
40 import com.google.common.collect.Lists;
41 import com.google.common.collect.Maps;
42 import com.google.common.collect.Ordering;
43 import com.google.common.collect.Sets;
46 * {@link Trigger} implementation that compares two {@link EpisodeState}s for
47 * new and changed {@link Episode}s.
49 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
51 public class NewEpisodeTrigger implements Trigger {
54 private final Collection<Episode> allEpisodes = Sets.newHashSet();
56 /** All new episodes. */
57 private final Collection<Episode> newEpisodes = Sets.newHashSet();
59 /** All changed episodes. */
60 private final Collection<Episode> changedEpisodes = Sets.newHashSet();
62 /** All new torrent files. */
63 private final Collection<TorrentFile> newTorrentFiles = Sets.newHashSet();
73 public State mergeStates(State previousState, State currentState) {
74 checkState(currentState instanceof EpisodeState, "currentState is not a EpisodeState but a %s", currentState.getClass().getName());
75 checkState(previousState instanceof EpisodeState, "previousState is not a EpisodeState but a %s", currentState.getClass().getName());
77 changedEpisodes.clear();
78 this.allEpisodes.clear();
79 newTorrentFiles.clear();
80 Map<Episode, Episode> allEpisodes = Maps.newHashMap(FluentIterable.from(((EpisodeState) previousState).episodes()).toMap(new Function<Episode, Episode>() {
83 public Episode apply(Episode episode) {
87 for (Episode episode : ((EpisodeState) currentState).episodes()) {
88 if (!allEpisodes.containsKey(episode)) {
89 allEpisodes.put(episode, episode);
90 newEpisodes.add(episode);
92 Episode existingEpisode = allEpisodes.get(episode);
93 for (TorrentFile torrentFile : Lists.newArrayList(episode.torrentFiles())) {
94 int oldSize = existingEpisode.torrentFiles().size();
95 existingEpisode.addTorrentFile(torrentFile);
96 int newSize = existingEpisode.torrentFiles().size();
97 if (oldSize != newSize) {
98 newTorrentFiles.add(torrentFile);
100 if (!newEpisodes.contains(existingEpisode) && (oldSize != newSize)) {
101 changedEpisodes.add(existingEpisode);
105 this.allEpisodes.addAll(allEpisodes.values());
106 return new EpisodeState(this.allEpisodes);
113 public boolean triggers() {
114 return !newEpisodes.isEmpty() || !changedEpisodes.isEmpty();
121 public Output output(Reaction reaction) {
123 if (!newEpisodes.isEmpty()) {
124 if (!changedEpisodes.isEmpty()) {
125 summary = String.format("%d new and %d changed Torrent(s) for “%s!”", newEpisodes.size(), changedEpisodes.size(), reaction.name());
127 summary = String.format("%d new Torrent(s) for “%s!”", newEpisodes.size(), reaction.name());
130 summary = String.format("%d changed Torrent(s) for “%s!”", changedEpisodes.size(), reaction.name());
132 DefaultOutput output = new DefaultOutput(summary);
133 output.addText("text/plain", generatePlainText(reaction));
134 output.addText("text/html", generateHtmlText(reaction));
143 * Generates the plain text trigger output.
146 * The reaction that was triggered
147 * @return The plain text output
149 private String generatePlainText(Reaction reaction) {
150 StringBuilder stringBuilder = new StringBuilder();
151 if (!newEpisodes.isEmpty()) {
152 stringBuilder.append(reaction.name()).append(" - New Episodes\n\n");
153 for (Episode episode : newEpisodes) {
154 stringBuilder.append("- ").append(episode.identifier()).append("\n");
155 for (TorrentFile torrentFile : episode) {
156 stringBuilder.append(" - ").append(torrentFile.name()).append(", ").append(torrentFile.size()).append("\n");
157 if ((torrentFile.magnetUri() != null) && (torrentFile.magnetUri().length() > 0)) {
158 stringBuilder.append(" Magnet: ").append(torrentFile.magnetUri()).append("\n");
160 if ((torrentFile.downloadUri() != null) && (torrentFile.downloadUri().length() > 0)) {
161 stringBuilder.append(" Download: ").append(torrentFile.downloadUri()).append("\n");
166 if (!changedEpisodes.isEmpty()) {
167 stringBuilder.append(reaction.name()).append(" - Changed Episodes\n\n");
168 for (Episode episode : changedEpisodes) {
169 stringBuilder.append("- ").append(episode.identifier()).append("\n");
170 for (TorrentFile torrentFile : episode) {
171 stringBuilder.append(" - ").append(torrentFile.name()).append(", ").append(torrentFile.size()).append("\n");
172 if ((torrentFile.magnetUri() != null) && (torrentFile.magnetUri().length() > 0)) {
173 stringBuilder.append(" Magnet: ").append(torrentFile.magnetUri()).append("\n");
175 if ((torrentFile.downloadUri() != null) && (torrentFile.downloadUri().length() > 0)) {
176 stringBuilder.append(" Download: ").append(torrentFile.downloadUri()).append("\n");
181 /* list all known episodes. */
182 stringBuilder.append(reaction.name()).append(" - All Known Episodes\n\n");
183 ImmutableMap<Integer, Collection<Episode>> episodesBySeason = FluentIterable.from(allEpisodes).index(new Function<Episode, Integer>() {
186 public Integer apply(Episode episode) {
187 return episode.season();
190 for (Entry<Integer, Collection<Episode>> seasonEntry : episodesBySeason.entrySet()) {
191 stringBuilder.append(" Season ").append(seasonEntry.getKey()).append("\n\n");
192 for (Episode episode : Ordering.natural().sortedCopy(seasonEntry.getValue())) {
193 stringBuilder.append(" Episode ").append(episode.episode()).append("\n");
194 for (TorrentFile torrentFile : episode) {
195 stringBuilder.append(" Size: ").append(torrentFile.size());
196 stringBuilder.append(" in ").append(torrentFile.fileCount()).append(" file(s): ");
197 stringBuilder.append(torrentFile.magnetUri());
202 return stringBuilder.toString();
206 * Generates the HTML trigger output.
209 * The reaction that was triggered
210 * @return The HTML output
212 private String generateHtmlText(Reaction reaction) {
213 StringBuilder htmlBuilder = new StringBuilder();
214 htmlBuilder.append("<html><body>\n");
215 /* show all known episodes. */
216 htmlBuilder.append("<table>\n<caption>All Known Episodes</caption>\n");
217 htmlBuilder.append("<thead>\n");
218 htmlBuilder.append("<tr>");
219 htmlBuilder.append("<th>Season</th>");
220 htmlBuilder.append("<th>Episode</th>");
221 htmlBuilder.append("<th>Filename</th>");
222 htmlBuilder.append("<th>Size</th>");
223 htmlBuilder.append("<th>File(s)</th>");
224 htmlBuilder.append("<th>Seeds</th>");
225 htmlBuilder.append("<th>Leechers</th>");
226 htmlBuilder.append("<th>Magnet</th>");
227 htmlBuilder.append("<th>Download</th>");
228 htmlBuilder.append("</tr>\n");
229 htmlBuilder.append("</thead>\n");
230 htmlBuilder.append("<tbody>\n");
231 Episode lastEpisode = null;
232 for (Entry<Integer, Collection<Episode>> seasonEntry : FluentIterable.from(Ordering.natural().reverse().sortedCopy(allEpisodes)).index(Episode.BY_SEASON).asMap().entrySet()) {
233 for (Episode episode : seasonEntry.getValue()) {
234 for (TorrentFile torrentFile : episode) {
235 if (newEpisodes.contains(episode)) {
236 htmlBuilder.append("<tr style=\"color: #008000; font-weight: bold;\">");
237 } else if (newTorrentFiles.contains(torrentFile)) {
238 htmlBuilder.append("<tr style=\"color: #008000;\">");
240 htmlBuilder.append("<tr>");
242 if ((lastEpisode == null) || !lastEpisode.equals(episode)) {
243 htmlBuilder.append("<td>").append(episode.season()).append("</td><td>").append(episode.episode()).append("</td>");
245 htmlBuilder.append("<td colspan=\"2\"></td>");
247 htmlBuilder.append("<td>").append(StringEscapeUtils.escapeHtml4(torrentFile.name())).append("</td>");
248 htmlBuilder.append("<td>").append(StringEscapeUtils.escapeHtml4(torrentFile.size())).append("</td>");
249 htmlBuilder.append("<td>").append(torrentFile.fileCount()).append("</td>");
250 htmlBuilder.append("<td>").append(torrentFile.seedCount()).append("</td>");
251 htmlBuilder.append("<td>").append(torrentFile.leechCount()).append("</td>");
252 htmlBuilder.append("<td><a href=\"").append(StringEscapeUtils.escapeHtml4(torrentFile.magnetUri())).append("\">Link</a></td>");
253 htmlBuilder.append("<td><a href=\"").append(StringEscapeUtils.escapeHtml4(torrentFile.downloadUri())).append("\">Link</a></td>");
254 htmlBuilder.append("</tr>\n");
255 lastEpisode = episode;
259 htmlBuilder.append("</tbody>\n");
260 htmlBuilder.append("</table>\n");
261 htmlBuilder.append("</body></html>\n");
262 return htmlBuilder.toString();