src/ar tuktuk
This commit is contained in:
parent
1efce06019
commit
c1f762b40e
7 changed files with 0 additions and 326 deletions
|
@ -1,17 +0,0 @@
|
|||
ext {
|
||||
extName = 'Tuktuk Cinema'
|
||||
extClass = '.Tuktukcinema'
|
||||
extVersionCode = 24
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib:uqload-extractor'))
|
||||
implementation(project(':lib:okru-extractor'))
|
||||
implementation(project(':lib:dood-extractor'))
|
||||
implementation(project(':lib:streamtape-extractor'))
|
||||
implementation(project(':lib:vidbom-extractor'))
|
||||
implementation(project(':lib:playlist-utils'))
|
||||
implementation(libs.jsunpacker)
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 3.9 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 10 KiB |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB |
|
@ -1,309 +0,0 @@
|
|||
package eu.kanade.tachiyomi.animeextension.ar.tuktukcinema
|
||||
|
||||
import android.app.Application
|
||||
import android.content.SharedPreferences
|
||||
import androidx.preference.ListPreference
|
||||
import androidx.preference.PreferenceScreen
|
||||
import dev.datlag.jsunpacker.JsUnpacker
|
||||
import eu.kanade.tachiyomi.animesource.ConfigurableAnimeSource
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimeFilter
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimeFilterList
|
||||
import eu.kanade.tachiyomi.animesource.model.SAnime
|
||||
import eu.kanade.tachiyomi.animesource.model.SEpisode
|
||||
import eu.kanade.tachiyomi.animesource.model.Video
|
||||
import eu.kanade.tachiyomi.animesource.online.ParsedAnimeHttpSource
|
||||
import eu.kanade.tachiyomi.lib.doodextractor.DoodExtractor
|
||||
import eu.kanade.tachiyomi.lib.okruextractor.OkruExtractor
|
||||
import eu.kanade.tachiyomi.lib.playlistutils.PlaylistUtils
|
||||
import eu.kanade.tachiyomi.lib.streamtapeextractor.StreamTapeExtractor
|
||||
import eu.kanade.tachiyomi.lib.uqloadextractor.UqloadExtractor
|
||||
import eu.kanade.tachiyomi.lib.vidbomextractor.VidBomExtractor
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import eu.kanade.tachiyomi.util.parallelCatchingFlatMapBlocking
|
||||
import okhttp3.Request
|
||||
import okhttp3.Response
|
||||
import org.jsoup.nodes.Document
|
||||
import org.jsoup.nodes.Element
|
||||
import uy.kohesive.injekt.Injekt
|
||||
import uy.kohesive.injekt.api.get
|
||||
|
||||
class Tuktukcinema : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
||||
|
||||
override val name = "توك توك سينما"
|
||||
|
||||
// TODO: Check frequency of url changes to potentially
|
||||
// add back overridable baseurl preference
|
||||
override val baseUrl = "https://w.tuktokcinema.com"
|
||||
|
||||
override val lang = "ar"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
||||
private val preferences: SharedPreferences by lazy {
|
||||
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||
}
|
||||
|
||||
// ============================ popular ===============================
|
||||
|
||||
override fun popularAnimeSelector(): String = "div.Block--Item, div.Small--Box"
|
||||
|
||||
override fun popularAnimeRequest(page: Int): Request = GET(baseUrl)
|
||||
|
||||
override fun popularAnimeFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.title = titleEdit(element.select("a").attr("title"), true).trim()
|
||||
anime.thumbnail_url = element.select("img").attr("data-src")
|
||||
anime.setUrlWithoutDomain(element.select("a").attr("href") + "watch/")
|
||||
return anime
|
||||
}
|
||||
|
||||
private fun titleEdit(title: String, details: Boolean = false): String {
|
||||
return if (Regex("(?:فيلم|عرض)\\s(.*\\s[0-9]+)\\s(.+?)\\s").containsMatchIn(title)) {
|
||||
val titleGroup = Regex("(?:فيلم|عرض)\\s(.*\\s[0-9]+)\\s(.+?)\\s").find(title)
|
||||
val movieName = titleGroup!!.groupValues[1]
|
||||
val type = titleGroup.groupValues[2]
|
||||
movieName + if (details) " ($type)" else ""
|
||||
} else if (Regex("(?:مسلسل|برنامج|انمي)\\s(.+)\\sالحلقة\\s(\\d+)").containsMatchIn(title)) {
|
||||
val titleGroup = Regex("(?:مسلسل|برنامج|انمي)\\s(.+)\\sالحلقة\\s(\\d+)").find(title)
|
||||
val seriesName = titleGroup!!.groupValues[1]
|
||||
val epNum = titleGroup.groupValues[2]
|
||||
if (details) {
|
||||
"$seriesName (ep:$epNum)"
|
||||
} else if (seriesName.contains("الموسم")) {
|
||||
seriesName.split("الموسم")[0].trim()
|
||||
} else {
|
||||
seriesName
|
||||
}
|
||||
} else {
|
||||
title
|
||||
}
|
||||
}
|
||||
|
||||
override fun popularAnimeNextPageSelector(): String = "div.pagination ul.page-numbers li a.next"
|
||||
|
||||
// ============================ episodes ===============================
|
||||
|
||||
private fun seasonsNextPageSelector() = "section.allseasonss div.Block--Item"
|
||||
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
val episodes = mutableListOf<SEpisode>()
|
||||
fun addEpisodeNew(url: String, title: String) {
|
||||
val episode = SEpisode.create()
|
||||
episode.setUrlWithoutDomain(url)
|
||||
episode.name = title
|
||||
episodes.add(episode)
|
||||
}
|
||||
fun addEpisodes(response: Response) {
|
||||
val document = response.asJsoup()
|
||||
val url = response.request.url.toString()
|
||||
if (document.select(seasonsNextPageSelector()).isNullOrEmpty()) {
|
||||
addEpisodeNew("$url/watch/", "مشاهدة")
|
||||
} else {
|
||||
document.select(seasonsNextPageSelector()).reversed().forEach { season ->
|
||||
val seasonNum = season.select("h3").text()
|
||||
(
|
||||
if (seasonNum == document.selectFirst("div#mpbreadcrumbs a span:contains(الموسم)")!!.text()) {
|
||||
document
|
||||
} else {
|
||||
client.newCall(GET(season.selectFirst("a")!!.attr("href"))).execute().asJsoup()
|
||||
}
|
||||
)
|
||||
.select("section.allepcont a").forEach { episode ->
|
||||
addEpisodeNew(
|
||||
episode.attr("href") + "watch/",
|
||||
seasonNum + " : الحلقة " + episode.select("div.epnum").text().filter { it.isDigit() },
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
addEpisodes(response)
|
||||
return episodes
|
||||
}
|
||||
|
||||
override fun episodeListSelector() = "link[rel=canonical]"
|
||||
|
||||
override fun episodeFromElement(element: Element): SEpisode = throw UnsupportedOperationException()
|
||||
|
||||
// ============================ video links ============================
|
||||
override fun videoListRequest(episode: SEpisode): Request {
|
||||
val refererHeaders = headers.newBuilder().apply {
|
||||
add("Referer", "$baseUrl/")
|
||||
}.build()
|
||||
|
||||
return GET("$baseUrl/${episode.url}", headers = refererHeaders)
|
||||
}
|
||||
|
||||
override fun videoListSelector() = "div.watch--servers--list ul li.server--item"
|
||||
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val document = response.asJsoup()
|
||||
return document.select(videoListSelector())
|
||||
.parallelCatchingFlatMapBlocking(::extractVideos)
|
||||
}
|
||||
|
||||
private fun extractVideos(element: Element): List<Video> {
|
||||
val url = element.attr("data-link")
|
||||
val txt = element.text()
|
||||
return when {
|
||||
"Main" in txt -> {
|
||||
videosFromMain(url)
|
||||
}
|
||||
url.contains("ok") -> {
|
||||
OkruExtractor(client).videosFromUrl(url)
|
||||
}
|
||||
"Vidbom" in txt || "Vidshare" in txt || "Govid" in txt -> {
|
||||
VidBomExtractor(client).videosFromUrl(url)
|
||||
}
|
||||
"Doodstream" in txt -> {
|
||||
DoodExtractor(client).videoFromUrl(url, "Dood mirror")?.let(::listOf)
|
||||
}
|
||||
url.contains("uqload") -> {
|
||||
UqloadExtractor(client).videosFromUrl(url, "mirror")
|
||||
}
|
||||
url.contains("tape") -> {
|
||||
StreamTapeExtractor(client).videoFromUrl(url)?.let(::listOf)
|
||||
}
|
||||
"Upstream" in txt || "Streamruby" in txt || "Streamwish" in txt -> {
|
||||
videosFromOthers(url, txt)
|
||||
}
|
||||
else -> null
|
||||
} ?: emptyList()
|
||||
}
|
||||
|
||||
override fun List<Video>.sort(): List<Video> {
|
||||
val quality = preferences.getString("preferred_quality", null)!!
|
||||
return sortedWith(
|
||||
compareBy { it.quality.contains(quality) },
|
||||
).reversed()
|
||||
}
|
||||
|
||||
override fun videoUrlParse(document: Document) = throw UnsupportedOperationException()
|
||||
|
||||
override fun videoFromElement(element: Element) = throw UnsupportedOperationException()
|
||||
|
||||
private fun videosFromMain(url: String): List<Video> {
|
||||
val jsE = client.newCall(GET(url)).execute().asJsoup().selectFirst("script:containsData(player)")!!.data()
|
||||
val fileLinks = JsUnpacker.unpackAndCombine(jsE)!!.substringAfter("file").substringBefore("\",")
|
||||
return Regex("\\[(.*?)\\](.*?mp4)").findAll(fileLinks).map {
|
||||
Video(it.groupValues[2], "Main: " + it.groupValues[1], it.groupValues[2])
|
||||
}.toList()
|
||||
}
|
||||
private fun videosFromOthers(url: String, prefix: String): List<Video> {
|
||||
val jsE = client.newCall(GET(url)).execute().asJsoup().selectFirst("script:containsData(source)")!!.data()
|
||||
val masterUrl = JsUnpacker.unpackAndCombine(jsE)!!.substringAfter("file").substringAfter("\"").substringBefore("\"")
|
||||
return PlaylistUtils(client).extractFromHls(masterUrl, url, videoNameGen = { "$prefix - $it" })
|
||||
}
|
||||
// ============================ search ============================
|
||||
|
||||
override fun searchAnimeSelector(): String = "div.Block--Item"
|
||||
|
||||
override fun searchAnimeNextPageSelector(): String = "div.pagination ul.page-numbers li a.next"
|
||||
|
||||
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request {
|
||||
val url = if (query.isNotBlank()) {
|
||||
"$baseUrl/?s=$query&page=$page"
|
||||
} else {
|
||||
val url = baseUrl
|
||||
(if (filters.isEmpty()) getFilterList() else filters).forEach { filter ->
|
||||
when (filter) {
|
||||
is CategoryList -> {
|
||||
if (filter.state > 0) {
|
||||
val catQ = getCategoryList()[filter.state].query
|
||||
val catUrl = "$baseUrl/$catQ/?page=$page/"
|
||||
return GET(catUrl, headers)
|
||||
}
|
||||
}
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
return GET(url, headers)
|
||||
}
|
||||
return GET(url, headers)
|
||||
}
|
||||
|
||||
override fun searchAnimeFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.title = titleEdit(element.select("h3").text(), true).trim()
|
||||
anime.thumbnail_url = element.select("img").attr(if (element.ownerDocument()!!.location().contains("?s="))"src" else "data-src")
|
||||
anime.setUrlWithoutDomain(element.select("a").attr("href") + "watch/")
|
||||
return anime
|
||||
}
|
||||
|
||||
// ============================ details ============================
|
||||
|
||||
override fun animeDetailsParse(document: Document): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.genre = document.select("div.catssection li a").joinToString(", ") { it.text() }
|
||||
anime.title = titleEdit(document.select("h1.post-title").text()).trim()
|
||||
anime.author = document.select("ul.RightTaxContent li:contains(دولة) a").text()
|
||||
anime.description = document.select("div.story").text().trim()
|
||||
anime.status = SAnime.COMPLETED
|
||||
anime.thumbnail_url = document.select("div.left div.image img").attr("src")
|
||||
return anime
|
||||
}
|
||||
|
||||
// ============================ latest ============================
|
||||
|
||||
override fun latestUpdatesSelector(): String = "div.Block--Item"
|
||||
|
||||
override fun latestUpdatesNextPageSelector(): String = "div.pagination ul.page-numbers li a.next"
|
||||
|
||||
override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/recent/page/$page/")
|
||||
|
||||
override fun latestUpdatesFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.title = titleEdit(element.select("a").attr("title"), true).trim()
|
||||
anime.thumbnail_url = element.select("img").attr("data-src")
|
||||
anime.setUrlWithoutDomain(element.select("a").attr("href") + "watch/")
|
||||
return anime
|
||||
}
|
||||
|
||||
// ============================ filters ============================
|
||||
|
||||
override fun getFilterList() = AnimeFilterList(
|
||||
CategoryList(categoriesName),
|
||||
)
|
||||
|
||||
private class CategoryList(categories: Array<String>) : AnimeFilter.Select<String>("الأقسام", categories)
|
||||
private data class CatUnit(val name: String, val query: String)
|
||||
private val categoriesName = getCategoryList().map {
|
||||
it.name
|
||||
}.toTypedArray()
|
||||
|
||||
private fun getCategoryList() = listOf(
|
||||
CatUnit("اختر", ""),
|
||||
CatUnit("كل الافلام", "category/movies-33/"),
|
||||
CatUnit("افلام اجنبى", "category/movies-33/افلام-اجنبي/"),
|
||||
CatUnit("افلام انمى", "category/anime-6/افلام-انمي/"),
|
||||
CatUnit("افلام تركيه", "category/movies-33/افلام-تركي/"),
|
||||
CatUnit("افلام اسيويه", "category/movies-33/افلام-اسيوي/"),
|
||||
CatUnit("افلام هنديه", "category/movies-33/افلام-هندى/"),
|
||||
CatUnit("كل المسسلسلات", "category/series-9/"),
|
||||
CatUnit("مسلسلات اجنبى", "category/series-9/مسلسلات-اجنبي/"),
|
||||
CatUnit("مسلسلات انمى", "category/anime-6/انمي-مترجم/"),
|
||||
CatUnit("مسلسلات تركى", "category/series-9/مسلسلات-تركي/"),
|
||||
CatUnit("مسلسلات اسيوى", "category/series-9/مسلسلات-أسيوي/"),
|
||||
CatUnit("مسلسلات هندى", "category/series-9/مسلسلات-هندي/"),
|
||||
)
|
||||
|
||||
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||
val videoQualityPref = ListPreference(screen.context).apply {
|
||||
key = "preferred_quality"
|
||||
title = "Preferred quality"
|
||||
entries = arrayOf("720p", "480p", "Low", "Normal", "HD", "UHD", "DoodStream", "Uqload")
|
||||
entryValues = arrayOf("720", "480", "Low", "Normal", "HD", "UHD", "Dood", "Uqload")
|
||||
setDefaultValue("1080")
|
||||
summary = "%s"
|
||||
|
||||
setOnPreferenceChangeListener { _, newValue ->
|
||||
val selected = newValue as String
|
||||
val index = findIndexOfValue(selected)
|
||||
val entry = entryValues[index] as String
|
||||
preferences.edit().putString(key, entry).commit()
|
||||
}
|
||||
}
|
||||
screen.addPreference(videoQualityPref)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue