Eros Scans: update domain, skip redirect on CDN (#6887)

This commit is contained in:
Vetle Ledaal 2024-12-29 07:52:28 +01:00 committed by Draff
parent 059e3267af
commit dcb623cdb3
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 23 additions and 3 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'Eros Scans'
extClass = '.ErosScans'
themePkg = 'mangathemesia'
baseUrl = 'https://tercoscans.xyz'
overrideVersionCode = 1
baseUrl = 'https://eros-toons.xyz'
overrideVersionCode = 2
isNsfw = false
}

View File

@ -2,13 +2,33 @@ package eu.kanade.tachiyomi.extension.en.erosscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.HttpUrl.Companion.toHttpUrl
import okhttp3.Interceptor
import okhttp3.Response
class ErosScans : MangaThemesia(
"Eros Scans",
"https://tercoscans.xyz",
"https://eros-toons.xyz",
"en",
) {
override val client = super.client.newBuilder()
.addInterceptor(::cdnRedirectInterceptor)
.rateLimit(3)
.build()
private fun cdnRedirectInterceptor(chain: Interceptor.Chain): Response {
val request = chain.request()
if (request.url.host != "erosscans.xyz") {
return chain.proceed(request)
}
val newUrl = request.url.newBuilder()
.host(baseUrl.toHttpUrl().host)
.build()
val newRequest = request.newBuilder()
.url(newUrl)
.build()
return chain.proceed(newRequest)
}
}