
* lib-randomua * NHentai: Random mobile ua * Madara random UA overhaul * MangaThemesia random UA overhaul * MangaHub random UA overhaul * build errors and warnings * remove preference from Constellar * change to singleton object * network.client * fix copy paste and chapter deep link * exit early * use data class and enum options * missing import * suggested changes Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> * re-add empty check to filters * convert to interceptor * update comment Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com> * update error message * initialize client by lazy * dont check on excluded Filters Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> * newlines * move preference helper function into lib * move preference helper function into lib x2 * move check to lib too * move defaultRandomUserAgentType to constructor * rename the interceptor * organize the interceptor and preference stuff in different files * hide custom ua setting when random ua is enabled * English Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> * catch specific exception Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> * setVisible() fresh stuff * setVisible() fresh stuff * change summary * workaround * Update error message Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com> * Update comment Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com> --------- Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com>
42 lines
1.3 KiB
Kotlin
42 lines
1.3 KiB
Kotlin
package eu.kanade.tachiyomi.extension.pt.yanpfansub
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
import okhttp3.Interceptor
|
|
import okhttp3.OkHttpClient
|
|
import okhttp3.Response
|
|
import java.io.IOException
|
|
import java.text.SimpleDateFormat
|
|
import java.util.Locale
|
|
import java.util.concurrent.TimeUnit
|
|
|
|
class YANPFansub : Madara(
|
|
"YANP Fansub",
|
|
"https://yanpfansub.com",
|
|
"pt-BR",
|
|
SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")),
|
|
) {
|
|
|
|
// Scanlator changed the theme from WpMangaReader to Madara.
|
|
override val versionId: Int = 2
|
|
|
|
override val client: OkHttpClient = super.client.newBuilder()
|
|
.rateLimit(1, 2, TimeUnit.SECONDS)
|
|
.addInterceptor(::checkPasswordProtectedIntercept)
|
|
.build()
|
|
|
|
private fun checkPasswordProtectedIntercept(chain: Interceptor.Chain): Response {
|
|
val response = chain.proceed(chain.request())
|
|
|
|
if (response.request.url.queryParameter("password-protected") != null) {
|
|
response.close()
|
|
throw IOException("Autentique-se através da WebView e tente novamente.")
|
|
}
|
|
|
|
return response
|
|
}
|
|
|
|
// Page has custom link to scan website.
|
|
override val popularMangaUrlSelector = "div.post-title a:not([target])"
|
|
}
|