mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
add hot cabaret scan (#3155)
* add hot cabaret scan * exception message * exception message 2
This commit is contained in:
parent
d699a173cf
commit
633f4b6ea8
10
src/pt/hotcabaretscan/build.gradle
Normal file
10
src/pt/hotcabaretscan/build.gradle
Normal 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"
|
BIN
src/pt/hotcabaretscan/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/hotcabaretscan/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
BIN
src/pt/hotcabaretscan/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/hotcabaretscan/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
src/pt/hotcabaretscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/hotcabaretscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
BIN
src/pt/hotcabaretscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/hotcabaretscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
src/pt/hotcabaretscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/hotcabaretscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
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
Block a user