Source.kt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package eu.kanade.tachiyomi.source
  2. import eu.kanade.tachiyomi.source.model.Page
  3. import eu.kanade.tachiyomi.source.model.SChapter
  4. import eu.kanade.tachiyomi.source.model.SManga
  5. import eu.kanade.tachiyomi.util.awaitSingle
  6. import rx.Observable
  7. /**
  8. * A basic interface for creating a source. It could be an online source, a local source, etc.
  9. */
  10. interface Source {
  11. /**
  12. * ID for the source. Must be unique.
  13. */
  14. val id: Long
  15. /**
  16. * Name of the source.
  17. */
  18. val name: String
  19. val lang: String
  20. get() = ""
  21. /**
  22. * Get the updated details for a manga.
  23. *
  24. * @since extensions-lib 1.5
  25. * @param manga the manga to update.
  26. * @return the updated manga.
  27. */
  28. @Suppress("DEPRECATION")
  29. suspend fun getMangaDetails(manga: SManga): SManga {
  30. return fetchMangaDetails(manga).awaitSingle()
  31. }
  32. /**
  33. * Get all the available chapters for a manga.
  34. *
  35. * @since extensions-lib 1.5
  36. * @param manga the manga to update.
  37. * @return the chapters for the manga.
  38. */
  39. @Suppress("DEPRECATION")
  40. suspend fun getChapterList(manga: SManga): List<SChapter> {
  41. return fetchChapterList(manga).awaitSingle()
  42. }
  43. /**
  44. * Get the list of pages a chapter has. Pages should be returned
  45. * in the expected order; the index is ignored.
  46. *
  47. * @since extensions-lib 1.5
  48. * @param chapter the chapter.
  49. * @return the pages for the chapter.
  50. */
  51. @Suppress("DEPRECATION")
  52. suspend fun getPageList(chapter: SChapter): List<Page> {
  53. return fetchPageList(chapter).awaitSingle()
  54. }
  55. @Deprecated(
  56. "Use the non-RxJava API instead",
  57. ReplaceWith("getMangaDetails"),
  58. )
  59. fun fetchMangaDetails(manga: SManga): Observable<SManga> =
  60. throw IllegalStateException("Not used")
  61. @Deprecated(
  62. "Use the non-RxJava API instead",
  63. ReplaceWith("getChapterList"),
  64. )
  65. fun fetchChapterList(manga: SManga): Observable<List<SChapter>> =
  66. throw IllegalStateException("Not used")
  67. @Deprecated(
  68. "Use the non-RxJava API instead",
  69. ReplaceWith("getPageList"),
  70. )
  71. fun fetchPageList(chapter: SChapter): Observable<List<Page>> =
  72. throw IllegalStateException("Not used")
  73. }