parent
4f5116c590
commit
0382073769
10
src/en/rosesquadscans/build.gradle
Normal file
10
src/en/rosesquadscans/build.gradle
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'Rose Squad Scans'
|
||||||
|
extClass = '.RoseSquadScans'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://rosesquadscans.aishiteru.org'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/en/rosesquadscans/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/en/rosesquadscans/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
BIN
src/en/rosesquadscans/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/en/rosesquadscans/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
src/en/rosesquadscans/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/en/rosesquadscans/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.7 KiB |
BIN
src/en/rosesquadscans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/en/rosesquadscans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
src/en/rosesquadscans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/en/rosesquadscans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
@ -0,0 +1,28 @@
|
|||||||
|
package eu.kanade.tachiyomi.extension.en.rosesquadscans
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import okhttp3.Interceptor
|
||||||
|
import okhttp3.Response
|
||||||
|
import java.io.IOException
|
||||||
|
|
||||||
|
class RoseSquadScans : Madara("Rose Squad Scans", "https://rosesquadscans.aishiteru.org", "en") {
|
||||||
|
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.addInterceptor(::authWarningIntercept)
|
||||||
|
.rateLimit(1, 2)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
|
||||||
|
private fun authWarningIntercept(chain: Interceptor.Chain): Response {
|
||||||
|
val response = chain.proceed(chain.request())
|
||||||
|
|
||||||
|
if (response.request.url.toString().contains("wp-login.php")) {
|
||||||
|
response.close()
|
||||||
|
throw IOException("It's necessary to login via WebView to access this source.")
|
||||||
|
}
|
||||||
|
|
||||||
|
return response
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user