add hot cabaret scan (#3155)
* add hot cabaret scan * exception message * exception message 2
This commit is contained in:
parent
5228acc900
commit
241578b0a2
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Hot Cabaret Scan'
|
||||||
|
extClass = '.HotCabaretScan'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://hotcabaretscan.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
|
@ -0,0 +1,37 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.pt.hotcabaretscan
|
||||||
|
|
||||||
|
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 HotCabaretScan : Madara(
|
||||||
|
"Hot Cabaret Scan",
|
||||||
|
"https://hotcabaretscan.com",
|
||||||
|
"pt-BR",
|
||||||
|
SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")),
|
||||||
|
) {
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
}
|
Loading…
Reference in New Issue