Vetle Ledaal 743bc0d382
MadTheme: fix pagination and relax rate limiting to CDN hosts (#11163)
* MadTheme: fix pagination

* relax rate limiting

* disable alt CDNs
2022-03-21 05:35:08 -04:00

57 lines
1.5 KiB
Kotlin

package eu.kanade.tachiyomi.extension.en.mangamax
import eu.kanade.tachiyomi.lib.ratelimit.SpecificHostRateLimitInterceptor
import eu.kanade.tachiyomi.multisrc.madtheme.MadTheme
import okhttp3.HttpUrl.Companion.toHttpUrl
import okhttp3.OkHttpClient
import java.util.concurrent.TimeUnit
class MangaMax : MadTheme(
"MangaMax",
"https://mangamax.net",
"en"
) {
override val client: OkHttpClient = network.cloudflareClient.newBuilder()
.addInterceptor(
SpecificHostRateLimitInterceptor(
"https://s1.mbcdnv1.xyz".toHttpUrl(),
5,
1,
TimeUnit.SECONDS
)
)
.addInterceptor(
SpecificHostRateLimitInterceptor(
"https://s1.mbcdnv2.xyz".toHttpUrl(),
1,
2,
TimeUnit.SECONDS
)
)
.addInterceptor(
SpecificHostRateLimitInterceptor(
"https://s1.mbcdnv3.xyz".toHttpUrl(),
1,
2,
TimeUnit.SECONDS
)
)
.addInterceptor(
SpecificHostRateLimitInterceptor(
"https://s1.mbcdnv4.xyz".toHttpUrl(),
1,
2,
TimeUnit.SECONDS
)
)
.addInterceptor(
SpecificHostRateLimitInterceptor(
"https://s1.mbcdnv5.xyz".toHttpUrl(),
1,
2,
TimeUnit.SECONDS
)
)
.build()
}