feat(de/FilmPalast): Add more video extractors (#1636)

* feat: Add StreamHide / StreamVid extractor

* feat: Add Wolfstream extractor

* chore: Bump version
This commit is contained in:
Claudemirovsky 2023-05-22 22:05:01 +00:00 committed by GitHub
parent 600b10a176
commit ffdd988eb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 159 additions and 105 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'FilmPalast' extName = 'FilmPalast'
pkgNameSuffix = 'de.filmpalast' pkgNameSuffix = 'de.filmpalast'
extClass = '.FilmPalast' extClass = '.FilmPalast'
extVersionCode = 9 extVersionCode = 10
libVersion = '13' libVersion = '13'
} }

View File

@ -7,6 +7,7 @@ import androidx.preference.MultiSelectListPreference
import androidx.preference.PreferenceScreen import androidx.preference.PreferenceScreen
import eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors.EvoloadExtractor import eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors.EvoloadExtractor
import eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors.FilemoonExtractor import eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors.FilemoonExtractor
import eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors.StreamHideVidExtractor
import eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors.UpstreamExtractor import eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors.UpstreamExtractor
import eu.kanade.tachiyomi.animesource.ConfigurableAnimeSource import eu.kanade.tachiyomi.animesource.ConfigurableAnimeSource
import eu.kanade.tachiyomi.animesource.model.AnimeFilterList import eu.kanade.tachiyomi.animesource.model.AnimeFilterList
@ -83,107 +84,84 @@ class FilmPalast : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
} }
private fun videosFromElement(document: Document): List<Video> { private fun videosFromElement(document: Document): List<Video> {
val videoList = mutableListOf<Video>()
val elements = document.select("ul.currentStreamLinks > li > a") val elements = document.select("ul.currentStreamLinks > li > a")
val hosterSelection = preferences.getStringSet("hoster_selection", setOf("voe", "stape", "evo", "up", "moon")) val hosterSelection = preferences.getStringSet(PREF_SELECTION_KEY, PREF_SELECTION_DEFAULT)!!
for (element in elements) { return elements.mapNotNull { element ->
val url = element.attr("abs:href") val url = element.attr("abs:href").ifEmpty {
element.attr("abs:data-player-url")
}
when { when {
url.contains("https://voe.sx") && hosterSelection?.contains("voe") == true -> { url.contains("https://voe.sx") && hosterSelection.contains("voe") ->
val quality = "Voe" VoeExtractor(client).videoFromUrl(url, "Voe")
val video = VoeExtractor(client).videoFromUrl(url, quality) ?.let(::listOf)
if (video != null) {
videoList.add(video) url.contains("https://upstream.to") && hosterSelection.contains("up") ->
UpstreamExtractor(client).videoFromUrl(url)
url.contains("https://streamtape.com") && hosterSelection.contains("stape") -> {
runCatching {
val stapeHeaders = Headers.headersOf(
"Referer",
baseUrl,
"Cookie",
"Fuck Streamtape because they add concatenation to fuck up scrapers",
)
// from lib streamtape-extractor
// TODO: add headers param to lib, so we can use the
// lib in cases like this.
val doc = client.newCall(GET(url, headers = stapeHeaders))
.execute()
.asJsoup()
val targetLine = "document.getElementById('robotlink')"
val script = doc.selectFirst("script:containsData($targetLine)")
?.data()
?.substringAfter("$targetLine.innerHTML = '")
?: return@runCatching null
val videoUrl = "https:" + script.substringBefore("'") +
script.substringAfter("+ ('xcd").substringBefore("'")
listOf(Video(videoUrl, "Streamtape", videoUrl))
}.getOrNull()
} }
}
url.contains("https://upstream.to") && hosterSelection?.contains("up") == true -> { url.contains("https://evoload.io") && hosterSelection.contains("evo") -> {
val videos = UpstreamExtractor(client).videoFromUrl(url)
if (videos != null) {
videoList.addAll(videos)
}
}
}
}
for (element in elements) {
val url = element.attr("abs:data-player-url")
when {
url.contains("https://streamtape.com") && hosterSelection?.contains("stape") == true -> {
try {
with(
client.newCall(GET(url, headers = Headers.headersOf("Referer", baseUrl, "Cookie", "Fuck Streamtape because they add concatenation to fuck up scrapers")))
.execute().asJsoup(),
) {
linkRegex.find(this.select("script:containsData(document.getElementById('robotlink'))").toString())?.let {
val quality = "Streamtape"
val id = it.groupValues[1].replace("%27+%20(%27xcdb", "")
val videoUrl = "https://streamtape.com/get_video?$id&stream=1".replace("""" + '""", "")
videoList.add(Video(videoUrl, quality, videoUrl))
}
}
} catch (e: Exception) {
}
}
url.contains("https://evoload.io") && hosterSelection?.contains("evo") == true -> {
val quality = "Evoload" val quality = "Evoload"
if (document.select("#EvoVid_html5_api").attr("src").contains("EvoStreams")) { document.selectFirst("#EvoVid_html5_api")?.attr("src")?.let { videoUrl ->
val videoUrl = document.select("#EvoVid_html5_api").attr("src") if (videoUrl.contains("EvoStreams")) {
if (videoUrl.isNotEmpty()) { listOf(Video(videoUrl, quality, videoUrl))
videoList.add(Video(videoUrl, quality, videoUrl))
}
} else { } else {
EvoloadExtractor(client).videoFromUrl(url, quality) EvoloadExtractor(client).videoFromUrl(url, quality)
videoList.addAll(EvoloadExtractor(client).videoFromUrl(url, quality))
}
}
url.contains("filemoon.sx") && hosterSelection?.contains("moon") == true -> {
val videos = FilemoonExtractor(client).videoFromUrl(url)
if (videos != null) {
videoList.addAll(videos)
}
} }
} }
} }
return videoList url.contains("filemoon.sx") && hosterSelection.contains("moon") ->
} FilemoonExtractor(client).videoFromUrl(url)
url.contains("hide.com") && hosterSelection.contains("hide") ->
StreamHideVidExtractor(client).videosFromUrl(url, "StreamHide")
url.contains("streamvid.net") && hosterSelection.contains("vid") ->
StreamHideVidExtractor(client).videosFromUrl(url, "StreamVid")
private val linkRegex = "wolfstream" in url && hosterSelection.contains("wolf") -> {
Regex("""(i(|" \+ ')d(|" \+ ')=.*?&(|" \+ ')e(|" \+ ')x(|" \+ ')p(|" \+ ')i(|" \+ ')r(|" \+ ')e(|" \+ ')s(|" \+ ')=.*?&(|" \+ ')i(|" \+ ')p(|" \+ ')=.*?&(|" \+ ')t(|" \+ ')o(|" \+ ')k(|" \+ ')e(|" \+ ')n(|" \+ ')=.*)'""") client.newCall(GET(url, headers)).execute()
.use { it.asJsoup() }
.selectFirst("script:containsData(sources)")
?.data()
?.let { jsData ->
val videoUrl = jsData.substringAfter("{file:\"").substringBefore("\"")
listOf(Video(videoUrl, "WolfStream", videoUrl, headers = headers))
}
}
else -> null
}
}.flatten()
}
override fun List<Video>.sort(): List<Video> { override fun List<Video>.sort(): List<Video> {
val hoster = preferences.getString("preferred_hoster", "Voe") val hoster = preferences.getString(PREF_HOSTER_KEY, PREF_HOSTER_DEFAULT)!!
val hosterList = mutableListOf<Video>() return sortedWith(
val otherList = mutableListOf<Video>() compareBy { it.url.contains(hoster) },
if (hoster != null) { ).reversed()
for (video in this) {
if (video.url.contains(hoster)) {
hosterList.add(video)
} else {
otherList.add(video)
}
}
} else {
otherList += this
}
val newList = mutableListOf<Video>()
var preferred = 0
for (video in hosterList) {
if (hoster?.let { video.quality.contains(it) } == true) {
newList.add(preferred, video)
preferred++
} else {
newList.add(video)
}
}
for (video in otherList) {
if (hoster?.let { video.quality.contains(it) } == true) {
newList.add(preferred, video)
preferred++
} else {
newList.add(video)
}
}
return newList
} }
override fun videoListSelector() = throw Exception("not used") override fun videoListSelector() = throw Exception("not used")
@ -247,11 +225,11 @@ class FilmPalast : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
override fun setupPreferenceScreen(screen: PreferenceScreen) { override fun setupPreferenceScreen(screen: PreferenceScreen) {
val hosterPref = ListPreference(screen.context).apply { val hosterPref = ListPreference(screen.context).apply {
key = "preferred_hoster" key = PREF_HOSTER_KEY
title = "Standard-Hoster" title = PREF_HOSTER_TITLE
entries = arrayOf("Voe", "Streamtape", "Evoload", "Upstream", "Filemoon") entries = PREF_HOSTER_ENTRIES
entryValues = arrayOf("https://voe.sx", "https://streamtape.com", "https://evoload.io", "https://upstream.to", "https://filemoon.sx") entryValues = PREF_HOSTER_VALUES
setDefaultValue("https://voe.sx") setDefaultValue(PREF_HOSTER_DEFAULT)
summary = "%s" summary = "%s"
setOnPreferenceChangeListener { _, newValue -> setOnPreferenceChangeListener { _, newValue ->
@ -262,11 +240,11 @@ class FilmPalast : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
} }
} }
val subSelection = MultiSelectListPreference(screen.context).apply { val subSelection = MultiSelectListPreference(screen.context).apply {
key = "hoster_selection" key = PREF_SELECTION_KEY
title = "Hoster auswählen" title = PREF_SELECTION_TITLE
entries = arrayOf("Voe", "Streamtape", "Evoload", "Upstream", "Filemoon") entries = PREF_SELECTION_ENTRIES
entryValues = arrayOf("voe", "stape", "evo", "up", "moon") entryValues = PREF_SELECTION_VALUES
setDefaultValue(setOf("voe", "stape", "evo", "up", "moon")) setDefaultValue(PREF_SELECTION_DEFAULT)
setOnPreferenceChangeListener { _, newValue -> setOnPreferenceChangeListener { _, newValue ->
preferences.edit().putStringSet(key, newValue as Set<String>).commit() preferences.edit().putStringSet(key, newValue as Set<String>).commit()
@ -275,4 +253,45 @@ class FilmPalast : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
screen.addPreference(hosterPref) screen.addPreference(hosterPref)
screen.addPreference(subSelection) screen.addPreference(subSelection)
} }
companion object {
private const val PREF_HOSTER_KEY = "preferred_hoster"
private const val PREF_HOSTER_TITLE = "Standard-Hoster"
private const val PREF_HOSTER_DEFAULT = "https://voe.sx"
private val PREF_HOSTER_ENTRIES = arrayOf(
"Voe",
"Streamtape",
"Evoload",
"Upstream",
"Filemoon",
"StreamHide",
"StreamVid",
"WolfStream",
)
private val PREF_HOSTER_VALUES = arrayOf(
"https://voe.sx",
"https://streamtape.com",
"https://evoload.io",
"https://upstream.to",
"https://filemoon.sx",
"hide.com",
"streamvid.net",
"https://wolfstream",
)
private const val PREF_SELECTION_KEY = "hoster_selection"
private const val PREF_SELECTION_TITLE = "Hoster auswählen"
private val PREF_SELECTION_ENTRIES = PREF_HOSTER_ENTRIES
private val PREF_SELECTION_VALUES = arrayOf(
"voe",
"stape",
"evo",
"up",
"moon",
"hide",
"vid",
"wolf",
)
private val PREF_SELECTION_DEFAULT = PREF_SELECTION_VALUES.toSet()
}
} }

View File

@ -0,0 +1,35 @@
package eu.kanade.tachiyomi.animeextension.de.filmpalast.extractors
import eu.kanade.tachiyomi.animesource.model.Track
import eu.kanade.tachiyomi.animesource.model.Video
import eu.kanade.tachiyomi.network.GET
import okhttp3.OkHttpClient
class StreamHideVidExtractor(private val client: OkHttpClient) {
// from nineanime / ask4movie FilemoonExtractor
private val subtitleRegex = Regex("""#EXT-X-MEDIA:TYPE=SUBTITLES.*?NAME="(.*?)".*?URI="(.*?)"""")
fun videosFromUrl(url: String, name: String): List<Video> {
val page = client.newCall(GET(url)).execute().body.string()
val unpacked = JsUnpacker(page).unpack() ?: return emptyList()
val playlistUrl = unpacked.substringAfter("sources:")
.substringAfter("file:\"") // StreamHide
.substringAfter("src:\"") // StreamVid
.substringBefore('"')
val playlistData = client.newCall(GET(playlistUrl)).execute().body.string()
val subs = subtitleRegex.findAll(playlistData).map {
val urlPart = it.groupValues[2]
val subUrl = when {
!urlPart.startsWith("https:") ->
playlistUrl.substringBeforeLast("/") + "/$urlPart"
else -> urlPart
}
Track(subUrl, it.groupValues[1])
}.toList()
// The playlist usually only have one video quality.
return listOf(Video(playlistUrl, name, playlistUrl, subtitleTracks = subs))
}
}