소스 검색

Resolve proper chapter URL for ComicInfo "Web" field

Requires extensions to be updated to lib 1.4 to have proper URLs for some of them, which will
happen soon in the future.
arkon 2 년 전
부모
커밋
262f8449b4
2개의 변경된 파일15개의 추가작업 그리고 6개의 파일을 삭제
  1. 2 2
      app/src/main/java/eu/kanade/domain/manga/model/ComicInfo.kt
  2. 13 4
      app/src/main/java/eu/kanade/tachiyomi/data/download/Downloader.kt

+ 2 - 2
app/src/main/java/eu/kanade/domain/manga/model/ComicInfo.kt

@@ -12,11 +12,11 @@ const val COMIC_INFO_FILE = "ComicInfo.xml"
 /**
  * Creates a ComicInfo instance based on the manga and chapter metadata.
  */
-fun getComicInfo(manga: Manga, chapter: Chapter): ComicInfo {
+fun getComicInfo(manga: Manga, chapter: Chapter, chapterUrl: String): ComicInfo {
     return ComicInfo(
         title = ComicInfo.Title(chapter.name),
         series = ComicInfo.Series(manga.title),
-        web = ComicInfo.Web(manga.url),
+        web = ComicInfo.Web(chapterUrl),
         summary = manga.description?.let { ComicInfo.Summary(it) },
         writer = manga.author?.let { ComicInfo.Writer(it) },
         penciller = manga.artist?.let { ComicInfo.Penciller(it) },

+ 13 - 4
app/src/main/java/eu/kanade/tachiyomi/data/download/Downloader.kt

@@ -537,7 +537,14 @@ class Downloader(
             cache.addChapter(dirname, mangaDir, download.manga)
 
             DiskUtil.createNoMediaFile(tmpDir, context)
-            createComicInfoFile(mangaDir, download.manga, download.chapter.toDomainChapter()!!)
+
+            val chapterUrl = download.source.getChapterUrl(download.chapter)
+            createComicInfoFile(
+                mangaDir,
+                download.manga,
+                download.chapter.toDomainChapter()!!,
+                chapterUrl,
+            )
 
             Download.State.DOWNLOADED
         } else {
@@ -583,19 +590,21 @@ class Downloader(
      * Creates a ComicInfo.xml file inside the given directory.
      *
      * @param dir the directory in which the ComicInfo file will be generated.
-     * @param manga the manga of the chapter to download.
-     * @param chapter the chapter to download
+     * @param manga the manga.
+     * @param chapter the chapter.
+     * @param chapterUrl the resolved URL for the chapter.
      */
     private fun createComicInfoFile(
         dir: UniFile,
         manga: Manga,
         chapter: Chapter,
+        chapterUrl: String,
     ) {
         File("${dir.filePath}/$COMIC_INFO_FILE").outputStream().also {
             // Force overwrite old file
             (it as? FileOutputStream)?.channel?.truncate(0)
         }.use {
-            val comicInfo = getComicInfo(manga, chapter)
+            val comicInfo = getComicInfo(manga, chapter, chapterUrl)
             it.write(xml.encodeToString(ComicInfo.serializer(), comicInfo).toByteArray())
         }
     }