add sources and fix
parent
400a90464e
commit
09500c0734
@ -0,0 +1,178 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.all
|
||||||
|
|
||||||
|
import androidx.collection.ArraySet
|
||||||
|
import kotlinx.coroutines.async
|
||||||
|
import kotlinx.coroutines.awaitAll
|
||||||
|
import kotlinx.coroutines.coroutineScope
|
||||||
|
import org.jsoup.nodes.Element
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.PagedMangaParser
|
||||||
|
import org.koitharu.kotatsu.parsers.config.ConfigKey
|
||||||
|
import org.koitharu.kotatsu.parsers.model.*
|
||||||
|
import org.koitharu.kotatsu.parsers.util.*
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
@MangaSourceParser("HENTAIFOX", "Hentai Fox", type = ContentType.HENTAI)
|
||||||
|
internal class HentaiFox(context: MangaLoaderContext) : PagedMangaParser(context, MangaSource.HENTAIFOX, 20) {
|
||||||
|
|
||||||
|
override val sortOrders: Set<SortOrder> = EnumSet.of(SortOrder.UPDATED)
|
||||||
|
override val configKeyDomain = ConfigKey.Domain("hentaifox.com")
|
||||||
|
|
||||||
|
override suspend fun getListPage(
|
||||||
|
page: Int,
|
||||||
|
query: String?,
|
||||||
|
tags: Set<MangaTag>?,
|
||||||
|
sortOrder: SortOrder,
|
||||||
|
): List<Manga> {
|
||||||
|
val tag = tags.oneOrThrowIfMany()
|
||||||
|
|
||||||
|
val url = buildString {
|
||||||
|
append("https://$domain")
|
||||||
|
if (!tags.isNullOrEmpty()) {
|
||||||
|
append("/tag/")
|
||||||
|
append(tag?.key.orEmpty())
|
||||||
|
if (page > 1) {
|
||||||
|
append("/pag/")
|
||||||
|
append(page)
|
||||||
|
append("/")
|
||||||
|
}
|
||||||
|
} else if (!query.isNullOrEmpty()) {
|
||||||
|
append("/search/?q=")
|
||||||
|
append(query.urlEncoded())
|
||||||
|
if (page > 1) {
|
||||||
|
append("&page=")
|
||||||
|
append(page)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (page > 2) {
|
||||||
|
append("/pag/")
|
||||||
|
append(page)
|
||||||
|
append("/")
|
||||||
|
} else if (page > 1) {
|
||||||
|
append("/page/")
|
||||||
|
append(page)
|
||||||
|
append("/")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val doc = webClient.httpGet(url).parseHtml()
|
||||||
|
return doc.select(".lc_galleries .thumb").map { div ->
|
||||||
|
val href = div.selectFirstOrThrow(".inner_thumb a").attrAsRelativeUrl("href")
|
||||||
|
Manga(
|
||||||
|
id = generateUid(href),
|
||||||
|
title = div.select("h2.g_title").text(),
|
||||||
|
altTitle = null,
|
||||||
|
url = href,
|
||||||
|
publicUrl = href.toAbsoluteUrl(domain),
|
||||||
|
rating = RATING_UNKNOWN,
|
||||||
|
isNsfw = isNsfwSource,
|
||||||
|
coverUrl = div.selectFirstOrThrow("img").src().orEmpty(),
|
||||||
|
tags = emptySet(),
|
||||||
|
state = null,
|
||||||
|
author = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getTags(): Set<MangaTag> {
|
||||||
|
val root = webClient.httpGet("https://$domain/tags/").parseHtml()
|
||||||
|
val totalPagesTags = root.select("ul.pagination a.page-link").dropLast(1).last().text().toInt()
|
||||||
|
return coroutineScope {
|
||||||
|
(1..totalPagesTags).map { page ->
|
||||||
|
async { getTags(page) }
|
||||||
|
}
|
||||||
|
}.awaitAll().flattenTo(ArraySet(360))
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun getTags(page: Int): Set<MangaTag> {
|
||||||
|
val url = "https://$domain/tags/pag/$page/"
|
||||||
|
val root = webClient.httpGet(url).parseHtml()
|
||||||
|
return root.parseTags()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun Element.parseTags() = select(".list_tags a.tag_btn").mapToSet { it ->
|
||||||
|
val key = it.attr("href").removeSuffix('/').substringAfterLast('/')
|
||||||
|
MangaTag(
|
||||||
|
key = key,
|
||||||
|
title = it.selectFirstOrThrow("h3").text(),
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
override suspend fun getDetails(manga: Manga): Manga {
|
||||||
|
val doc = webClient.httpGet(manga.url.toAbsoluteUrl(domain)).parseHtml()
|
||||||
|
val urlChapters = manga.url.replace("/gallery/", "/g/") + "1/"
|
||||||
|
return manga.copy(
|
||||||
|
altTitle = null,
|
||||||
|
tags = doc.select("ul.tags a.tag_btn ").mapNotNullToSet {
|
||||||
|
val key = it.attr("href").removeSuffix('/').substringAfterLast('/')
|
||||||
|
MangaTag(
|
||||||
|
key = key,
|
||||||
|
title = it.html().substringBefore("<span"),
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
author = doc.selectFirst("ul.artists a.tag_btn")?.html()?.substringBefore("<span"),
|
||||||
|
description = null,
|
||||||
|
chapters = listOf(
|
||||||
|
MangaChapter(
|
||||||
|
id = manga.id,
|
||||||
|
name = manga.title,
|
||||||
|
number = 1,
|
||||||
|
url = urlChapters,
|
||||||
|
scanlator = null,
|
||||||
|
uploadDate = 0,
|
||||||
|
branch = doc.selectFirstOrThrow("ul.languages a.tag_btn").html().substringBefore("<span"),
|
||||||
|
source = source,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getRelatedManga(seed: Manga): List<Manga> {
|
||||||
|
val doc = webClient.httpGet(seed.url.toAbsoluteUrl(domain)).parseHtml()
|
||||||
|
val root = doc.body().selectFirstOrThrow(".related_galleries")
|
||||||
|
return root.select("div.thumb").mapNotNull { div ->
|
||||||
|
val a = div.selectFirst(".inner_thumb a") ?: return@mapNotNull null
|
||||||
|
val href = a.attrAsRelativeUrl("href")
|
||||||
|
Manga(
|
||||||
|
id = generateUid(href),
|
||||||
|
url = href,
|
||||||
|
publicUrl = href.toAbsoluteUrl(a.host ?: domain),
|
||||||
|
altTitle = null,
|
||||||
|
title = div.selectFirstOrThrow("h2.g_title").text(),
|
||||||
|
author = null,
|
||||||
|
coverUrl = div.selectFirst("img")?.src().orEmpty(),
|
||||||
|
tags = emptySet(),
|
||||||
|
rating = RATING_UNKNOWN,
|
||||||
|
state = null,
|
||||||
|
isNsfw = isNsfwSource,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getPages(chapter: MangaChapter): List<MangaPage> {
|
||||||
|
val doc = webClient.httpGet(chapter.url.toAbsoluteUrl(domain)).parseHtml()
|
||||||
|
val totalPages = doc.selectFirstOrThrow(".total_pages").text().toInt()
|
||||||
|
val rawUrl = chapter.url.replace("/1/", "/")
|
||||||
|
return (1..totalPages).map {
|
||||||
|
val url = "$rawUrl$it/"
|
||||||
|
MangaPage(
|
||||||
|
id = generateUid(url),
|
||||||
|
url = url,
|
||||||
|
preview = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getPageUrl(page: MangaPage): String {
|
||||||
|
val doc = webClient.httpGet(page.url.toAbsoluteUrl(domain)).parseHtml()
|
||||||
|
val root = doc.body()
|
||||||
|
return root.requireElementById("gimg").attr("data-src") ?: doc.parseFailed("Page image not found")
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,163 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.ar
|
||||||
|
|
||||||
|
import kotlinx.coroutines.async
|
||||||
|
import kotlinx.coroutines.coroutineScope
|
||||||
|
import org.json.JSONArray
|
||||||
|
import org.json.JSONObject
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.PagedMangaParser
|
||||||
|
import org.koitharu.kotatsu.parsers.config.ConfigKey
|
||||||
|
import org.koitharu.kotatsu.parsers.model.*
|
||||||
|
import org.koitharu.kotatsu.parsers.util.*
|
||||||
|
import org.koitharu.kotatsu.parsers.util.json.mapJSON
|
||||||
|
import org.koitharu.kotatsu.parsers.util.json.mapJSONIndexed
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
@MangaSourceParser("FLIXSCANS", "Flix Scans", "ar")
|
||||||
|
internal class FlixScans(context: MangaLoaderContext) : PagedMangaParser(context, MangaSource.FLIXSCANS, 18) {
|
||||||
|
|
||||||
|
override val sortOrders: Set<SortOrder> = EnumSet.of(SortOrder.UPDATED)
|
||||||
|
override val configKeyDomain = ConfigKey.Domain("flixscans.com")
|
||||||
|
|
||||||
|
override suspend fun getListPage(
|
||||||
|
page: Int,
|
||||||
|
query: String?,
|
||||||
|
tags: Set<MangaTag>?,
|
||||||
|
sortOrder: SortOrder,
|
||||||
|
): List<Manga> {
|
||||||
|
val json = if (!query.isNullOrEmpty()) {
|
||||||
|
if (page > 1) {
|
||||||
|
return emptyList()
|
||||||
|
}
|
||||||
|
val url = "https://api.$domain/api/v1/search/serie"
|
||||||
|
val body = JSONObject()
|
||||||
|
body.put("title", query.urlEncoded())
|
||||||
|
webClient.httpPost(url, body).parseJson().getJSONArray("data")
|
||||||
|
} else if (!tags.isNullOrEmpty()) {
|
||||||
|
if (page > 1) {
|
||||||
|
return emptyList()
|
||||||
|
}
|
||||||
|
val tagQuery = tags.joinToString(separator = ",") { it.key }
|
||||||
|
val url = "https://api.$domain/api/v1/search/advance?=&genres=$tagQuery&serie_type=webtoon"
|
||||||
|
webClient.httpGet(url).parseJson().getJSONArray("data")
|
||||||
|
} else {
|
||||||
|
val url = "https://api.$domain/api/v1/webtoon/homepage/latest/home?page=$page"
|
||||||
|
webClient.httpGet(url).parseJson().getJSONArray("data")
|
||||||
|
}
|
||||||
|
return json.mapJSON { j ->
|
||||||
|
val href = "https://$domain/series/${j.getString("prefix")}-${j.getString("id")}-${j.getString("slug")}"
|
||||||
|
val cover = "https://api.$domain/storage/" + j.getString("thumbnail")
|
||||||
|
Manga(
|
||||||
|
id = generateUid(href),
|
||||||
|
title = j.getString("title"),
|
||||||
|
altTitle = null,
|
||||||
|
url = href,
|
||||||
|
publicUrl = href.toAbsoluteUrl(domain),
|
||||||
|
rating = RATING_UNKNOWN,
|
||||||
|
isNsfw = false,
|
||||||
|
coverUrl = cover,
|
||||||
|
tags = emptySet(),
|
||||||
|
state = when (j.getString("status")) {
|
||||||
|
"ongoing" -> MangaState.ONGOING
|
||||||
|
"completed" -> MangaState.FINISHED
|
||||||
|
else -> null
|
||||||
|
},
|
||||||
|
author = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getTags(): Set<MangaTag> {
|
||||||
|
val doc = webClient.httpGet("https://$domain/search/advance").parseHtml()
|
||||||
|
val json = JSONArray(doc.requireElementById("__NUXT_DATA__").data())
|
||||||
|
val tagsList = json.getJSONArray(3).toString().replace("[", "").replace("]", "").split(",")
|
||||||
|
return tagsList.mapNotNullToSet { idTag ->
|
||||||
|
val id = idTag.toInt()
|
||||||
|
val idKey = json.getJSONObject(id).getInt("id")
|
||||||
|
val key = json.get(idKey).toString()
|
||||||
|
val idName = json.getJSONObject(id).getInt("name")
|
||||||
|
val name = json.get(idName).toString()
|
||||||
|
MangaTag(
|
||||||
|
key = key,
|
||||||
|
title = name,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getDetails(manga: Manga): Manga = coroutineScope {
|
||||||
|
val doc = webClient.httpGet(manga.url.toAbsoluteUrl(domain)).parseHtml()
|
||||||
|
val chaptersDeferred = async { loadChapters(manga.url) }
|
||||||
|
val json = JSONArray(doc.requireElementById("__NUXT_DATA__").data())
|
||||||
|
val descId = json.getJSONObject(6).getInt("story")
|
||||||
|
val desc = json.getString(descId)
|
||||||
|
val tagsId = json.getJSONObject(6).getInt("genres")
|
||||||
|
val tagsList = json.getJSONArray(tagsId).toString().replace("[", "").replace("]", "").split(",")
|
||||||
|
val ratingId = json.getJSONObject(6).getInt("rating")
|
||||||
|
val rating = json.getString(ratingId)
|
||||||
|
val nsfwId = json.getJSONObject(6).getInt("nsfw")
|
||||||
|
val nsfw = json.getBoolean(nsfwId)
|
||||||
|
manga.copy(
|
||||||
|
description = desc,
|
||||||
|
tags = tagsList.mapToSet { idTag ->
|
||||||
|
val id = idTag.toInt()
|
||||||
|
val idKey = json.getJSONObject(id).getInt("id")
|
||||||
|
val key = json.get(idKey).toString()
|
||||||
|
val idName = json.getJSONObject(id).getInt("name")
|
||||||
|
val name = json.get(idName).toString()
|
||||||
|
MangaTag(
|
||||||
|
key = key,
|
||||||
|
title = name,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
rating = rating?.toFloatOrNull()?.div(5f) ?: RATING_UNKNOWN,
|
||||||
|
isNsfw = nsfw,
|
||||||
|
chapters = chaptersDeferred.await(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private val dateFormat = SimpleDateFormat("yyyy-MM-dd", sourceLocale)
|
||||||
|
|
||||||
|
private suspend fun loadChapters(baseUrl: String): List<MangaChapter> {
|
||||||
|
val key = baseUrl.substringAfter("-").substringBefore("-")
|
||||||
|
val seriesKey = baseUrl.substringAfterLast("/").substringBefore("-")
|
||||||
|
val json = JSONArray(webClient.httpGet("https://api.$domain/api/v1/webtoon/chapters/$key-desc").parseRaw())
|
||||||
|
return json.mapJSONIndexed { i, j ->
|
||||||
|
val url = "https://$domain/read/webtoon/$seriesKey-${j.getString("id")}-${j.getString("slug")}"
|
||||||
|
val date = j.getString("createdAt").substringBeforeLast("T")
|
||||||
|
MangaChapter(
|
||||||
|
id = generateUid(url),
|
||||||
|
url = url,
|
||||||
|
name = j.getString("slug").replace("-", " "),
|
||||||
|
number = i + 1,
|
||||||
|
branch = null,
|
||||||
|
uploadDate = dateFormat.tryParse(date),
|
||||||
|
scanlator = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getPages(chapter: MangaChapter): List<MangaPage> {
|
||||||
|
val fullUrl = chapter.url.toAbsoluteUrl(domain)
|
||||||
|
val doc = webClient.httpGet(fullUrl).parseHtml()
|
||||||
|
val json = JSONArray(doc.requireElementById("__NUXT_DATA__").data())
|
||||||
|
val chapterData = json.getJSONObject(6).getInt("chapterData")
|
||||||
|
val pageLocate = json.getJSONObject(chapterData).getInt("webtoon")
|
||||||
|
val pages = json.getJSONArray(pageLocate).toString().replace("[", "").replace("]", "").split(",")
|
||||||
|
return pages.map {
|
||||||
|
val id = it.toInt()
|
||||||
|
val url = "https://api.$domain/storage/" + json.getString(id)
|
||||||
|
MangaPage(
|
||||||
|
id = generateUid(url),
|
||||||
|
url = url,
|
||||||
|
preview = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,123 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.ar
|
||||||
|
|
||||||
|
import okhttp3.Headers
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.PagedMangaParser
|
||||||
|
import org.koitharu.kotatsu.parsers.config.ConfigKey
|
||||||
|
import org.koitharu.kotatsu.parsers.model.*
|
||||||
|
import org.koitharu.kotatsu.parsers.network.UserAgents
|
||||||
|
import org.koitharu.kotatsu.parsers.util.*
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
@MangaSourceParser("MANGASTORM", "Manga Storm", "ar")
|
||||||
|
internal class MangaStorm(context: MangaLoaderContext) : PagedMangaParser(context, MangaSource.MANGASTORM, 30) {
|
||||||
|
|
||||||
|
override val sortOrders: Set<SortOrder> = EnumSet.of(SortOrder.POPULARITY)
|
||||||
|
override val configKeyDomain = ConfigKey.Domain("mangastorm.org")
|
||||||
|
|
||||||
|
override val headers: Headers = Headers.Builder()
|
||||||
|
.add("User-Agent", UserAgents.CHROME_DESKTOP)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override suspend fun getListPage(
|
||||||
|
page: Int,
|
||||||
|
query: String?,
|
||||||
|
tags: Set<MangaTag>?,
|
||||||
|
sortOrder: SortOrder,
|
||||||
|
): List<Manga> {
|
||||||
|
val tag = tags.oneOrThrowIfMany()
|
||||||
|
|
||||||
|
val url =
|
||||||
|
if (!tags.isNullOrEmpty()) {
|
||||||
|
buildString {
|
||||||
|
append("https://")
|
||||||
|
append(domain)
|
||||||
|
append("/categories/")
|
||||||
|
append(tag?.key.orEmpty())
|
||||||
|
append("?page=")
|
||||||
|
append(page)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
buildString {
|
||||||
|
append("https://")
|
||||||
|
append(domain)
|
||||||
|
append("/mangas?page=")
|
||||||
|
append(page)
|
||||||
|
if (!query.isNullOrEmpty()) {
|
||||||
|
append("&query=")
|
||||||
|
append(query.urlEncoded())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val doc = webClient.httpGet(url).parseHtml()
|
||||||
|
|
||||||
|
return doc.select("div.row div.col").map { div ->
|
||||||
|
val href = div.selectFirstOrThrow("a").attrAsRelativeUrl("href")
|
||||||
|
Manga(
|
||||||
|
id = generateUid(href),
|
||||||
|
title = div.select(".manga-ct-title").text(),
|
||||||
|
altTitle = null,
|
||||||
|
url = href,
|
||||||
|
publicUrl = href.toAbsoluteUrl(domain),
|
||||||
|
rating = RATING_UNKNOWN,
|
||||||
|
isNsfw = false,
|
||||||
|
coverUrl = div.selectFirstOrThrow("img").src().orEmpty(),
|
||||||
|
tags = emptySet(),
|
||||||
|
state = null,
|
||||||
|
author = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getTags(): Set<MangaTag> = emptySet()
|
||||||
|
|
||||||
|
override suspend fun getDetails(manga: Manga): Manga {
|
||||||
|
val doc = webClient.httpGet(manga.url.toAbsoluteUrl(domain)).parseHtml()
|
||||||
|
|
||||||
|
val root = doc.selectFirstOrThrow(".card-body .col-lg-9")
|
||||||
|
|
||||||
|
return manga.copy(
|
||||||
|
altTitle = null,
|
||||||
|
state = null,
|
||||||
|
tags = root.select(".flex-wrap a").mapNotNullToSet { a ->
|
||||||
|
MangaTag(
|
||||||
|
key = a.attr("href").substringAfterLast('/'),
|
||||||
|
title = a.text(),
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
author = null,
|
||||||
|
description = root.selectFirstOrThrow(".card-text").text(),
|
||||||
|
chapters = doc.select(".card-body a.btn-fixed-width").mapChapters(reversed = true) { i, a ->
|
||||||
|
val url = a.attrAsRelativeUrl("href")
|
||||||
|
MangaChapter(
|
||||||
|
id = generateUid(url),
|
||||||
|
name = a.text(),
|
||||||
|
number = i + 1,
|
||||||
|
url = url,
|
||||||
|
scanlator = null,
|
||||||
|
uploadDate = 0,
|
||||||
|
branch = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getPages(chapter: MangaChapter): List<MangaPage> {
|
||||||
|
val fullUrl = chapter.url.toAbsoluteUrl(domain)
|
||||||
|
val doc = webClient.httpGet(fullUrl).parseHtml().requireElementById("content")
|
||||||
|
return doc.select("div.text-center .img-fluid").map { img ->
|
||||||
|
val url = img.src()?.toRelativeUrl(domain) ?: img.parseFailed("Image src not found")
|
||||||
|
MangaPage(
|
||||||
|
id = generateUid(url),
|
||||||
|
url = url,
|
||||||
|
preview = null,
|
||||||
|
source = source,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.madara.en
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser
|
||||||
|
|
||||||
|
@MangaSourceParser("SECTSCANS", "Sect Scans", "en")
|
||||||
|
internal class SectScans(context: MangaLoaderContext) :
|
||||||
|
MadaraParser(context, MangaSource.SECTSCANS, "sectscans.com") {
|
||||||
|
override val listUrl = "comics/"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue