-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
89 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
ext { | ||
extName = 'Top Truyen' | ||
extClass = '.TopTruyen' | ||
themePkg = 'wpcomics' | ||
baseUrl = 'https://www.toptruyenviet.info' | ||
overrideVersionCode = 0 | ||
isNsfw = true | ||
} | ||
|
||
apply from: "$rootDir/common.gradle" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
77 changes: 77 additions & 0 deletions
77
src/vi/toptruyen/src/eu/kanade/tachiyomi/extension/vi/toptruyen/TopTruyen.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package eu.kanade.tachiyomi.extension.vi.toptruyen | ||
|
||
import eu.kanade.tachiyomi.multisrc.wpcomics.WPComics | ||
import eu.kanade.tachiyomi.network.GET | ||
import eu.kanade.tachiyomi.network.interceptor.rateLimit | ||
import eu.kanade.tachiyomi.source.model.FilterList | ||
import eu.kanade.tachiyomi.source.model.SChapter | ||
import eu.kanade.tachiyomi.source.model.SManga | ||
import okhttp3.HttpUrl.Companion.toHttpUrl | ||
import okhttp3.Request | ||
import org.jsoup.nodes.Document | ||
import org.jsoup.nodes.Element | ||
import java.text.SimpleDateFormat | ||
import java.util.Locale | ||
|
||
class TopTruyen : WPComics( | ||
"Top Truyen", | ||
"https://www.toptruyenviet.info", | ||
"vi", | ||
dateFormat = SimpleDateFormat("dd-MM-yyyy", Locale.getDefault()), | ||
gmtOffset = null, | ||
) { | ||
override val client = super.client.newBuilder() | ||
.rateLimit(3) | ||
.build() | ||
|
||
override fun popularMangaSelector() = "div.item-manga div.item" | ||
|
||
override fun popularMangaFromElement(element: Element) = SManga.create().apply { | ||
element.select("h3 a").let { | ||
title = it.text() | ||
setUrlWithoutDomain(it.attr("abs:href")) | ||
} | ||
thumbnail_url = imageOrNull(element.selectFirst("img")!!) | ||
} | ||
|
||
override fun searchMangaSelector() = popularMangaSelector() | ||
|
||
override fun searchMangaFromElement(element: Element) = popularMangaFromElement(element) | ||
|
||
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request { | ||
val url = "$baseUrl/$searchPath".toHttpUrl().newBuilder() | ||
|
||
filters.forEach { filter -> | ||
when (filter) { | ||
is GenreFilter -> filter.toUriPart()?.let { url.addPathSegment(it) } | ||
is StatusFilter -> filter.toUriPart()?.let { url.addQueryParameter("status", it) } | ||
else -> {} | ||
} | ||
} | ||
|
||
when { | ||
query.isNotBlank() -> url.addQueryParameter(queryParam, query) | ||
else -> url.addQueryParameter("page", page.toString()) | ||
} | ||
|
||
return GET(url.toString(), headers) | ||
} | ||
|
||
override fun mangaDetailsParse(document: Document) = SManga.create().apply { | ||
title = document.selectFirst("h1.title-manga")!!.text() | ||
description = document.selectFirst("p.detail-summary")?.text() | ||
status = document.selectFirst("li.status p.detail-info span")?.text().toStatus() | ||
genre = document.select("li.category p.detail-info a")?.joinToString { it.text() } | ||
thumbnail_url = imageOrNull(document.selectFirst("img.image-comic")!!) | ||
} | ||
|
||
override fun chapterListSelector() = "div.list-chapter li.row:not(.heading):not([style])" | ||
|
||
override fun chapterFromElement(element: Element): SChapter { | ||
return super.chapterFromElement(element).apply { | ||
date_upload = element.select(".chapters + div").text().toDate() | ||
} | ||
} | ||
|
||
override val genresSelector = ".categories-detail ul.nav li:not(.active) a" | ||
} |