X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fsearchable%2FBasicSearchable.java;h=cb0b1712ccb3fc7762354f799a04f65b45d89de8;hb=8831d290121e3a77f535ce06d61968a26ccf172a;hp=25c388a8e268aa1bde8a26f84c4d10a2721be070;hpb=fd69647f9b69d8862c1be0910e877b8cbbb98272;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/searchable/BasicSearchable.java b/src/be/nikiroo/fanfix/searchable/BasicSearchable.java deleted file mode 100644 index 25c388a..0000000 --- a/src/be/nikiroo/fanfix/searchable/BasicSearchable.java +++ /dev/null @@ -1,199 +0,0 @@ -package be.nikiroo.fanfix.searchable; - -import java.io.IOException; -import java.net.URL; -import java.util.List; - -import org.jsoup.helper.DataUtil; -import org.jsoup.nodes.Document; - -import be.nikiroo.fanfix.Instance; -import be.nikiroo.fanfix.data.MetaData; -import be.nikiroo.fanfix.supported.BasicSupport; -import be.nikiroo.fanfix.supported.SupportType; - -/** - * This class supports browsing through stories on the supported websites. It - * will fetch some {@link MetaData} that satisfy a search query or some tags if - * supported. - * - * @author niki - */ -public abstract class BasicSearchable { - private SupportType type; - private BasicSupport support; - - /** - * Create a new {@link BasicSearchable} of the given type. - * - * @param type - * the type, must not be NULL - */ - public BasicSearchable(SupportType type) { - setType(type); - support = BasicSupport.getSupport(getType(), null); - } - - /** - * The support type. - * - * @return the type - */ - public SupportType getType() { - return type; - } - - /** - * The support type. - * - * @param type - * the new type - */ - protected void setType(SupportType type) { - this.type = type; - } - - /** - * The associated {@link BasicSupport}. - *

- * Mostly used to download content. - * - * @return the support - */ - protected BasicSupport getSupport() { - return support; - } - - /** - * Get a list of tags that can be browsed here. - * - * @return the list of tags - * - * @throws IOException - * in case of I/O error - */ - abstract public List getTags() throws IOException; - - /** - * Fill the tag (set it 'complete') with more information from the support. - * - * @param tag - * the tag to fill - * - * @throws IOException - * in case of I/O error - */ - abstract protected void fillTag(SearchableTag tag) throws IOException; - - /** - * Search for the given term and return a list of stories satisfying this - * search term. - *

- * Not that the returned stories will NOT be complete, but will only - * contain enough information to present them to the user and retrieve them. - *

- * URL is guaranteed to be usable, LUID will always be NULL. - * - * @param search - * the term to search for - * - * @return a list of stories that satisfy that search term - * - * @throws IOException - * in case of I/O error - */ - abstract public List search(String search) throws IOException; - - /** - * Search for the given tag and return a list of stories satisfying this - * tag. - *

- * Not that the returned stories will NOT be complete, but will only - * contain enough information to present them to the user and retrieve them. - *

- * URL is guaranteed to be usable, LUID will always be NULL. - * - * @param tagId - * the tag to search for - * - * @return a list of stories that satisfy that search term - * - * @throws IOException - * in case of I/O error - */ - abstract public List search(SearchableTag tag) throws IOException; - - /** - * Load a document from its url. - * - * @param url - * the URL to load - * @return the document - * - * @throws IOException - * in case of I/O error - */ - protected Document load(String url) throws IOException { - return load(new URL(url)); - } - - /** - * Load a document from its url. - * - * @param url - * the URL to load - * @return the document - * - * @throws IOException - * in case of I/O error - */ - protected Document load(URL url) throws IOException { - return DataUtil.load(Instance.getCache().open(url, support, false), - "UTF-8", url.toString()); - } - - /** - * Return a {@link BasicSearchable} implementation supporting the given - * type, or NULL if it does not exist. - * - * @param type - * the type, must not be NULL - * - * @return an implementation that supports it, or NULL - */ - public static BasicSearchable getSearchable(SupportType type) { - BasicSearchable support = null; - - switch (type) { - case FIMFICTION: - // TODO - break; - case FANFICTION: - support = new Fanfiction(type); - break; - case MANGAFOX: - // TODO - break; - case E621: - // TODO - break; - case YIFFSTAR: - // TODO - break; - case E_HENTAI: - // TODO - break; - case MANGA_LEL: - // TODO - break; - case CBZ: - case HTML: - case INFO_TEXT: - case TEXT: - case EPUB: - break; - } - - return support; - } -}