| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Collections.Immutable; |
| | 4 | | using System.Linq; |
| | 5 | | using Jellyfin.Database.Implementations; |
| | 6 | | using Jellyfin.Database.Implementations.Entities; |
| | 7 | | using MediaBrowser.Controller.Chapters; |
| | 8 | | using MediaBrowser.Controller.Drawing; |
| | 9 | | using MediaBrowser.Model.Dto; |
| | 10 | | using MediaBrowser.Model.Entities; |
| | 11 | | using Microsoft.EntityFrameworkCore; |
| | 12 | |
|
| | 13 | | namespace Jellyfin.Server.Implementations.Item; |
| | 14 | |
|
| | 15 | | /// <summary> |
| | 16 | | /// The Chapter manager. |
| | 17 | | /// </summary> |
| | 18 | | public class ChapterRepository : IChapterRepository |
| | 19 | | { |
| | 20 | | private readonly IDbContextFactory<JellyfinDbContext> _dbProvider; |
| | 21 | | private readonly IImageProcessor _imageProcessor; |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Initializes a new instance of the <see cref="ChapterRepository"/> class. |
| | 25 | | /// </summary> |
| | 26 | | /// <param name="dbProvider">The EFCore provider.</param> |
| | 27 | | /// <param name="imageProcessor">The Image Processor.</param> |
| | 28 | | public ChapterRepository(IDbContextFactory<JellyfinDbContext> dbProvider, IImageProcessor imageProcessor) |
| | 29 | | { |
| 21 | 30 | | _dbProvider = dbProvider; |
| 21 | 31 | | _imageProcessor = imageProcessor; |
| 21 | 32 | | } |
| | 33 | |
|
| | 34 | | /// <inheritdoc cref="IChapterRepository"/> |
| | 35 | | public ChapterInfo? GetChapter(BaseItemDto baseItem, int index) |
| | 36 | | { |
| 0 | 37 | | return GetChapter(baseItem.Id, index); |
| | 38 | | } |
| | 39 | |
|
| | 40 | | /// <inheritdoc cref="IChapterRepository"/> |
| | 41 | | public IReadOnlyList<ChapterInfo> GetChapters(BaseItemDto baseItem) |
| | 42 | | { |
| 0 | 43 | | return GetChapters(baseItem.Id); |
| | 44 | | } |
| | 45 | |
|
| | 46 | | /// <inheritdoc cref="IChapterRepository"/> |
| | 47 | | public ChapterInfo? GetChapter(Guid baseItemId, int index) |
| | 48 | | { |
| 0 | 49 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 50 | | var chapter = context.Chapters.AsNoTracking() |
| 0 | 51 | | .Select(e => new |
| 0 | 52 | | { |
| 0 | 53 | | chapter = e, |
| 0 | 54 | | baseItemPath = e.Item.Path |
| 0 | 55 | | }) |
| 0 | 56 | | .FirstOrDefault(e => e.chapter.ItemId.Equals(baseItemId) && e.chapter.ChapterIndex == index); |
| 0 | 57 | | if (chapter is not null) |
| | 58 | | { |
| 0 | 59 | | return Map(chapter.chapter, chapter.baseItemPath!); |
| | 60 | | } |
| | 61 | |
|
| 0 | 62 | | return null; |
| 0 | 63 | | } |
| | 64 | |
|
| | 65 | | /// <inheritdoc cref="IChapterRepository"/> |
| | 66 | | public IReadOnlyList<ChapterInfo> GetChapters(Guid baseItemId) |
| | 67 | | { |
| 0 | 68 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 69 | | return context.Chapters.AsNoTracking().Where(e => e.ItemId.Equals(baseItemId)) |
| 0 | 70 | | .Select(e => new |
| 0 | 71 | | { |
| 0 | 72 | | chapter = e, |
| 0 | 73 | | baseItemPath = e.Item.Path |
| 0 | 74 | | }) |
| 0 | 75 | | .AsEnumerable() |
| 0 | 76 | | .Select(e => Map(e.chapter, e.baseItemPath!)) |
| 0 | 77 | | .ToArray(); |
| 0 | 78 | | } |
| | 79 | |
|
| | 80 | | /// <inheritdoc cref="IChapterRepository"/> |
| | 81 | | public void SaveChapters(Guid itemId, IReadOnlyList<ChapterInfo> chapters) |
| | 82 | | { |
| 0 | 83 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 84 | | using (var transaction = context.Database.BeginTransaction()) |
| | 85 | | { |
| 0 | 86 | | context.Chapters.Where(e => e.ItemId.Equals(itemId)).ExecuteDelete(); |
| 0 | 87 | | for (var i = 0; i < chapters.Count; i++) |
| | 88 | | { |
| 0 | 89 | | var chapter = chapters[i]; |
| 0 | 90 | | context.Chapters.Add(Map(chapter, i, itemId)); |
| | 91 | | } |
| | 92 | |
|
| 0 | 93 | | context.SaveChanges(); |
| 0 | 94 | | transaction.Commit(); |
| 0 | 95 | | } |
| 0 | 96 | | } |
| | 97 | |
|
| | 98 | | private Chapter Map(ChapterInfo chapterInfo, int index, Guid itemId) |
| | 99 | | { |
| 0 | 100 | | return new Chapter() |
| 0 | 101 | | { |
| 0 | 102 | | ChapterIndex = index, |
| 0 | 103 | | StartPositionTicks = chapterInfo.StartPositionTicks, |
| 0 | 104 | | ImageDateModified = chapterInfo.ImageDateModified, |
| 0 | 105 | | ImagePath = chapterInfo.ImagePath, |
| 0 | 106 | | ItemId = itemId, |
| 0 | 107 | | Name = chapterInfo.Name, |
| 0 | 108 | | Item = null! |
| 0 | 109 | | }; |
| | 110 | | } |
| | 111 | |
|
| | 112 | | private ChapterInfo Map(Chapter chapterInfo, string baseItemPath) |
| | 113 | | { |
| 0 | 114 | | var chapterEntity = new ChapterInfo() |
| 0 | 115 | | { |
| 0 | 116 | | StartPositionTicks = chapterInfo.StartPositionTicks, |
| 0 | 117 | | ImageDateModified = chapterInfo.ImageDateModified.GetValueOrDefault(), |
| 0 | 118 | | ImagePath = chapterInfo.ImagePath, |
| 0 | 119 | | Name = chapterInfo.Name, |
| 0 | 120 | | }; |
| 0 | 121 | | chapterEntity.ImageTag = _imageProcessor.GetImageCacheTag(baseItemPath, chapterEntity.ImageDateModified); |
| 0 | 122 | | return chapterEntity; |
| | 123 | | } |
| | 124 | | } |