Add watchers for torrentz.eu results.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 21 Dec 2014 12:07:25 +0000 (13:07 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 21 Dec 2014 12:07:25 +0000 (13:07 +0100)
src/main/java/net/pterodactylus/rhynodge/watchers/TorrentzEuEpisodeWatcher.java [new file with mode: 0644]
src/main/java/net/pterodactylus/rhynodge/watchers/TorrentzEuWatcher.java [new file with mode: 0644]

diff --git a/src/main/java/net/pterodactylus/rhynodge/watchers/TorrentzEuEpisodeWatcher.java b/src/main/java/net/pterodactylus/rhynodge/watchers/TorrentzEuEpisodeWatcher.java
new file mode 100644 (file)
index 0000000..1c8f048
--- /dev/null
@@ -0,0 +1,93 @@
+/*
+ * rhynodge - TorrentzEuEpisodeWatcher.java - Copyright © 2014 David Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.rhynodge.watchers;
+
+import static net.pterodactylus.rhynodge.filters.BlacklistFilter.createDefaultBlacklistFilter;
+
+import java.io.UnsupportedEncodingException;
+import java.net.URLEncoder;
+import java.util.List;
+
+import net.pterodactylus.rhynodge.Filter;
+import net.pterodactylus.rhynodge.Query;
+import net.pterodactylus.rhynodge.Trigger;
+import net.pterodactylus.rhynodge.filters.EpisodeFilter;
+import net.pterodactylus.rhynodge.filters.HtmlFilter;
+import net.pterodactylus.rhynodge.filters.torrents.TorrentzEuFilter;
+import net.pterodactylus.rhynodge.queries.HttpQuery;
+import net.pterodactylus.rhynodge.triggers.NewEpisodeTrigger;
+
+import com.google.common.collect.ImmutableList;
+
+/**
+ * {@link net.pterodactylus.rhynodge.Watcher} implementation that watches
+ * {@code torrentz.eu} for new episodes.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class TorrentzEuEpisodeWatcher extends DefaultWatcher {
+
+       /**
+        * Creates a new {@code torrentz.eu} episode watcher.
+        *
+        * @param searchTerms
+        *              The terms to search for
+        */
+       public TorrentzEuEpisodeWatcher(String searchTerms) {
+               super(createHttpQuery(searchTerms), createFilters(), createTrigger());
+       }
+
+       //
+       // STATIC METHODS
+       //
+
+       /**
+        * Creates the query of the watcher.
+        *
+        * @param searchTerms
+        *              The search terms of the query
+        * @return The query of the watcher
+        */
+       private static Query createHttpQuery(String searchTerms) {
+               try {
+                       return new HttpQuery("http://torrentz.eu/searchA?q=" + URLEncoder.encode(searchTerms, "UTF-8"));
+               } catch (UnsupportedEncodingException uee1) {
+                       /* will not happen. */
+                       return null;
+               }
+       }
+
+       /**
+        * Creates the filters of the watcher.
+        *
+        * @return The filters of the watcher
+        */
+       private static List<Filter> createFilters() {
+               return ImmutableList.of(new HtmlFilter(), new TorrentzEuFilter(), createDefaultBlacklistFilter(), new EpisodeFilter());
+       }
+
+       /**
+        * Creates the trigger of the watcher.
+        *
+        * @return The trigger of the watcher
+        */
+       private static Trigger createTrigger() {
+               return new NewEpisodeTrigger();
+       }
+
+}
diff --git a/src/main/java/net/pterodactylus/rhynodge/watchers/TorrentzEuWatcher.java b/src/main/java/net/pterodactylus/rhynodge/watchers/TorrentzEuWatcher.java
new file mode 100644 (file)
index 0000000..cbf6849
--- /dev/null
@@ -0,0 +1,93 @@
+/*
+ * rhynodge - TorrentzEuEpisodeWatcher.java - Copyright © 2014 David Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.rhynodge.watchers;
+
+import static net.pterodactylus.rhynodge.filters.BlacklistFilter.createDefaultBlacklistFilter;
+
+import java.io.UnsupportedEncodingException;
+import java.net.URLEncoder;
+import java.util.List;
+
+import net.pterodactylus.rhynodge.Filter;
+import net.pterodactylus.rhynodge.Query;
+import net.pterodactylus.rhynodge.Trigger;
+import net.pterodactylus.rhynodge.filters.EpisodeFilter;
+import net.pterodactylus.rhynodge.filters.HtmlFilter;
+import net.pterodactylus.rhynodge.filters.torrents.TorrentzEuFilter;
+import net.pterodactylus.rhynodge.queries.HttpQuery;
+import net.pterodactylus.rhynodge.triggers.NewEpisodeTrigger;
+
+import com.google.common.collect.ImmutableList;
+
+/**
+ * {@link net.pterodactylus.rhynodge.Watcher} implementation that watches
+ * {@code torrentz.eu} for new files.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class TorrentzEuWatcher extends DefaultWatcher {
+
+       /**
+        * Creates a new {@code torrentz.eu} episode watcher.
+        *
+        * @param searchTerms
+        *              The terms to search for
+        */
+       public TorrentzEuWatcher(String searchTerms) {
+               super(createHttpQuery(searchTerms), createFilters(), createTrigger());
+       }
+
+       //
+       // STATIC METHODS
+       //
+
+       /**
+        * Creates the query of the watcher.
+        *
+        * @param searchTerms
+        *              The search terms of the query
+        * @return The query of the watcher
+        */
+       private static Query createHttpQuery(String searchTerms) {
+               try {
+                       return new HttpQuery("http://torrentz.eu/searchA?q=" + URLEncoder.encode(searchTerms, "UTF-8"));
+               } catch (UnsupportedEncodingException uee1) {
+                       /* will not happen. */
+                       return null;
+               }
+       }
+
+       /**
+        * Creates the filters of the watcher.
+        *
+        * @return The filters of the watcher
+        */
+       private static List<Filter> createFilters() {
+               return ImmutableList.of(new HtmlFilter(), new TorrentzEuFilter(), createDefaultBlacklistFilter());
+       }
+
+       /**
+        * Creates the trigger of the watcher.
+        *
+        * @return The trigger of the watcher
+        */
+       private static Trigger createTrigger() {
+               return new NewEpisodeTrigger();
+       }
+
+}