add hot cabaret scan (#3155)

* add hot cabaret scan

* exception message

* exception message 2
This commit is contained in:
kana-shii 2024-05-23 07:54:40 -03:00 committed by GitHub
parent d699a173cf
commit 633f4b6ea8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 47 additions and 0 deletions

View File

@ -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

View File

@ -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
}