Change BasicSupport to use jsoup
[nikiroo-utils.git] / src / be / nikiroo / fanfix / supported / YiffStar.java
index 9813df890025a750aeec3af93a77f69de0dc15e0..ca331e5adac7564d499793dbc793705606507ae2 100644 (file)
@@ -1,6 +1,5 @@
 package be.nikiroo.fanfix.supported;
 
-import java.awt.image.BufferedImage;
 import java.io.IOException;
 import java.io.InputStream;
 import java.net.MalformedURLException;
@@ -15,6 +14,7 @@ import java.util.Scanner;
 import be.nikiroo.fanfix.Instance;
 import be.nikiroo.fanfix.bundles.Config;
 import be.nikiroo.fanfix.data.MetaData;
+import be.nikiroo.utils.Image;
 import be.nikiroo.utils.Progress;
 import be.nikiroo.utils.StringUtils;
 
@@ -24,7 +24,7 @@ import be.nikiroo.utils.StringUtils;
  * 
  * @author niki
  */
-class YiffStar extends BasicSupport {
+class YiffStar extends BasicSupport_Deprecated {
 
        @Override
        public String getSourceName() {
@@ -36,7 +36,7 @@ class YiffStar extends BasicSupport {
                MetaData meta = new MetaData();
 
                meta.setTitle(getTitle(reset(in)));
-               meta.setAuthor(getAuthor(source, reset(in)));
+               meta.setAuthor(getAuthor(reset(in)));
                meta.setDate("");
                meta.setTags(getTags(reset(in)));
                meta.setSource(getSourceName());
@@ -88,24 +88,28 @@ class YiffStar extends BasicSupport {
                        // logged in
                        Instance.getCache()
                                        .openNoCache(new URL("https://www.sofurry.com/user/login"),
-                                                       this, post).close();
+                                                       this, post, null, null).close();
                }
        }
 
        @Override
-       public URL getCanonicalUrl(URL source) throws IOException {
-               if (source.getPath().startsWith("/view")) {
-                       source = new URL(source.toString() + "/guest");
-                       InputStream in = Instance.getCache().open(source, this, false);
-                       String line = getLine(in, "/browse/folder/", 0);
-                       if (line != null) {
-                               String[] tab = line.split("\"");
-                               if (tab.length > 1) {
-                                       String groupUrl = source.getProtocol() + "://"
-                                                       + source.getHost() + tab[1];
-                                       return guest(groupUrl);
+       public URL getCanonicalUrl(URL source) {
+               try {
+                       if (source.getPath().startsWith("/view")) {
+                               source = new URL(source.toString() + "/guest");
+                               InputStream in = Instance.getCache().open(source, this, false);
+                               String line = getLine(in, "/browse/folder/", 0);
+                               if (line != null) {
+                                       String[] tab = line.split("\"");
+                                       if (tab.length > 1) {
+                                               String groupUrl = source.getProtocol() + "://"
+                                                               + source.getHost() + tab[1];
+                                               return guest(groupUrl);
+                                       }
                                }
                        }
+               } catch (Exception e) {
+                       Instance.getTraceHandler().error(e);
                }
 
                return super.getCanonicalUrl(source);
@@ -128,8 +132,7 @@ class YiffStar extends BasicSupport {
                return tags;
        }
 
-       private BufferedImage getCover(URL source, InputStream in)
-                       throws IOException {
+       private Image getCover(URL source, InputStream in) throws IOException {
 
                List<Entry<String, URL>> chaps = getChapters(source, in, null);
                if (!chaps.isEmpty()) {
@@ -159,7 +162,7 @@ class YiffStar extends BasicSupport {
                return null;
        }
 
-       private String getAuthor(URL source, InputStream in) throws IOException {
+       private String getAuthor(InputStream in) {
                String author = getLine(in, "class=\"onlinestatus", 0);
                if (author != null) {
                        return StringUtils.unhtml(author).trim();
@@ -168,7 +171,7 @@ class YiffStar extends BasicSupport {
                return null;
        }
 
-       private String getTitle(InputStream in) throws IOException {
+       private String getTitle(InputStream in) {
                String title = getLine(in, "class=\"sflabel pagetitle", 0);
                if (title != null) {
                        if (title.contains("(series)")) {
@@ -206,14 +209,17 @@ class YiffStar extends BasicSupport {
                                        final URL value = guest(link);
                                        final String key = StringUtils.unhtml(line).trim();
                                        urls.add(new Entry<String, URL>() {
+                                               @Override
                                                public URL setValue(URL value) {
                                                        return null;
                                                }
 
+                                               @Override
                                                public URL getValue() {
                                                        return value;
                                                }
 
+                                               @Override
                                                public String getKey() {
                                                        return key;
                                                }
@@ -271,11 +277,11 @@ class YiffStar extends BasicSupport {
                if (link.contains("?")) {
                        if (link.contains("/?")) {
                                return new URL(link.replace("?", "guest?"));
-                       } else {
-                               return new URL(link.replace("?", "/guest?"));
                        }
-               } else {
-                       return new URL(link + "/guest");
+
+                       return new URL(link.replace("?", "/guest?"));
                }
+
+               return new URL(link + "/guest");
        }
 }