Initial commit
This commit is contained in:
commit
98ed7e8839
2263 changed files with 108711 additions and 0 deletions
12
src/ar/animeblkom/build.gradle
Normal file
12
src/ar/animeblkom/build.gradle
Normal file
|
@ -0,0 +1,12 @@
|
|||
ext {
|
||||
extName = 'Anime Blkom'
|
||||
extClass = '.AnimeBlkom'
|
||||
extVersionCode = 17
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib:mp4upload-extractor'))
|
||||
implementation(project(":lib:okru-extractor"))
|
||||
}
|
BIN
src/ar/animeblkom/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/ar/animeblkom/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
src/ar/animeblkom/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/ar/animeblkom/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
src/ar/animeblkom/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/ar/animeblkom/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4 KiB |
BIN
src/ar/animeblkom/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/ar/animeblkom/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.1 KiB |
BIN
src/ar/animeblkom/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/ar/animeblkom/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
src/ar/animeblkom/res/web_hi_res_512.png
Normal file
BIN
src/ar/animeblkom/res/web_hi_res_512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
|
@ -0,0 +1,252 @@
|
|||
package eu.kanade.tachiyomi.animeextension.ar.animeblkom
|
||||
|
||||
import android.app.Application
|
||||
import androidx.preference.ListPreference
|
||||
import androidx.preference.PreferenceScreen
|
||||
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.mp4uploadextractor.Mp4uploadExtractor
|
||||
import eu.kanade.tachiyomi.lib.okruextractor.OkruExtractor
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
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
|
||||
import java.lang.Exception
|
||||
|
||||
class AnimeBlkom : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
||||
|
||||
override val name = "أنمي بالكوم"
|
||||
|
||||
override val baseUrl by lazy { preferences.getString(PREF_DOMAIN_KEY, PREF_DOMAIN_DEFAULT)!! }
|
||||
|
||||
override val lang = "ar"
|
||||
|
||||
override val supportsLatest = false
|
||||
|
||||
override fun headersBuilder() = super.headersBuilder()
|
||||
.add("referer", baseUrl)
|
||||
|
||||
private val preferences by lazy {
|
||||
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||
}
|
||||
|
||||
// ============================== Popular ===============================
|
||||
override fun popularAnimeRequest(page: Int) = GET("$baseUrl/animes-list/?sort_by=rate&page=$page", headers)
|
||||
|
||||
override fun popularAnimeSelector() = "div.contents div.poster > a"
|
||||
|
||||
override fun popularAnimeFromElement(element: Element) = SAnime.create().apply {
|
||||
val img = element.selectFirst("img")!!
|
||||
thumbnail_url = img.attr("abs:data-original")
|
||||
title = img.attr("alt").removeSuffix(" poster")
|
||||
setUrlWithoutDomain(element.attr("href"))
|
||||
}
|
||||
|
||||
override fun popularAnimeNextPageSelector() = "ul.pagination li.page-item a[rel=next]"
|
||||
|
||||
// =============================== Latest ===============================
|
||||
override fun latestUpdatesRequest(page: Int): Request = throw UnsupportedOperationException()
|
||||
|
||||
override fun latestUpdatesSelector(): String = throw UnsupportedOperationException()
|
||||
|
||||
override fun latestUpdatesFromElement(element: Element): SAnime = throw UnsupportedOperationException()
|
||||
|
||||
override fun latestUpdatesNextPageSelector(): String = throw UnsupportedOperationException()
|
||||
|
||||
// =============================== Search ===============================
|
||||
override fun searchAnimeFromElement(element: Element) = popularAnimeFromElement(element)
|
||||
|
||||
override fun searchAnimeNextPageSelector() = popularAnimeNextPageSelector()
|
||||
|
||||
override fun searchAnimeSelector() = popularAnimeSelector()
|
||||
|
||||
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request {
|
||||
val url = if (query.isNotBlank()) {
|
||||
"$baseUrl/search?query=$query&page=$page"
|
||||
} else {
|
||||
filters
|
||||
.filterIsInstance<TypeList>()
|
||||
.firstOrNull()
|
||||
?.takeIf { it.state > 0 }
|
||||
?.let { filter ->
|
||||
val genreN = getTypeList()[filter.state].query
|
||||
"$baseUrl/$genreN?page=$page"
|
||||
}
|
||||
?: throw Exception("اختر فلتر")
|
||||
}
|
||||
return GET(url, headers)
|
||||
}
|
||||
|
||||
// =========================== Anime Details ============================
|
||||
override fun animeDetailsParse(document: Document) = SAnime.create().apply {
|
||||
thumbnail_url = document.selectFirst("div.poster img")!!.attr("abs:data-original")
|
||||
title = document.selectFirst("div.name span h1")!!.text()
|
||||
genre = document.select("p.genres a").joinToString { it.text() }
|
||||
description = document.selectFirst("div.story p, div.story")?.text()
|
||||
author = document.selectFirst("div:contains(الاستديو) span > a")?.text()
|
||||
status = document.selectFirst("div.info-table div:contains(حالة الأنمي) span.info")?.text()?.let {
|
||||
when {
|
||||
it.contains("مستمر") -> SAnime.ONGOING
|
||||
it.contains("مكتمل") -> SAnime.COMPLETED
|
||||
else -> null
|
||||
}
|
||||
} ?: SAnime.UNKNOWN
|
||||
artist = document.selectFirst("div:contains(المخرج) > span.info")?.text()
|
||||
}
|
||||
|
||||
// ============================== Episodes ==============================
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
val document = response.asJsoup()
|
||||
if (document.selectFirst(episodeListSelector()) == null) {
|
||||
return oneEpisodeParse(document)
|
||||
}
|
||||
return document.select(episodeListSelector()).map(::episodeFromElement).reversed()
|
||||
}
|
||||
|
||||
private fun oneEpisodeParse(document: Document): List<SEpisode> {
|
||||
return SEpisode.create().apply {
|
||||
setUrlWithoutDomain(document.location())
|
||||
episode_number = 1F
|
||||
name = document.selectFirst("div.name.col-xs-12 span h1")!!.text()
|
||||
}.let(::listOf)
|
||||
}
|
||||
|
||||
override fun episodeListSelector() = "ul.episodes-links li a"
|
||||
|
||||
override fun episodeFromElement(element: Element): SEpisode {
|
||||
return SEpisode.create().apply {
|
||||
setUrlWithoutDomain(element.attr("href"))
|
||||
|
||||
val eptitle = element.selectFirst("span:nth-child(3)")!!.text()
|
||||
val epNum = eptitle.filter { it.isDigit() }
|
||||
episode_number = when {
|
||||
epNum.isNotEmpty() -> epNum.toFloatOrNull() ?: 1F
|
||||
else -> 1F
|
||||
}
|
||||
name = eptitle + " :" + element.selectFirst("span:nth-child(1)")!!.text()
|
||||
}
|
||||
}
|
||||
|
||||
// ============================ Video Links =============================
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val document = response.asJsoup()
|
||||
return document.select("span.server a").flatMap {
|
||||
runCatching { extractVideos(it) }.getOrElse { emptyList() }
|
||||
}
|
||||
}
|
||||
|
||||
private val okruExtractor by lazy { OkruExtractor(client) }
|
||||
private val mp4uploadExtractor by lazy { Mp4uploadExtractor(client) }
|
||||
|
||||
private fun extractVideos(element: Element): List<Video> {
|
||||
val url = element.attr("data-src").replace("http://", "https://")
|
||||
return when {
|
||||
".vid4up" in url || "Blkom" in element.text() -> {
|
||||
val videoDoc = client.newCall(GET(url, headers)).execute()
|
||||
.asJsoup()
|
||||
videoDoc.select(videoListSelector()).map(::videoFromElement)
|
||||
}
|
||||
"ok.ru" in url -> okruExtractor.videosFromUrl(url)
|
||||
"mp4upload" in url -> mp4uploadExtractor.videosFromUrl(url, headers)
|
||||
else -> emptyList()
|
||||
}
|
||||
}
|
||||
|
||||
override fun videoListSelector() = "source"
|
||||
|
||||
override fun videoFromElement(element: Element): Video {
|
||||
val videoUrl = element.attr("src")
|
||||
return Video(videoUrl, "Blkom - " + element.attr("label"), videoUrl, headers)
|
||||
}
|
||||
|
||||
override fun videoUrlParse(document: Document) = throw UnsupportedOperationException()
|
||||
|
||||
// ============================== Filters ===============================
|
||||
override fun getFilterList() = AnimeFilterList(
|
||||
AnimeFilter.Header("الفلترات مش هتشتغل لو بتبحث او وهي فاضيه"),
|
||||
TypeList(typesName),
|
||||
)
|
||||
|
||||
private class TypeList(types: Array<String>) : AnimeFilter.Select<String>("نوع الأنمي", types)
|
||||
private data class Type(val name: String, val query: String)
|
||||
private val typesName = getTypeList().map {
|
||||
it.name
|
||||
}.toTypedArray()
|
||||
|
||||
private fun getTypeList() = listOf(
|
||||
Type("اختر", ""),
|
||||
Type("قائمة الأنمي", "anime-list"),
|
||||
Type(" قائمة المسلسلات ", "series-list"),
|
||||
Type(" قائمة الأفلام ", "movie-list"),
|
||||
Type(" قائمة الأوفا ", "ova-list"),
|
||||
Type(" قائمة الأونا ", "ona-list"),
|
||||
Type(" قائمة الحلقات خاصة ", "special-list"),
|
||||
)
|
||||
|
||||
// ============================== Settings ==============================
|
||||
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||
ListPreference(screen.context).apply {
|
||||
key = PREF_QUALITY_KEY
|
||||
title = PREF_QUALITY_TITLE
|
||||
entries = PREF_QUALITY_ENTRIES
|
||||
entryValues = PREF_QUALITY_ENTRIES
|
||||
setDefaultValue(PREF_QUALITY_DEFAULT)
|
||||
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()
|
||||
}
|
||||
}.also(screen::addPreference)
|
||||
|
||||
ListPreference(screen.context).apply {
|
||||
key = PREF_DOMAIN_KEY
|
||||
title = PREF_DOMAIN_TITLE
|
||||
entries = PREF_DOMAIN_ENTRIES
|
||||
entryValues = PREF_DOMAIN_VALUES
|
||||
setDefaultValue(PREF_DOMAIN_DEFAULT)
|
||||
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()
|
||||
}
|
||||
}.also(screen::addPreference)
|
||||
}
|
||||
|
||||
// ============================= Utilities ==============================
|
||||
override fun List<Video>.sort(): List<Video> {
|
||||
val quality = preferences.getString(PREF_QUALITY_KEY, PREF_QUALITY_DEFAULT)!!
|
||||
return sortedWith(
|
||||
compareBy { it.quality.contains(quality) },
|
||||
).reversed()
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val PREF_QUALITY_KEY = "preferred_quality"
|
||||
private const val PREF_QUALITY_TITLE = "Preferred quality"
|
||||
private const val PREF_QUALITY_DEFAULT = "720p"
|
||||
private val PREF_QUALITY_ENTRIES = arrayOf("1080p", "720p", "480p", "360p", "240p")
|
||||
|
||||
private const val PREF_DOMAIN_KEY = "pref_domain_key"
|
||||
private const val PREF_DOMAIN_TITLE = "Preferred domain"
|
||||
private const val PREF_DOMAIN_DEFAULT = "https://animeblkom.net"
|
||||
private val PREF_DOMAIN_ENTRIES = arrayOf("animeblkom.net", "animeblkom.tv", "blkom.com")
|
||||
private val PREF_DOMAIN_VALUES by lazy {
|
||||
PREF_DOMAIN_ENTRIES.map { "https://$it" }.toTypedArray()
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue