From: David ‘Bombe’ Roden Date: Fri, 11 Jan 2013 06:28:11 +0000 (+0100) Subject: Add Pirate Bay watcher for “normal” files. X-Git-Tag: 0.1~32 X-Git-Url: https://git.pterodactylus.net/?p=rhynodge.git;a=commitdiff_plain;h=e40007dc074c9e67258f1a4dcf4d526083ea7ec4 Add Pirate Bay watcher for “normal” files. --- diff --git a/src/main/java/net/pterodactylus/rhynodge/watchers/PirateBayWatcher.java b/src/main/java/net/pterodactylus/rhynodge/watchers/PirateBayWatcher.java new file mode 100644 index 0000000..ef6f743 --- /dev/null +++ b/src/main/java/net/pterodactylus/rhynodge/watchers/PirateBayWatcher.java @@ -0,0 +1,89 @@ +/* + * Rhynodge - PirateBayWatcher.java - Copyright © 2013 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 . + */ + +package net.pterodactylus.rhynodge.watchers; + +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.HtmlFilter; +import net.pterodactylus.rhynodge.filters.PirateBayFilter; +import net.pterodactylus.rhynodge.queries.HttpQuery; +import net.pterodactylus.rhynodge.triggers.NewTorrentTrigger; + +import com.google.common.collect.ImmutableList; + +/** + * {@Watcher} implementation that watches The Pirate Bay for new files. + * + * @author David ‘Bombe’ Roden + */ +public class PirateBayWatcher extends DefaultWatcher { + + /** + * Creates a new Pirate Bay watcher. + * + * @param searchTerms + * The terms to search for + */ + public PirateBayWatcher(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://thepiratebay.se/search/" + URLEncoder.encode(searchTerms, "UTF-8") + "/0/3/0"); + } catch (UnsupportedEncodingException uee1) { + /* will not happen. */ + return null; + } + } + + /** + * Creates the filters of the watcher. + * + * @return The filters of the watcher + */ + private static List createFilters() { + return ImmutableList. of(new HtmlFilter(), new PirateBayFilter()); + } + + /** + * Creates the trigger of the watcher. + * + * @return The trigger of the watcher + */ + private static Trigger createTrigger() { + return new NewTorrentTrigger(); + } + +}