MangaMapper.kt 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package eu.kanade.data.manga
  2. import eu.kanade.domain.manga.model.Manga
  3. import eu.kanade.tachiyomi.data.database.models.LibraryManga
  4. import eu.kanade.tachiyomi.source.model.UpdateStrategy
  5. val mangaMapper: (Long, Long, String, String?, String?, String?, List<String>?, String, Long, String?, Boolean, Long?, Long?, Boolean, Long, Long, Long, Long, UpdateStrategy) -> Manga =
  6. { id, source, url, artist, author, description, genre, title, status, thumbnailUrl, favorite, lastUpdate, _, initialized, viewer, chapterFlags, coverLastModified, dateAdded, updateStrategy ->
  7. Manga(
  8. id = id,
  9. source = source,
  10. favorite = favorite,
  11. lastUpdate = lastUpdate ?: 0,
  12. dateAdded = dateAdded,
  13. viewerFlags = viewer,
  14. chapterFlags = chapterFlags,
  15. coverLastModified = coverLastModified,
  16. url = url,
  17. title = title,
  18. artist = artist,
  19. author = author,
  20. description = description,
  21. genre = genre,
  22. status = status,
  23. thumbnailUrl = thumbnailUrl,
  24. updateStrategy = updateStrategy,
  25. initialized = initialized,
  26. )
  27. }
  28. val libraryManga: (Long, Long, String, String?, String?, String?, List<String>?, String, Long, String?, Boolean, Long?, Long?, Boolean, Long, Long, Long, Long, UpdateStrategy, Long, Long, Long) -> LibraryManga =
  29. { _id, source, url, artist, author, description, genre, title, status, thumbnail_url, favorite, last_update, next_update, initialized, viewer, chapter_flags, cover_last_modified, date_added, update_strategy, unread_count, read_count, category ->
  30. LibraryManga().apply {
  31. this.id = _id
  32. this.source = source
  33. this.url = url
  34. this.artist = artist
  35. this.author = author
  36. this.description = description
  37. this.genre = genre?.joinToString()
  38. this.title = title
  39. this.status = status.toInt()
  40. this.thumbnail_url = thumbnail_url
  41. this.favorite = favorite
  42. this.last_update = last_update ?: 0
  43. this.update_strategy = update_strategy
  44. this.initialized = initialized
  45. this.viewer_flags = viewer.toInt()
  46. this.chapter_flags = chapter_flags.toInt()
  47. this.cover_last_modified = cover_last_modified
  48. this.date_added = date_added
  49. this.unreadCount = unread_count.toInt()
  50. this.readCount = read_count.toInt()
  51. this.category = category.toInt()
  52. }
  53. }