import net.pterodactylus.rhynodge.State;
import net.pterodactylus.rhynodge.states.ComicState;
import net.pterodactylus.rhynodge.states.ComicState.Comic;
+import net.pterodactylus.rhynodge.states.ComicState.Strip;
import net.pterodactylus.rhynodge.states.HtmlState;
import com.google.common.base.Optional;
/* extract comics. */
Optional<String> title = extractTitle(htmlState.document());
List<String> imageUrls = extractImageUrls(htmlState.document());
+ List<String> imageComments = extractImageComments(htmlState.document());
/* store comic, if found, into state. */
if (title.isPresent() && !imageUrls.isEmpty()) {
Comic comic = new Comic(title.get());
+ int imageCounter = 0;
for (String imageUrl : imageUrls) {
- comic.addImageUrl(imageUrl);
+ String imageComment = (imageCounter < imageComments.size()) ? imageComments.get(imageCounter) : "";
+ Strip strip = new Strip(imageUrl, imageComment);
+ imageCounter++;
+ comic.add(strip);
}
comicState.add(comic);
}
*
* @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
*/
- public static class Comic implements Iterable<String> {
+ public static class Comic implements Iterable<Strip> {
/** The title of the comic. */
@JsonProperty
private final String title;
- /** The URLs of the comic’s images. */
+ /** The strips of the comic. */
@JsonProperty
- private final List<String> imageUrls = Lists.newArrayList();
+ private final List<Strip> strips = Lists.newArrayList();
/**
* Creates a new comic with the given title.
}
/**
- * Returns the URLs of this comic’s images.
+ * Returns the strips of this comic.
*
- * @return The URLs of this comic’s images
+ * @return The strips of this comic
*/
- public List<String> imageUrls() {
- return imageUrls;
+ public List<Strip> strips() {
+ return strips;
}
/**
- * Adds an image URL to this comic.
+ * Adds a strip to this comic.
*
- * @param imageUrl
- * The URL of the comic image to add
+ * @param strip
+ * The strip to add
* @return This comic
*/
- public Comic addImageUrl(String imageUrl) {
- imageUrls.add(imageUrl);
+ public Comic add(Strip strip) {
+ strips.add(strip);
return this;
}
//
@Override
- public Iterator<String> iterator() {
- return imageUrls.iterator();
+ public Iterator<Strip> iterator() {
+ return strips.iterator();
}
//
@Override
public int hashCode() {
- return title.hashCode() ^ imageUrls().hashCode();
+ return title.hashCode() ^ strips().hashCode();
}
@Override
return false;
}
Comic comic = (Comic) object;
- return title().equals(comic.title()) && imageUrls().equals(comic.imageUrls());
+ return title().equals(comic.title()) && strips().equals(comic.strips());
+ }
+
+ @Override
+ public String toString() {
+ return String.format("Comic[title=%s,strips=%s]", title(), strips());
+ }
+
+ }
+
+ /**
+ * A strip is a single image that belongs to a comic.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+ public static class Strip {
+
+ /** The URL of the image. */
+ @JsonProperty
+ private final String imageUrl;
+
+ /** The comment of the image. */
+ @JsonProperty
+ private final String comment;
+
+ /**
+ * Creates a new strip.
+ *
+ * @param imageUrl
+ * The URL of the image
+ * @param comment
+ * The comment of the image
+ */
+ public Strip(@JsonProperty("imageUrl") String imageUrl, @JsonProperty("comment") String comment) {
+ this.imageUrl = imageUrl;
+ this.comment = comment;
+ }
+
+ /**
+ * Returns the URL of the image.
+ *
+ * @return The URL of the image
+ */
+ public String imageUrl() {
+ return imageUrl;
+ }
+
+ /**
+ * Returns the comment of the image.
+ *
+ * @return The comment of the image
+ */
+ public String comment() {
+ return comment;
+ }
+
+ //
+ // OBJECT METHODS
+ //
+
+ @Override
+ public int hashCode() {
+ return imageUrl().hashCode() ^ comment().hashCode();
+ }
+
+ @Override
+ public boolean equals(Object object) {
+ if (!(object instanceof Strip)) {
+ return false;
+ }
+ Strip strip = (Strip) object;
+ return imageUrl().equals(strip.imageUrl()) && comment().equals(strip.comment());
}
@Override
public String toString() {
- return String.format("Comic[title=%s,imageUrls=%s]", title(), imageUrls());
+ return String.format("Strip[imageUrl=%s,comment=%s]", imageUrl(), comment());
}
}
import net.pterodactylus.rhynodge.output.Output;
import net.pterodactylus.rhynodge.states.ComicState;
import net.pterodactylus.rhynodge.states.ComicState.Comic;
+import net.pterodactylus.rhynodge.states.ComicState.Strip;
import com.google.common.collect.Lists;
import org.apache.commons.lang3.StringEscapeUtils;
+import org.apache.commons.lang3.StringUtils;
/**
* {@link Trigger} implementation that detects the presence of new {@link
for (Comic newComic : newComics) {
text.append("Comic Found: ").append(newComic.title()).append("\n\n");
- for (String imageUrl : newComic) {
- text.append("Image: ").append(imageUrl).append("\n");
+ for (Strip strip : newComic) {
+ text.append("Image: ").append(strip.imageUrl()).append("\n");
+ if (!StringUtils.isBlank(strip.comment())) {
+ text.append("Comment: ").append(strip.comment()).append("\n");
+ }
}
text.append("\n\n");
}
for (Comic newComic : newComics) {
html.append("<h1>").append(StringEscapeUtils.escapeHtml4(newComic.title())).append("</h1>\n");
- for (String imageUrl : newComic) {
- html.append("<div><img src=\"").append(StringEscapeUtils.escapeHtml4(imageUrl)).append("\"></div>\n");
+ for (Strip strip : newComic) {
+ html.append("<div><img src=\"").append(StringEscapeUtils.escapeHtml4(strip.imageUrl()));
+ html.append("\" alt=\"").append(StringEscapeUtils.escapeHtml4(strip.comment()));
+ html.append("\" title=\"").append(StringEscapeUtils.escapeHtml4(strip.comment()));
+ html.append("\"></div>\n");
}
}