-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add rose squad scans
- Loading branch information
Showing
7 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions
28
src/en/rosesquadscans/src/eu/kanade/tachiyomi/extension/en/rosesquadscans/RoseSquadScans.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} | ||
} |