< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Item.ChapterRepository
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/Item/ChapterRepository.cs
Line coverage
5%
Covered lines: 3
Uncovered lines: 54
Coverable lines: 57
Total lines: 124
Line coverage: 5.2%
Branch coverage
0%
Covered branches: 0
Total branches: 4
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
GetChapter(...)100%210%
GetChapters(...)100%210%
GetChapter(...)0%620%
GetChapters(...)100%210%
SaveChapters(...)0%620%
Map(...)100%210%
Map(...)100%210%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/Item/ChapterRepository.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Collections.Immutable;
 4using System.Linq;
 5using Jellyfin.Database.Implementations;
 6using Jellyfin.Database.Implementations.Entities;
 7using MediaBrowser.Controller.Chapters;
 8using MediaBrowser.Controller.Drawing;
 9using MediaBrowser.Model.Dto;
 10using MediaBrowser.Model.Entities;
 11using Microsoft.EntityFrameworkCore;
 12
 13namespace Jellyfin.Server.Implementations.Item;
 14
 15/// <summary>
 16/// The Chapter manager.
 17/// </summary>
 18public 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    {
 2130        _dbProvider = dbProvider;
 2131        _imageProcessor = imageProcessor;
 2132    }
 33
 34    /// <inheritdoc cref="IChapterRepository"/>
 35    public ChapterInfo? GetChapter(BaseItemDto baseItem, int index)
 36    {
 037        return GetChapter(baseItem.Id, index);
 38    }
 39
 40    /// <inheritdoc cref="IChapterRepository"/>
 41    public IReadOnlyList<ChapterInfo> GetChapters(BaseItemDto baseItem)
 42    {
 043        return GetChapters(baseItem.Id);
 44    }
 45
 46    /// <inheritdoc cref="IChapterRepository"/>
 47    public ChapterInfo? GetChapter(Guid baseItemId, int index)
 48    {
 049        using var context = _dbProvider.CreateDbContext();
 050        var chapter = context.Chapters.AsNoTracking()
 051            .Select(e => new
 052            {
 053                chapter = e,
 054                baseItemPath = e.Item.Path
 055            })
 056            .FirstOrDefault(e => e.chapter.ItemId.Equals(baseItemId) && e.chapter.ChapterIndex == index);
 057        if (chapter is not null)
 58        {
 059            return Map(chapter.chapter, chapter.baseItemPath!);
 60        }
 61
 062        return null;
 063    }
 64
 65    /// <inheritdoc cref="IChapterRepository"/>
 66    public IReadOnlyList<ChapterInfo> GetChapters(Guid baseItemId)
 67    {
 068        using var context = _dbProvider.CreateDbContext();
 069        return context.Chapters.AsNoTracking().Where(e => e.ItemId.Equals(baseItemId))
 070            .Select(e => new
 071            {
 072                chapter = e,
 073                baseItemPath = e.Item.Path
 074            })
 075            .AsEnumerable()
 076            .Select(e => Map(e.chapter, e.baseItemPath!))
 077            .ToArray();
 078    }
 79
 80    /// <inheritdoc cref="IChapterRepository"/>
 81    public void SaveChapters(Guid itemId, IReadOnlyList<ChapterInfo> chapters)
 82    {
 083        using var context = _dbProvider.CreateDbContext();
 084        using (var transaction = context.Database.BeginTransaction())
 85        {
 086            context.Chapters.Where(e => e.ItemId.Equals(itemId)).ExecuteDelete();
 087            for (var i = 0; i < chapters.Count; i++)
 88            {
 089                var chapter = chapters[i];
 090                context.Chapters.Add(Map(chapter, i, itemId));
 91            }
 92
 093            context.SaveChanges();
 094            transaction.Commit();
 095        }
 096    }
 97
 98    private Chapter Map(ChapterInfo chapterInfo, int index, Guid itemId)
 99    {
 0100        return new Chapter()
 0101        {
 0102            ChapterIndex = index,
 0103            StartPositionTicks = chapterInfo.StartPositionTicks,
 0104            ImageDateModified = chapterInfo.ImageDateModified,
 0105            ImagePath = chapterInfo.ImagePath,
 0106            ItemId = itemId,
 0107            Name = chapterInfo.Name,
 0108            Item = null!
 0109        };
 110    }
 111
 112    private ChapterInfo Map(Chapter chapterInfo, string baseItemPath)
 113    {
 0114        var chapterEntity = new ChapterInfo()
 0115        {
 0116            StartPositionTicks = chapterInfo.StartPositionTicks,
 0117            ImageDateModified = chapterInfo.ImageDateModified.GetValueOrDefault(),
 0118            ImagePath = chapterInfo.ImagePath,
 0119            Name = chapterInfo.Name,
 0120        };
 0121        chapterEntity.ImageTag = _imageProcessor.GetImageCacheTag(baseItemPath, chapterEntity.ImageDateModified);
 0122        return chapterEntity;
 123    }
 124}