mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-24 08:48:51 -05:00
* fuck stupid sublight for restricting their api
This commit is contained in:
parent
85d736bf75
commit
84fbad6ab3
@ -13,6 +13,3 @@ analytics.WebPropertyID: UA-25379256-3
|
|||||||
thetvdb.apikey: 58B4AA94C59AD656
|
thetvdb.apikey: 58B4AA94C59AD656
|
||||||
themoviedb.apikey: 5a6edae568130bf10617b6d45be99f13
|
themoviedb.apikey: 5a6edae568130bf10617b6d45be99f13
|
||||||
serienjunkies.apikey: 9fbhw9uebfiwvbefzuwv
|
serienjunkies.apikey: 9fbhw9uebfiwvbefzuwv
|
||||||
|
|
||||||
sublight.clientid: Sublight;3.6.0
|
|
||||||
sublight.apikey: YYa4Yajnqm5kXCEaetZeybYlfMIuGiJyTqqn0gfQv+mzC1KYEZq7jThuAFRehbti6d50PTqpBIy5wtfTyrMTb0IHWrGxDQHnHzcrtA8CO+337RhjZgw3OZsvJ/bJmd7ZAJbYMDoG/JXGYqpDFg38MteayjAZtQpNECUwZsbiuis=
|
|
||||||
|
@ -10,7 +10,6 @@ import net.sourceforge.filebot.web.IMDbClient;
|
|||||||
import net.sourceforge.filebot.web.MovieIdentificationService;
|
import net.sourceforge.filebot.web.MovieIdentificationService;
|
||||||
import net.sourceforge.filebot.web.OpenSubtitlesClient;
|
import net.sourceforge.filebot.web.OpenSubtitlesClient;
|
||||||
import net.sourceforge.filebot.web.SerienjunkiesClient;
|
import net.sourceforge.filebot.web.SerienjunkiesClient;
|
||||||
import net.sourceforge.filebot.web.SublightSubtitleClient;
|
|
||||||
import net.sourceforge.filebot.web.SubsceneSubtitleClient;
|
import net.sourceforge.filebot.web.SubsceneSubtitleClient;
|
||||||
import net.sourceforge.filebot.web.SubtitleProvider;
|
import net.sourceforge.filebot.web.SubtitleProvider;
|
||||||
import net.sourceforge.filebot.web.TMDbClient;
|
import net.sourceforge.filebot.web.TMDbClient;
|
||||||
@ -32,7 +31,6 @@ public final class WebServices {
|
|||||||
|
|
||||||
// subtitle dbs
|
// subtitle dbs
|
||||||
public static final OpenSubtitlesClient OpenSubtitles = new OpenSubtitlesClient(String.format("%s %s", getApplicationName(), getApplicationVersion()));
|
public static final OpenSubtitlesClient OpenSubtitles = new OpenSubtitlesClient(String.format("%s %s", getApplicationName(), getApplicationVersion()));
|
||||||
public static final SublightSubtitleClient Sublight = new SublightSubtitleClient(getApplicationProperty("sublight.clientid"), getApplicationProperty("sublight.apikey"));
|
|
||||||
public static final SubsceneSubtitleClient Subscene = new SubsceneSubtitleClient();
|
public static final SubsceneSubtitleClient Subscene = new SubsceneSubtitleClient();
|
||||||
|
|
||||||
// movie dbs
|
// movie dbs
|
||||||
@ -51,12 +49,12 @@ public final class WebServices {
|
|||||||
|
|
||||||
|
|
||||||
public static SubtitleProvider[] getSubtitleProviders() {
|
public static SubtitleProvider[] getSubtitleProviders() {
|
||||||
return new SubtitleProvider[] { OpenSubtitles, Sublight, Subscene };
|
return new SubtitleProvider[] { OpenSubtitles, Subscene };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static VideoHashSubtitleService[] getVideoHashSubtitleServices() {
|
public static VideoHashSubtitleService[] getVideoHashSubtitleServices() {
|
||||||
return new VideoHashSubtitleService[] { OpenSubtitles, Sublight };
|
return new VideoHashSubtitleService[] { OpenSubtitles };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
package net.sourceforge.filebot.web;
|
package net.sourceforge.filebot.web;
|
||||||
|
|
||||||
|
|
||||||
import static net.sourceforge.filebot.Settings.*;
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
@ -19,7 +18,7 @@ import net.sublight.webservice.Subtitle;
|
|||||||
|
|
||||||
public class SublightSubtitleClientTest {
|
public class SublightSubtitleClientTest {
|
||||||
|
|
||||||
private static SublightSubtitleClient client = new SublightSubtitleClient(getApplicationProperty("sublight.clientid"), getApplicationProperty("sublight.apikey"));
|
private static SublightSubtitleClient client = new SublightSubtitleClient(null, null); // BROKEN SINCE SUBLIGHT RESTRICTED API ACCESS
|
||||||
|
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
|
Loading…
Reference in New Issue
Block a user