-
Notifications
You must be signed in to change notification settings - Fork 42
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
1 parent
3b0068e
commit 056d9b8
Showing
1 changed file
with
144 additions
and
0 deletions.
There are no files selected for viewing
144 changes: 144 additions & 0 deletions
144
src/main/kotlin/org/koitharu/kotatsu/parsers/site/wpcomics/vi/NetTruyenHE.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,144 @@ | ||
package org.koitharu.kotatsu.parsers.site.wpcomics.vi | ||
|
||
import androidx.collection.ArrayMap | ||
import kotlinx.coroutines.sync.withLock | ||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.exception.NotFoundException | ||
import org.koitharu.kotatsu.parsers.model.Manga | ||
import org.koitharu.kotatsu.parsers.model.MangaListFilter | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.model.MangaState | ||
import org.koitharu.kotatsu.parsers.model.MangaTag | ||
import org.koitharu.kotatsu.parsers.model.SortOrder | ||
import org.koitharu.kotatsu.parsers.site.wpcomics.WpComicsParser | ||
import org.koitharu.kotatsu.parsers.util.* | ||
import java.util.EnumSet | ||
|
||
@MangaSourceParser("NETTRUYENHE", "NetTruyenHE", "vi") | ||
internal class NetTruyenHE(context: MangaLoaderContext) : | ||
WpComicsParser(context, MangaParserSource.NETTRUYENHE, "nettruyenhe.com", 20) { | ||
|
||
override val isMultipleTagsSupported = true | ||
override val isTagsExclusionSupported = true | ||
override val listUrl = "/tim-kiem-nang-cao" | ||
override val availableStates: Set<MangaState> = | ||
EnumSet.of(MangaState.ONGOING, MangaState.FINISHED, MangaState.PAUSED, MangaState.ABANDONED) | ||
override val availableSortOrders: Set<SortOrder> = EnumSet.of( | ||
SortOrder.UPDATED, | ||
SortOrder.POPULARITY, | ||
SortOrder.RATING, | ||
SortOrder.NEWEST, | ||
SortOrder.ALPHABETICAL, | ||
SortOrder.ALPHABETICAL_DESC, | ||
) | ||
|
||
override suspend fun getListPage(page: Int, filter: MangaListFilter?): List<Manga> { | ||
val response = | ||
when (filter) { | ||
is MangaListFilter.Search -> { | ||
val url = buildString { | ||
append("https://") | ||
append(domain) | ||
append("/search") | ||
append('/') | ||
append(page.toString()) | ||
append('/') | ||
append("?keyword=") | ||
append(filter.query.urlEncoded()) | ||
} | ||
|
||
val result = runCatchingCancellable { webClient.httpGet(url) } | ||
val exception = result.exceptionOrNull() | ||
if (exception is NotFoundException) { | ||
return emptyList() | ||
} | ||
result.getOrThrow() | ||
} | ||
|
||
is MangaListFilter.Advanced -> { | ||
val url = buildString { | ||
append("https://") | ||
append(domain) | ||
append(listUrl) | ||
|
||
append('/') | ||
append(page.toString()) | ||
append('/') | ||
|
||
val tagQuery = filter.tags.joinToString(",") { it.key } | ||
append("?genres=") | ||
append(tagQuery) | ||
|
||
val tagQueryExclude = filter.tagsExclude.joinToString(",") { it.key } | ||
append("¬Genres=") | ||
append(tagQueryExclude) | ||
|
||
append("&sex=All") | ||
|
||
filter.states.oneOrThrowIfMany()?.let { | ||
append("&status=") | ||
append( | ||
when (it) { | ||
MangaState.ONGOING -> "on-going" | ||
MangaState.FINISHED -> "completed" | ||
MangaState.PAUSED -> "on-hold" | ||
MangaState.ABANDONED -> "canceled" | ||
else -> "-1" | ||
}, | ||
) | ||
} | ||
|
||
append("&chapter_count=0") | ||
|
||
append("&sort=") | ||
append( | ||
when (filter.sortOrder) { | ||
SortOrder.UPDATED -> "latest-updated" | ||
SortOrder.POPULARITY -> "views" | ||
SortOrder.NEWEST -> "new" | ||
SortOrder.RATING -> "score" | ||
SortOrder.ALPHABETICAL -> "az" | ||
SortOrder.ALPHABETICAL_DESC -> "za" | ||
else -> null | ||
}, | ||
) | ||
} | ||
|
||
webClient.httpGet(url) | ||
} | ||
|
||
null -> { | ||
val url = buildString { | ||
append("https://") | ||
append(domain) | ||
append(listUrl) | ||
append('/') | ||
append(page.toString()) | ||
append('/') | ||
append("?genres=¬Genres=&sex=All&status=&chapter_count=0&sort=latest-updated") | ||
} | ||
webClient.httpGet(url) | ||
} | ||
} | ||
|
||
val tagMap = getOrCreateTagMap() | ||
return parseMangaList(response.parseHtml(), tagMap) | ||
} | ||
|
||
override suspend fun getOrCreateTagMap(): ArrayMap<String, MangaTag> = mutex.withLock { | ||
tagCache?.let { return@withLock it } | ||
val doc = webClient.httpGet(listUrl.toAbsoluteUrl(domain)).parseHtml() | ||
val tagItems = doc.select("div.genre-item") | ||
val result = ArrayMap<String, MangaTag>(tagItems.size) | ||
for (item in tagItems) { | ||
val title = item.text() | ||
val key = item.selectFirstOrThrow("span").attr("data-id") | ||
if (key.isNotEmpty() && title.isNotEmpty()) { | ||
result[title] = MangaTag(title = title, key = key, source = source) | ||
} | ||
} | ||
tagCache = result | ||
result | ||
} | ||
} |