Swords Comic - new extension (#2998)

This commit is contained in:
Mike 2020-05-04 05:31:58 -04:00 committed by GitHub
parent f459daa3c4
commit 7493e43306
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 106 additions and 0 deletions

View File

@ -0,0 +1,12 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
ext {
appName = 'Tachiyomi: Swords Comic'
pkgNameSuffix = 'en.swordscomic'
extClass = '.SwordsComic'
extVersionCode = 1
libVersion = '1.2'
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

View File

@ -0,0 +1,94 @@
package eu.kanade.tachiyomi.extension.en.swordscomic
import eu.kanade.tachiyomi.source.model.FilterList
import eu.kanade.tachiyomi.source.model.MangasPage
import eu.kanade.tachiyomi.source.model.Page
import eu.kanade.tachiyomi.source.model.SChapter
import eu.kanade.tachiyomi.source.model.SManga
import eu.kanade.tachiyomi.source.online.HttpSource
import eu.kanade.tachiyomi.util.asJsoup
import java.text.SimpleDateFormat
import java.util.Locale
import okhttp3.OkHttpClient
import okhttp3.Request
import okhttp3.Response
import rx.Observable
class SwordsComic : HttpSource() {
override val name = "Swords Comic"
override val baseUrl = "https://swordscomic.com"
override val lang = "en"
override val supportsLatest = false
override val client: OkHttpClient = network.cloudflareClient
private fun createManga(): SManga {
return SManga.create().apply {
title = "Swords Comic"
url = "/archive/pages/"
author = "Matthew Wills"
artist = author
description = "A webcomic about swords and the heroes who wield them"
thumbnail_url = "https://swordscomic.com/media/ArgoksEdgeEmote.png"
}
}
// Popular
override fun fetchPopularManga(page: Int): Observable<MangasPage> {
return Observable.just(MangasPage(listOf(createManga()), false))
}
override fun popularMangaRequest(page: Int): Request = throw UnsupportedOperationException("Not used")
override fun popularMangaParse(response: Response): MangasPage = throw UnsupportedOperationException("Not used")
// Latest
override fun latestUpdatesRequest(page: Int): Request = throw UnsupportedOperationException("Not used")
override fun latestUpdatesParse(response: Response): MangasPage = throw UnsupportedOperationException("Not used")
// Search
override fun fetchSearchManga(page: Int, query: String, filters: FilterList): Observable<MangasPage> = Observable.just(MangasPage(emptyList(), false))
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request = throw UnsupportedOperationException("Not used")
override fun searchMangaParse(response: Response): MangasPage = throw UnsupportedOperationException("Not used")
// Details
override fun fetchMangaDetails(manga: SManga): Observable<SManga> {
return Observable.just(createManga().apply { initialized = true })
}
override fun mangaDetailsParse(response: Response): SManga = throw UnsupportedOperationException("Not used")
// Chapters
override fun chapterListParse(response: Response): List<SChapter> {
return response.asJsoup().select("a.archive-tile-short")
.map { element ->
SChapter.create().apply {
name = element.select("strong").text()
setUrlWithoutDomain(element.attr("href"))
date_upload = element.select("small").text()
.let { SimpleDateFormat("dd MMM yyyy", Locale.US).parse(it).time }
}
}
.reversed()
}
// Pages
override fun pageListParse(response: Response): List<Page> {
return listOf(Page(0, "", response.asJsoup().select("img#comic-image").attr("abs:src")))
}
override fun imageUrlParse(response: Response): String = throw UnsupportedOperationException("Not used")
}